/* ===================================
   DRAIN CLEANING SERVICES — TULSA
   Bold Editorial Style
   Deep Navy + Warm Gold Palette
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --navy-900: #0a1628;
    --navy-800: #0f2140;
    --navy-700: #1a2d4a;
    --navy-600: #243d63;
    --navy-500: #2e4f7a;
    --gold-500: #c8a45a;
    --gold-400: #d4b76a;
    --gold-300: #e0c97a;
    --gold-600: #b8944a;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #ebe3d5;
    --warm-gray-50: #f9f7f4;
    --warm-gray-100: #f3efe8;
    --warm-gray-200: #e8e0d4;
    --warm-gray-300: #d4c9b8;
    --warm-gray-400: #a89888;
    --warm-gray-500: #7a6c5e;
    --warm-gray-600: #5a4e42;
    --white: #ffffff;
    --black: #000000;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.10);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.14);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.18);
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--navy-800);
    background-color: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --- Noise Texture Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 164, 90, 0.15);
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-lg);
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--gold-500);
}

.logo-light .logo-text {
    color: var(--white);
}

/* --- Navigation --- */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs) var(--space-xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-700);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-sm);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-sm);
    right: var(--space-sm);
    height: 1.5px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-slow);
}

.nav-link:hover {
    color: var(--gold-600);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- Header Phone --- */
.header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    padding: var(--space-sm) var(--space-lg);
    border: 1.5px solid var(--gold-500);
    border-radius: 100px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.header-phone:hover {
    background: var(--gold-500);
    color: var(--white);
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    margin-left: auto;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        z-index: 999;
    }
    
    .nav.open {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.25rem;
        text-transform: none;
        letter-spacing: 0;
    }
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--cream-50);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(200, 164, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(26, 45, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200, 164, 90, 0.12);
    border-radius: 50%;
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(200, 164, 90, 0.08);
    border-radius: 50%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 1;
}

/* --- Hero Content --- */
.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.eyebrow-line {
    width: 40px;
    height: 1.5px;
    background: var(--gold-500);
    flex-shrink: 0;
}

.eyebrow-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-600);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy-900);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-600);
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray-500);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 164, 90, 0.35);
}

.btn-primary:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 90, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--navy-800);
    border: 1.5px solid var(--navy-700);
}

.btn-secondary:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-900);
    border-color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero-card-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 600/700;
    box-shadow: var(--shadow-xl);
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 50%);
}

.hero-card-main-caption {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.caption-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.caption-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* --- Floating Stat Cards --- */
.floating-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-stat-card .stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}

.floating-stat-card .stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--warm-gray-500);
    line-height: 1.4;
    margin-top: var(--space-xs);
}

.stat-1 {
    top: 8%;
    right: -10%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 25%;
    left: -8%;
    animation-delay: -2s;
}

.stat-3 {
    bottom: 5%;
    right: -5%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Hero Divider --- */
.hero-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl) 0;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--warm-gray-200);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ===================================
   SECTION COMMONS
   =================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-4xl);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.section-headline em {
    font-style: italic;
    color: var(--gold-600);
}

/* ===================================
   SERVICES
   =================================== */
.services {
    padding: var(--space-5xl) 0;
    background: var(--cream-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--warm-gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray-500);
    margin-bottom: var(--space-lg);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-700);
}

.service-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold-500);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ABOUT
   =================================== */
.about {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image-group {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 560/640;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--navy-900);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accent-badge-number {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold-400);
}

.accent-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray-500);
    margin-bottom: var(--space-lg);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.value-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy-700);
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-img-accent {
        right: -20px;
        bottom: -20px;
    }
}

/* ===================================
   WHY US
   =================================== */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(200, 164, 90, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 164, 90, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-content .section-headline {
    color: var(--white);
    text-align: left;
}

.why-us-content .section-eyebrow {
    justify-content: flex-start;
}

.why-us-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-xl);
    max-width: 480px;
}

.why-us-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.big-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.big-stat.full-width {
    background: rgba(200, 164, 90, 0.1);
    border-color: rgba(200, 164, 90, 0.2);
}

.big-stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.big-stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .why-us-layout {
        grid-template-columns: 1fr;
    }
    
    .why-us-content .section-headline {
        text-align: center;
    }
    
    .why-us-content .section-eyebrow {
        justify-content: center;
    }
    
    .why-us-body {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--cream-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--warm-gray-200);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold-500);
    opacity: 0.4;
    position: absolute;
    top: var(--space-lg);
    left: var(--space-xl);
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--warm-gray-600);
    margin-bottom: var(--space-xl);
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--warm-gray-400);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--navy-800);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(200, 164, 90, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(200, 164, 90, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .section-headline {
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.cta-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ===================================
   CONTACT
   =================================== */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray-500);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
}

.detail-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy-700);
}

.detail-value a {
    color: var(--navy-700);
    transition: color var(--transition-fast);
}

.detail-value a:hover {
    color: var(--gold-600);
}

/* --- Form --- */
.form-card {
    background: var(--cream-50);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--warm-gray-200);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: var(--space-sm);
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--warm-gray-500);
    margin-bottom: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--navy-900);
    background: var(--white);
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
}

.form-input::placeholder {
    color: var(--warm-gray-300);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6c5e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* --- Form Success --- */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-2xl);
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.1);
    border-radius: 50%;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: var(--space-md);
}

.success-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray-500);
}

.success-text a {
    color: var(--gold-600);
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--navy-900);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-lg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: var(--space-lg);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col li a,
.footer-col li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-col li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    gap: var(--space-md);
}

.copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.service-area {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}
