/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #f8f8f2;
    background-color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Service links styling */
.service-link {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.service-link a {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link a:hover {
    color: #b8965f;
    text-decoration: underline;
}

/* Internal links in content */
.zone-intro a,
.intro-text a,
.press-intro a,
.contact-intro a,
p a {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.zone-intro a:hover,
.intro-text a:hover,
.press-intro a:hover,
.contact-intro a:hover,
p a:hover {
    color: #b8965f;
    text-decoration: underline;
}

/* Sitemap styles */
.sitemap-content {
    padding: 3rem 0;
    background: #f8f8f2;
    color: #2c2c2c;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sitemap-section h2,
.sitemap-services h2 {
    color: #c9a96e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.sitemap-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c9a96e;
}

.sitemap-list a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
}

.sitemap-list a:hover {
    color: #c9a96e;
    text-decoration: underline;
}

.services-sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-sitemap {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-sitemap h3 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

.service-sitemap ul {
    list-style: none;
    padding: 0;
}

.service-sitemap li {
    margin-bottom: 0.5rem;
}

.service-sitemap a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.9rem;
}

.service-sitemap a:hover {
    color: #c9a96e;
    text-decoration: underline;
}

/* Footer link improvements */
.footer-section a {
    color: #f8f8f2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c9a96e;
    text-decoration: underline;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #f8f8f2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #c9a96e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #d4b882;
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #c9a96e;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #c9a96e;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #b5b5b5;
    margin-bottom: 2rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
        order: -1;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background-color: #c9a96e;
    color: #1a1a1a;
    border-color: #c9a96e;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #d4b882;
    border-color: #d4b882;
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #c9a96e;
    border-color: #c9a96e;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #c9a96e;
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn svg {
    margin-right: 0.5rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

.nav-logo a {
    color: #c9a96e;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #f8f8f2;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #c9a96e;
    text-decoration: none;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c9a96e;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 26, 26, 0.98);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu li {
    margin: 0;
}

.nav-submenu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #f8f8f2;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-submenu a:hover,
.nav-submenu a.active {
    background-color: #c9a96e;
    color: #1a1a1a;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #c9a96e;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        backdrop-filter: blur(10px);
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }

    .nav-dropdown .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        border: none;
        padding-left: 1rem;
        box-shadow: none;
    }
}

/* ===== MAIN CONTENT SPACING ===== */
main {
    margin-top: 80px;
}

/* ===== HERO SECTIONS ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    margin-bottom: 1rem;
    color: #c9a96e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #b5b5b5;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.6);
}

.page-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
    color: #c9a96e;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 4rem 0;
    background-color: #262626;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.2);
    border-color: #c9a96e;
}

.service-icon {
    color: #c9a96e;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

.service-card p {
    color: #b5b5b5;
}

/* ===== SERVICE AREA SECTION ===== */
.service-area {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.map-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #c9a96e;
    border: 2px dashed #c9a96e;
}

.covered-cities {
    margin-top: 2rem;
    text-align: center;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin-top: 1rem;
}

.cities-list li {
    background-color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #c9a96e;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 4rem 0;
    background-color: #262626;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #c9a96e;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #c9a96e;
    font-size: 1.25rem;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: #f8f8f2;
    font-size: 1.125rem;
    line-height: 1.5;
}

.testimonial cite {
    color: #c9a96e;
    font-weight: 600;
    font-style: normal;
}

/* ===== CTA SECTIONS ===== */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    text-align: center;
    color: #1a1a1a;
}

.cta h2,
.cta p {
    color: #1a1a1a;
}

.cta-box {
    background-color: #333;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #c9a96e;
    margin: 2rem 0;
}

.cta-section {
    padding: 4rem 0;
    background-color: #262626;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.article-content {
    line-height: 1.7;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #c9a96e;
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #d4b882;
}

.article-content ul,
.article-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-image {
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
    border: 2px dashed rgba(201, 169, 110, 0.3);
}

/* ===== SIDEBAR COMPONENTS ===== */
.sidebar-cta {
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid #c9a96e;
}

.sidebar-cta h4 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

/* ===== TABLES ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #444;
}

.price-table th {
    background-color: #c9a96e;
    color: #1a1a1a;
    font-weight: 600;
}

.price-table tr:hover {
    background-color: #444;
}

.alarm-signs {
    width: 100%;
    border-collapse: collapse;
}

.alarm-signs th,
.alarm-signs td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #444;
}

.alarm-signs th {
    background-color: #333;
    color: #c9a96e;
}

.urgency-medium {
    color: #ffa500;
    font-weight: 600;
}

.urgency-high {
    color: #ff6b47;
    font-weight: 600;
}

.urgency-critical {
    color: #ff4757;
    font-weight: 600;
}

/* ===== PRICING TABLES ===== */
.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-table {
    background-color: #262626;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.pricing-table h3 {
    color: #c9a96e;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #c9a96e;
    padding-bottom: 0.5rem;
}

.pricing-intro,
.pricing-notes {
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #c9a96e;
}

.notes-list {
    list-style: none;
    margin: 0;
}

.notes-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.notes-list li::before {
    content: '•';
    color: #c9a96e;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #c9a96e;
    color: #1a1a1a;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #b5b5b5;
    font-size: 1.125rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.2);
}

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    color: #c9a96e;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-caption p {
    color: #b5b5b5;
    margin: 0;
}

/* ===== PRESS SECTION ===== */
.press-section {
    padding: 4rem 0;
    background-color: #262626;
}

.press-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #b5b5b5;
    font-size: 1.125rem;
}

.press-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.press-item {
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
}

.press-image {
    width: 200px;
    height: 200px;
}

.press-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.press-content h3 {
    color: #c9a96e;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.press-source {
    color: #b5b5b5;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.press-excerpt {
    color: #f8f8f2;
    line-height: 1.6;
    margin: 0;
}

.press-download {
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
    border: 1px solid #c9a96e;
}

.press-download h3 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .press-item {
        grid-template-columns: 1fr;
    }
    
    .press-image {
        width: 100%;
        height: 150px;
    }
    
    .press-content {
        padding: 1.5rem;
    }
}

/* ===== CHAPTER PAGES ===== */
.chapter-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: end;
    padding-bottom: 4rem;
}

.chapter-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chapter-number {
    background-color: #c9a96e;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.chapter-navigation {
    display: flex;
    gap: 1rem;
}

.chapter-prev,
.chapter-next {
    color: #c9a96e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.chapter-prev:hover,
.chapter-next:hover {
    color: #d4b882;
}

.chapter-content {
    background-color: #1a1a1a;
}

.chapter-intro {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #b5b5b5;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.chapter-navigation-bottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .chapter-navigation-bottom {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #c9a96e;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background-color: #c9a96e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    z-index: 2;
}

.timeline-number {
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1.25rem;
}

.timeline-content {
    flex: 1;
    background-color: #333;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #444;
}

.timeline-content h3 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

.timeline-details {
    margin-top: 1rem;
    color: #b5b5b5;
    font-style: italic;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 1rem;
    }
    
    .timeline-marker {
        width: 2rem;
        height: 2rem;
        margin-right: 1rem;
    }
    
    .timeline-number {
        font-size: 1rem;
    }
}

/* ===== MATERIALS & COMPONENTS ===== */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.material-card {
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #444;
}

.material-image {
    height: 200px;
    overflow: hidden;
}

.material-card h3 {
    color: #c9a96e;
    margin: 1.5rem 1.5rem 1rem;
}

.material-card p {
    margin: 0 1.5rem 1rem;
    line-height: 1.6;
}

.material-properties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 1.5rem 1.5rem;
}

.property {
    background-color: #c9a96e;
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== FORMS ===== */
.contact-section {
    padding: 4rem 0;
    background-color: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-section h2 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

.form-intro {
    color: #b5b5b5;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background-color: #262626;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c9a96e;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #444;
    border-radius: 4px;
    background-color: #333;
    color: #f8f8f2;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #c9a96e;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ff4757;
}

.form-error {
    display: block;
    color: #ff4757;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #333;
    border: 2px solid #444;
    border-radius: 3px;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: #c9a96e;
    border-color: #c9a96e;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-text {
    color: #f8f8f2;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: #b5b5b5;
    font-style: italic;
    font-size: 0.9rem;
}

.form-success {
    background-color: #333;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #27ae60;
}

.success-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-info-section h2 {
    color: #c9a96e;
    margin-bottom: 2rem;
}

.contact-info {
    background-color: #262626;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    color: #c9a96e;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #c9a96e;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: #f8f8f2;
    font-weight: 600;
}

.availability {
    color: #b5b5b5;
    font-size: 0.9rem;
    font-style: italic;
}

.response-commitment,
.emergency-contact {
    background-color: #333;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #c9a96e;
}

.response-commitment h3,
.emergency-contact h3 {
    color: #c9a96e;
    margin-bottom: 1rem;
}

.commitment-list {
    list-style: none;
    margin: 0;
}

.commitment-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.commitment-list li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.emergency-note {
    color: #ffa500;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0d0d0d;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #c9a96e;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section li {
    color: #b5b5b5;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section a {
    color: #b5b5b5;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c9a96e;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #c9a96e;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .press-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITIES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

/* ===== LOADING & ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .nav,
    .btn,
    .cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
