 
        /* ==============================
           CSS VARIABLES & RESET
        ============================== */
        :root {
            --primary: #0ca854;
            --primary-dark: #0ca854;
            --primary-light: #0ca854;
            --primary-mid: #0ca854;
            --accent-red: #ff6f61;
            --accent-red-light: #fdf0ef;
            --accent-red-dark: #ff6f61;
            --white: #ffffff;
            --off-white: #f8fbf9;
            --text-dark: #111827;
            --text-muted: #6b7280;
            --text-light: #9ca3af;
            --border: #e5e7eb;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-display: 'DM Serif Display', 'Noto Serif', serif;
            --font-body: 'DM Sans', 'Poppins', sans-serif;
            /* Keep existing accent-color variable for backward compat */
            --accent-color: #e8f5ee;
        }

        *, *::before, *::after { box-sizing: border-box; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: var(--font-display);
            line-height: 1.25;
        }

        /* ==============================
           TOPBAR EMERGENCY STRIP
        ============================== */
        .topbar-emergency {
            background: var(--accent-red);
            color: var(--white);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
            padding: 7px 0;
        }
        .topbar-emergency a { color: var(--white); text-decoration: none; }
        .topbar-emergency .pulse-dot {
            width: 8px; height: 8px;
            background: #fff;
            border-radius: 50%;
            display: inline-block;
            margin-right: 6px;
            animation: pulse-red 1.4s infinite;
        }
        @keyframes pulse-red {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        /* ==============================
           NAVBAR
        ============================== */
        .navbar-main {
            background: var(--primary) !important;
            padding: 14px 0;
            box-shadow: 0 4px 20px rgba(26,122,60,0.18);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        .navbar-brand-area .brand-name {
            font-family: var(--font-display);
            font-size: 26px;
            color: var(--white);
            letter-spacing: -0.02em;
            margin: 0;
            line-height: 1;
        }
        .navbar-brand-area .brand-tagline {
            font-size: 11px;
            color: rgba(255,255,255,0.7);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin: 0;
        }
        .navbar-main .nav-link {
            color: rgba(255,255,255,0.88) !important;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
        }
        .navbar-main .nav-link:hover,
        .navbar-main .nav-link.active {
            color: var(--white) !important;
            background: rgba(255,255,255,0.15);
        }
        .navbar-main .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px; left: 50%; right: 50%;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition);
        }
        .navbar-main .nav-link:hover::after { left: 16%; right: 16%; }
        .btn-emergency-nav {
            background: var(--accent-red);
            color: var(--white) !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            padding: 8px 18px !important;
            font-size: 13px;
            border: none;
            box-shadow: 0 4px 12px rgba(192,57,43,0.4);
            transition: var(--transition);
        }
        .btn-emergency-nav:hover {
            background: var(--accent-red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(192,57,43,0.5);
        }
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.5) !important;
            border-radius: 8px;
        }
        .navbar-toggler-icon { filter: invert(1); }

        /* ==============================
           HERO SECTION
        ============================== */
        .hero {
            position: relative;
            min-height: 88vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #0d1f13;
            padding: 50px 20px !important;
        }
        .hero-bg-slides {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease;
        }
        .hero-slide.active { opacity: 1; }
        /* .hero-slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1600&q=80');
        } */
        .hero-slide:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1600&q=80');
        }
        .hero-slide:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=1600&q=80');
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            /* background: linear-gradient(
                130deg,
                rgba(10, 50, 22, 0.82) 0%,
                rgba(20, 94, 46, 0.60) 45%,
                rgba(10, 30, 15, 0.65) 100%
            ); */
            /* background: linear-gradient(
                130deg,
                rgba(10, 50, 22, 0.92) 0%,
                rgba(20, 94, 46, 0.80) 45%,
                rgba(10, 30, 15, 0.75) 100%
            ); */
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 22px;
        }
        .hero-badge .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse-red 1.4s infinite; }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 66px);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        .hero h1 span { color: #6ee7a0; }
        .hero .lead {
            color: rgba(255,255,255,0.82);
            font-size: clamp(15px, 2vw, 18px);
            max-width: 600px;
            margin-bottom: 36px;
        }
        .hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
        .btn-hero-primary {
            background: var(--white);
            color: var(--primary-dark);
            font-weight: 700;
            padding: 14px 30px;
            border-radius: 10px;
            font-size: 15px;
            border: none;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-hero-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(0,0,0,0.25);
            color: var(--primary-dark);
        }
        .btn-hero-red {
            background: var(--accent-red);
            color: var(--white);
            font-weight: 700;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 15px;
            border: none;
            box-shadow: 0 8px 24px rgba(192,57,43,0.4);
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-hero-red:hover {
            background: var(--accent-red-dark);
            transform: translateY(-2px);
            color: var(--white);
        }
        .btn-hero-outline {
            background: transparent;
            color: var(--white);
            font-weight: 600;
            padding: 14px 26px;
            border-radius: 10px;
            font-size: 15px;
            border: 2px solid rgba(255,255,255,0.5);
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-hero-outline:hover {
            background: rgba(255,255,255,0.12);
            border-color: var(--white);
            color: var(--white);
        }
        .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        .hero-stat { color: var(--white); }
        .hero-stat .num {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            line-height: 1;
            color: #fff;
        }
        .hero-stat .label {
            font-size: 12px;
            color: rgba(255,255,255,0.65);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-top: 4px;
        }
        .hero-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; margin: 4px 0; }

        /* Search Card in Hero */
        .hero-search-card {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(20px);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: 0 24px 64px rgba(0,0,0,0.22);
            border: 1px solid rgba(255,255,255,0.8);
        }
        .hero-search-card h5 {
            font-family: var(--font-display);
            color: var(--primary-dark);
            font-size: 18px;
            margin-bottom: 18px;
        }
        .hero-search-card .form-select,
        .hero-search-card .form-control {
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 11px 14px;
            font-size: 14px;
            color: var(--text-dark);
            background: #fafafa;
            transition: var(--transition);
        }
        .hero-search-card .form-select:focus,
        .hero-search-card .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26,122,60,0.12);
            background: var(--white);
        }
        .btn-search-hero {
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            padding: 11px 20px;
            font-size: 14px;
            font-weight: 600;
            width: 100%;
            margin-top: 12px;
            transition: var(--transition);
        }
        .btn-search-hero:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(26,122,60,0.3);
            color: var(--white);
        }

        /* ==============================
           QUICK SERVICES BAR
        ============================== */
        .quick-services-bar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .qs-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 20px;
            border-right: 1px solid var(--border);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text-dark);
        }
        .qs-item:last-child { border-right: none; }
        .qs-item:hover { background: var(--primary-light); color: var(--primary-dark); }
        .qs-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .qs-item:hover .qs-icon { background: var(--primary); color: var(--white); }
        .qs-item.red .qs-icon { background: var(--accent-red-light); color: var(--accent-red); }
        .qs-item.red:hover .qs-icon { background: var(--accent-red); color: var(--white); }
        .qs-label { font-weight: 600; font-size: 14px; margin: 0; line-height: 1.2; }
        .qs-sub { font-size: 11px; color: var(--text-muted); }

        /* ==============================
           RESULT AREA (AJAX Search)
        ============================== */
        #resultArea { margin-top: 0; }

        /* ==============================
           PROMO SECTION
        ============================== */
        .promo-section {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-light) 0%, #d4edde 100%);
            box-sizing: border-box;
            padding: 20px 0;
        }
        .promo-card {
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
            transition: var(--transition);
            border: none !important;
        }
        .promo-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(26,122,60,0.15) !important;
        }
        .coupon-box {
            background: #ffffff;
            border-radius: 10px;
            border: 1.5px dashed #1a7a3c;
            padding: 12px 14px;
            min-height: 70px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .promo-text {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            line-height: 1.4;
        }
        .promo-text b { color: var(--primary-dark); }
        .copyBtn {
            padding: 6px 10px;
            position: relative;
            overflow: hidden;
        }
        .copyBtn:active::after {
            content: "";
            position: absolute;
            left: 50%; top: 50%;
            width: 5px; height: 5px;
            background: rgba(255,255,255,0.6);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: ripple 0.4s ease-out;
        }
        @keyframes ripple {
            from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            to { opacity: 0; transform: translate(-50%, -50%) scale(12); }
        }

        /* ==============================
           SECTION HEADERS
        ============================== */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header .eyebrow {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 12px;
        }
        .section-header h2 {
            font-size: clamp(26px, 3.5vw, 40px);
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 520px;
            margin: 0 auto;
        }
        .section-line {
            width: 60px; height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent-red));
            border-radius: 2px;
            margin: 14px auto 0;
        }

        /* ==============================
           SERVICES SECTION
        ============================== */
        .services {
            padding: 80px 0;
            background: var(--off-white);
        }
        .service-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .service-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-mid));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }
        .service-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
        .service-item:hover::before { transform: scaleX(1); }
        .service-item h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            display: flex; align-items: center; gap: 8px;
        }
        .service-item p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 6px;
        }
        .service-item p:last-of-type { margin-bottom: 0; }
        .service-meta {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .service-meta i { color: var(--primary); font-size: 12px; }
        .btn-book {
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            padding: 10px 22px;
            font-size: 13px;
            font-weight: 600;
            margin-top: 16px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-book:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(26,122,60,0.3);
            color: var(--white);
        }

        /* ==============================
           FEATURES SECTION
        ============================== */
        .features {
            padding: 80px 0;
            background: var(--white);
        }
        .feature-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }
        .feature-icon {
            width: 72px; height: 72px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--primary-light), #c7e8d5);
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 28px;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--primary-mid));
            color: var(--white);
            transform: rotate(-5deg) scale(1.05);
        }
        .feature-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        .feature-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        /* ==============================
           ABOUT SECTION
        ============================== */
        .about {
            padding: 90px 0;
            background: var(--off-white);
        }
        .about-image-wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 480px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
            display: flex; align-items: center; justify-content: center;
        }
        .about-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-image-badge {
            position: absolute;
            bottom: 24px; left: 24px;
            background: var(--white);
            border-radius: 14px;
            padding: 16px 20px;
            box-shadow: var(--shadow-md);
            display: flex; align-items: center; gap: 12px;
        }
        .about-image-badge .badge-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
        }
        .about-image-badge .badge-num {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1;
        }
        .about-image-badge .badge-label {
            font-size: 12px;
            color: var(--text-muted);
        }
        .about h2 {
            font-size: clamp(28px, 4vw, 44px);
            color: var(--text-dark);
            margin-bottom: 18px;
        }
        .about-desc {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .about-check-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }
        .check-icon {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .check-title { font-weight: 700; font-size: 15px; color: var(--text-dark); margin: 0 0 2px; }
        .check-sub { font-size: 13px; color: var(--text-muted); margin: 0; }

        /* ==============================
           EMERGENCY BANNER
        ============================== */
        .emergency-section {
            background: linear-gradient(135deg, var(--accent-red) 0%, #962d22 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        .emergency-section::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 240px; height: 240px;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
        }
        .emergency-section::after {
            content: '';
            position: absolute;
            bottom: -80px; left: 10%;
            width: 200px; height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
        }
        .emergency-section h2 {
            color: var(--white);
            font-size: clamp(26px, 3.5vw, 40px);
            margin-bottom: 10px;
        }
        .emergency-section p { color: rgba(255,255,255,0.8); font-size: 16px; }
        .btn-emergency-big {
            background: var(--white);
            color: var(--accent-red);
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 16px;
            border: none;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 10px;
        }
        .btn-emergency-big:hover {
            background: #fff3f2;
            color: var(--accent-red-dark);
            transform: translateY(-2px);
        }
        .emergency-phone {
            font-family: var(--font-display);
            font-size: 42px;
            color: var(--white);
            font-weight: 700;
            line-height: 1;
        }
        .emergency-phone-label { color: rgba(255,255,255,0.7); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }

        /* ==============================
           TESTIMONIALS
        ============================== */
        .testimonials-section {
            padding: 80px 0;
            background: var(--white);
        }
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            height: 100%;
            transition: var(--transition);
            position: relative;
        }
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 80px;
            color: var(--primary-light);
            position: absolute;
            top: 10px; left: 18px;
            line-height: 1;
            z-index: 0;
        }
        .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .testimonial-body {
            position: relative;
            z-index: 1;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
            padding-top: 24px;
        }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .author-avatar {
            width: 46px; height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-mid));
            color: var(--white);
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 18px;
        }
        .author-name { font-weight: 700; font-size: 15px; color: var(--text-dark); margin: 0; }
        .author-loc { font-size: 12px; color: var(--text-muted); }
        .stars { color: #f59e0b; font-size: 13px; margin-bottom: 4px; }

        /* ==============================
           FOOTER
        ============================== */
        .footer-main {
            background: linear-gradient(180deg, #0d2418 0%, #0a1d12 100%);
            color: var(--white);
            padding: 70px 0 30px;
        }
        .footer-brand .brand-name-footer {
            font-family: var(--font-display);
            font-size: 28px;
            color: var(--white);
            margin-bottom: 6px;
        }
        .footer-brand p {
            color: rgba(255,255,255,0.55);
            font-size: 14px;
            line-height: 1.7;
            margin-top: 10px;
        }
        .footer-social { display: flex; gap: 10px; margin-top: 18px; }
        .social-btn {
            width: 38px; height: 38px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.15);
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
        }
        .social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
        .footer-col h5 {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.5);
            margin-bottom: 18px;
        }
        .footer-links { list-style: none; padding: 0; margin: 0; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: flex; align-items: center; gap: 6px;
        }
        .footer-links a:hover { color: #6ee7a0; padding-left: 4px; }
        .footer-links a i { font-size: 11px; color: var(--primary-mid); }
        .footer-contact-item {
            display: flex; align-items: flex-start; gap: 12px;
            margin-bottom: 14px;
        }
        .footer-contact-item .ci-icon {
            width: 34px; height: 34px;
            border-radius: 8px;
            background: rgba(255,255,255,0.08);
            display: flex; align-items: center; justify-content: center;
            color: #6ee7a0;
            font-size: 14px;
            flex-shrink: 0;
        }
        .footer-contact-item .ci-text {
            color: rgba(255,255,255,0.65);
            font-size: 13px;
            line-height: 1.5;
        }
        .footer-contact-item .ci-text strong { color: var(--white); display: block; font-size: 14px; }
        .footer-emergency-box {
            background: rgba(192,57,43,0.2);
            border: 1px solid rgba(192,57,43,0.4);
            border-radius: 12px;
            padding: 14px 16px;
            margin-top: 18px;
        }
        .footer-emergency-box .em-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent-red);
            font-weight: 700;
        }
        .footer-emergency-box .em-num {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--white);
            margin: 2px 0 0;
        }
        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin: 40px 0 24px;
        }
        .footer-bottom-text {
            color: rgba(255,255,255,0.35);
            font-size: 13px;
        }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 13px; text-decoration: none; transition: var(--transition); }
        .footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

        /* ==============================
           DEPARTMENTS STRIP
        ============================== */
        .dept-strip {
            padding: 60px 0;
            background: var(--primary-dark);
        }
        .dept-strip .section-header h2 { color: var(--white); }
        .dept-strip .section-header p { color: rgba(255,255,255,0.65); }
        .dept-strip .eyebrow { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
        .dept-card {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px;
            padding: 24px 18px;
            text-align: center;
            transition: var(--transition);
            cursor: default;
        }
        .dept-card:hover {
            background: rgba(255,255,255,0.14);
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.25);
        }
        .dept-card i { font-size: 30px; color: #6ee7a0; margin-bottom: 12px; }
        .dept-card h6 { color: var(--white); font-size: 14px; font-weight: 600; margin: 0; }

        /* ==============================
           RESPONSIVE
        ============================== */
        @media (max-width: 991px) {
            .hero { min-height: 70vh; }
            .hero-search-card { margin-top: 40px; }
            .qs-item { padding: 14px 12px; }
            .about-image-wrap { height: 320px; margin-bottom: 40px; }
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .hero-stats { gap: 18px; }
            .hero-stat .num { font-size: 24px; }
            .hero-cta-group { gap: 10px; }
            .btn-hero-primary, .btn-hero-red, .btn-hero-outline { font-size: 13px; padding: 12px 18px; }
            .quick-services-bar .row { overflow-x: auto; flex-wrap: nowrap; }
            .qs-item { min-width: 160px; }
            .emergency-phone { font-size: 30px; }
            .footer-main { padding: 50px 0 24px; }
        }
        @media (max-width: 576px) {
            .hero { min-height: 100svh; }
            .hero-stats { flex-wrap: wrap; gap: 14px; }
            .hero-divider { display: none; }
        }

        /* ==============================
           SCROLL ANIMATIONS
        ============================== */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-up:nth-child(2) { transition-delay: 0.1s; }
        .fade-up:nth-child(3) { transition-delay: 0.2s; }
        .fade-up:nth-child(4) { transition-delay: 0.3s; }
     