/* ====================================
   VK Enterprises - Premium Website
   Design System & Styles
   ==================================== */

/* CSS Custom Properties */
:root {
    /* Primary Palette - Warm Bronze/Copper */
    --primary-50: #fdf4ed;
    --primary-100: #fbe5d2;
    --primary-200: #f6c8a5;
    --primary-300: #f0a46d;
    --primary-400: #e87a38;
    --primary-500: #c96321;
    --primary-600: #b54e18;
    --primary-700: #963c16;
    --primary-800: #7a3218;
    --primary-900: #652b17;

    /* Neutral Palette */
    --neutral-50: #f8f9fa;
    --neutral-100: #f1f3f5;
    --neutral-200: #e9ecef;
    --neutral-300: #dee2e6;
    --neutral-400: #ced4da;
    --neutral-500: #adb5bd;
    --neutral-600: #868e96;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
    --neutral-950: #0f1114;

    /* Accent */
    --gold: #c9a96e;
    --gold-light: #e8d5a8;
    --dark-glass: rgba(15, 17, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c96321 0%, #e87a38 50%, #c9a96e 100%);
    --gradient-dark: linear-gradient(180deg, #0f1114 0%, #1a1d23 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e8d5a8 50%, #c9a96e 100%);
    --gradient-text: linear-gradient(135deg, #e87a38 0%, #c9a96e 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(201, 99, 33, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--neutral-950);
    color: var(--neutral-300);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    max-width: 75ch; /* Optimum reading length */
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    letter-spacing: -0.01em;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ====================================
   Page Loader
   ==================================== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--neutral-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: 4px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: loaderProgress 1.5s ease forwards;
}

@keyframes loaderProgress {
    to { width: 100%; }
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth), backdrop-filter 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 17, 20, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 11px;
    color: var(--primary-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-400);
    border-radius: 8px;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
    cursor: pointer;
    outline: none;
}

.nav-link:focus-visible {
    color: #fff;
    outline: 2px solid var(--primary-400);
    outline-offset: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.nav-cta {
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-primary);
    border-radius: 10px;
    margin-left: 8px;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    box-shadow: 0 4px 16px rgba(201, 99, 33, 0.3);
    cursor: pointer;
    outline: none;
}

.nav-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(201, 99, 33, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 99, 33, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

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

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

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

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 17, 20, 0.7) 0%,
        rgba(15, 17, 20, 0.4) 30%,
        rgba(15, 17, 20, 0.6) 60%,
        rgba(15, 17, 20, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    margin-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8.5px;
    padding: 8px 22px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.badge-icon {
    color: var(--primary-400);
    font-size: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 92px);
    font-weight: 800;
    color: #f7f8fa;
    line-height: 1.02;
    margin-bottom: 24px;
    letter-spacing: -3px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 4px 25px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(201, 99, 33, 0.1); 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
}

.hero-highlight {
    background: linear-gradient(135deg, #d4a373 0%, #f7e7ce 25%, #d4a373 50%, #f7e7ce 75%, #c9a96e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to { background-position: 200% center; }
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #e2e8f0;
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.8s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px rgba(201, 99, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(201, 99, 33, 0.45);
}

.btn-outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary-400);
    font-weight: 600;
}

.stat-label {
    font-size: 13px;
    color: var(--neutral-500);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 11px;
    color: var(--neutral-500);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--neutral-800);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 16px;
    background: var(--primary-400);
    border-radius: 4px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(-16px); }
    50% { transform: translateY(48px); }
}

/* ====================================
   Section Shared Styles
   ==================================== */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-label-light {
    color: var(--gold-light);
}

.section-label-light::before {
    background: var(--gradient-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-light {
    color: #fff;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-desc {
    font-size: 17px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ====================================
   About Section
   ==================================== */
.about {
    background: var(--gradient-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-frame {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--primary-500);
    border-radius: 32px;
    opacity: 0.3;
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    padding: 24px 32px;
    background: var(--gradient-primary);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
}

.exp-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    letter-spacing: 1px;
}

.about-text {
    font-size: 16px;
    color: var(--neutral-400);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-400);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: background 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 99, 33, 0.2);
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 99, 33, 0.1);
    border-radius: 12px;
    color: var(--primary-400);
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: var(--neutral-500);
}

.eco-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 12px;
    color: #81c784;
    font-size: 14px;
    font-weight: 500;
}

.eco-badge svg {
    color: #81c784;
    flex-shrink: 0;
}

/* ====================================
   Services Section
   ==================================== */
.services {
    background: var(--neutral-950);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 99, 33, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 99, 33, 0.25);
    box-shadow: var(--shadow-glow);
}

.service-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.service-card-wide .service-image-wrapper {
    height: 100%;
}

.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.service-content {
    padding: 28px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 13px;
    color: var(--neutral-400);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

/* ====================================
   Facility Section
   ==================================== */
.facility {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.facility-bg {
    position: absolute;
    inset: 0;
}

.facility-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 17, 20, 0.92) 0%,
        rgba(15, 17, 20, 0.8) 50%,
        rgba(15, 17, 20, 0.92) 100%
    );
}

.facility-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.facility-desc {
    font-size: 17px;
    color: var(--neutral-400);
    line-height: 1.8;
    margin-bottom: 48px;
}

.facility-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.metric-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 99, 33, 0.3);
    transform: translateY(-4px);
}

.metric-icon {
    color: var(--primary-400);
    margin-bottom: 16px;
    display: inline-flex;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 13px;
    color: var(--neutral-500);
    letter-spacing: 0.5px;
}

/* ====================================
   Why Choose Us
   ==================================== */
.why-us {
    background: var(--gradient-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 99, 33, 0.2);
    box-shadow: var(--shadow-glow);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 99, 33, 0.1);
    border-radius: 14px;
    color: var(--primary-400);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ====================================
   Gallery Section
   ==================================== */
.gallery {
    background: var(--neutral-950);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 17, 20, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 12px;
    color: var(--primary-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

/* ====================================
   Trust / Testimonials Section
   ==================================== */
.trust {
    background: var(--gradient-dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-slider {
    margin: 32px 0;
    position: relative;
    min-height: 200px;
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s var(--ease-smooth);
}

.testimonial.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--neutral-300);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--primary-500);
}

.testimonial-author {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.author-role {
    font-size: 13px;
    color: var(--neutral-500);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: var(--neutral-800);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.dot.active {
    background: var(--gradient-primary);
    width: 48px;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-stat-card {
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
}

.trust-stat-card:hover {
    border-color: rgba(201, 99, 33, 0.2);
    transform: translateY(-4px);
}

.trust-stat-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.trust-stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary-400);
    font-weight: 600;
}

.trust-stat-label {
    display: block;
    font-size: 13px;
    color: var(--neutral-500);
    margin-top: 8px;
}

/* ====================================
   Contact Section
   ==================================== */
.contact {
    background: var(--neutral-950);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 99, 33, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s var(--ease-smooth);
}

.contact-card:hover {
    border-color: rgba(201, 99, 33, 0.2);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 99, 33, 0.1);
    border-radius: 12px;
    color: var(--primary-400);
}

.contact-card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
}

.contact-link {
    display: block;
    font-size: 15px;
    color: var(--neutral-400);
    transition: color 0.3s;
    margin-bottom: 4px;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--primary-400);
}

.contact-map {
    margin-top: 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 32px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-500);
    background: rgba(201, 99, 33, 0.05);
    box-shadow: 0 0 0 4px rgba(201, 99, 33, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-600);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23868e96' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--neutral-900);
    color: #fff;
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 11px;
    color: var(--primary-400);
    background: var(--neutral-950);
    padding: 0 6px;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s var(--ease-smooth);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
    transform: translateY(0);
}

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

/* ====================================
   Footer
   ==================================== */
.footer {
    background: #0a0b0d;
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
}

.footer-brand-tagline {
    font-size: 11px;
    color: var(--primary-400);
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 14px;
    color: var(--neutral-600);
    line-height: 1.8;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-link, .footer-link-item {
    display: block;
    font-size: 14px;
    color: var(--neutral-600);
    padding: 6px 0;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
}

.footer-link:hover, .footer-link-item:hover {
    color: var(--primary-400);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--neutral-600);
}

.footer-contact-item svg {
    color: var(--primary-400);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--neutral-600);
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    font-size: 13px;
    color: var(--neutral-700);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-link {
    color: var(--neutral-600);
    transition: color 0.3s;
    cursor: pointer;
}

.footer-legal-link:hover {
    color: var(--primary-400);
}

.footer-separator {
    color: var(--neutral-800);
    font-size: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    border-radius: 10px;
    color: var(--neutral-500);
    transition: all 0.3s var(--ease-smooth);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 48px);
    max-width: 600px;
    background: rgba(15, 17, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--neutral-400);
    max-width: 100%;
}

.cookie-link {
    color: var(--primary-400);
    text-decoration: underline;
    cursor: pointer;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-info {
        order: 2;
    }
    .footer-social {
        order: 1;
    }
    .footer-legal {
        justify-content: center;
    }
    .cookie-banner {
        bottom: 20px;
        padding: 15px 20px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================================
   WhatsApp Float
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s var(--ease-smooth);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ====================================
   Animations
   ==================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ====================================
   Responsive
   ==================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image { height: 400px; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-wide {
        grid-column: span 2;
    }

    .facility-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gallery-item-lg {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(15, 17, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-smooth);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-link {
        font-size: 20px;
        padding: 12px 24px;
    }

    .nav-links .nav-cta {
        margin: 8px 0 0;
        font-size: 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-wide {
        grid-column: span 1;
        display: block;
    }

    .facility-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-lg,
    .gallery-item-wide {
        grid-column: span 1;
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .experience-badge {
        bottom: -16px;
        right: 16px;
    }

    .contact-form {
        padding: 28px;
    }

    .about-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }

    .metric-card {
        padding: 20px 16px;
    }

    .facility-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

/* ====================================
   Theme Toggle Button
   ==================================== */
.theme-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-400);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    z-index: 1001;
    margin-left: 8px;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: rgba(201, 99, 33, 0.1);
    border-color: var(--primary-500);
    color: var(--primary-400);
    transform: rotate(15deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all 0.4s var(--ease-smooth);
}

/* Dark theme: show sun (to switch to light), hide moon */
[data-theme="dark"] .theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Light theme: show moon (to switch to dark), hide sun */
[data-theme="light"] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ====================================
   ULTRA PREMIUM LIGHT THEME
   ==================================== */
[data-theme="light"] {
    --neutral-50: #0a0b0d;
    --neutral-100: #1a1d23;
    --neutral-200: #2d3436;
    --neutral-300: #4a5568;
    --neutral-400: #4a5568;
    --neutral-500: #718096;
    --neutral-600: #a0aec0;
    --neutral-700: #cbd5e0;
    --neutral-800: #edf2f7;
    --neutral-900: #f7fafc;
    --neutral-950: #fcfaf8; /* Soft Pearl/Ivory instead of pure white */

    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --dark-glass: rgba(255, 255, 255, 0.85);

    --gradient-dark: linear-gradient(180deg, #fcfaf8 0%, #f7f3f0 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 15px 35px rgba(122, 50, 24, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 30px rgba(201, 99, 33, 0.08);
}

/* Body & Base Clarity */
[data-theme="light"] body {
    background: var(--neutral-950);
    color: #2d3436; /* Deep charcoal for premium readability */
}

[data-theme="light"] .page-loader {
    background: var(--neutral-950);
}

/* Navbar Sophistication */
[data-theme="light"] .navbar.scrolled {
    background: rgba(252, 250, 248, 0.85);
    border-bottom: 1px solid rgba(122, 50, 24, 0.05);
    backdrop-filter: blur(25px) saturate(200%);
}

[data-theme="light"] .logo-name {
    color: #1a1a1a;
}

[data-theme="light"] .nav-link {
    color: #5a6270;
    font-weight: 500;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: var(--primary-600);
}

[data-theme="light"] .mobile-toggle span {
    background: #1a1a1a;
}

/* Hero - Ultra Premium Contrast */
[data-theme="light"] .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(252, 250, 248, 0.4) 0%,
        rgba(252, 250, 248, 0.2) 30%,
        rgba(252, 250, 248, 0.5) 60%,
        rgba(252, 250, 248, 0.98) 100%
    );
}

[data-theme="light"] .hero-title {
    color: #1a1d23;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .hero-highlight {
    background: linear-gradient(135deg, #a65d3d 0%, #d48e6c 50%, #a65d3d 100%); /* Radiant Sunlight Copper */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 1px 2px rgba(122, 50, 24, 0.1));
}

[data-theme="light"] .hero-subtitle {
    color: #2d3436; /* Deep charcoal for clarity */
    text-shadow: none;
    font-weight: 500;
}

[data-theme="light"] .hero-badge {
    background: #ffffff;
    border-color: rgba(201, 99, 33, 0.2);
    color: var(--primary-700);
    box-shadow: 0 4px 12px rgba(201, 99, 33, 0.05);
}

[data-theme="light"] .hero-stats {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(201, 99, 33, 0.1);
    box-shadow: var(--shadow-lg);
}

[data-theme="light"] .stat-number {
    color: #1a1d23;
}

[data-theme="light"] .stat-label {
    color: #718096;
}

[data-theme="light"] .btn-outline {
    color: #1a1d23;
    border-color: #cbd5e0;
}

/* Sections Backgrounds */
[data-theme="light"] .about {
    background: linear-gradient(180deg, #fcfaf8 0%, #fdfcfb 100%);
}

[data-theme="light"] .section-title {
    color: #1a1d23;
}

[data-theme="light"] .about-text {
    color: #4a5568;
}

/* Service Cards - Tactile Premium */
[data-theme="light"] .services {
    background: #ffffff;
}

[data-theme="light"] .service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .service-card:hover {
    border-color: rgba(201, 99, 33, 0.2);
    box-shadow: 0 20px 40px rgba(201, 99, 33, 0.08);
}

[data-theme="light"] .service-title {
    color: #1a1a1a;
}

[data-theme="light"] .service-desc {
    color: #4a5568;
}

/* Why Us - Clean Icons */
[data-theme="light"] .why-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.03);
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .why-card h3 {
    color: #1a1d23;
}

[data-theme="light"] .why-icon-wrapper {
    background: #fdf4ed;
    color: var(--primary-600);
}

/* Facility - Soft Overlays */
[data-theme="light"] .facility-overlay {
    background: linear-gradient(
        135deg,
        rgba(252, 250, 248, 0.96) 0%,
        rgba(252, 250, 248, 0.85) 50%,
        rgba(252, 250, 248, 0.96) 100%
    );
}

[data-theme="light"] .metric-card {
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 99, 33, 0.05);
}

/* Trust - High-end Typography */
[data-theme="light"] .testimonial-quote {
    color: #2d3436;
    font-style: italic;
    border-left: 4px solid var(--primary-300);
}

[data-theme="light"] .trust-stat-card {
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

/* Forms - Clean & Minimal */
[data-theme="light"] .contact-form {
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,0,0,0.05);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: #f7fafc;
    border-color: #e2e8f0;
}

[data-theme="light"] .form-group label {
    background: #ffffff;
    color: #718096;
}

/* Footer - Elegant Neutral */
[data-theme="light"] .footer {
    background: #f7f3f0;
    border-top: 1px solid #e9e2db;
}

[data-theme="light"] .footer-brand-name {
    color: #1a1a1a;
}

[data-theme="light"] .footer-title {
    color: #1a1a1a;
}

[data-theme="light"] .footer-bottom {
    border-top-color: #e9e2db;
}

/* Smooth Transitions for Premium Feel */
[data-theme="light"] *,
[data-theme="light"] *::before,
[data-theme="light"] *::after {
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 99, 33, 0.2);
    transform: translateY(-5px);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.6;
}


@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}
