
        /* ----- CUSTOM VARIABLES & RESET ----- */
        :root {
            --srs-green: #80171c;
            --srs-gold: #d4af37;
            --srs-cream: #f9f3e9;
            --srs-dark: #80171c91;
            --srs-soft-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            --srs-gold-gradient: linear-gradient(135deg, #d4af37, #b8942b);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--srs-cream);
            color: #80171c;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .logo-text {
            font-family: 'Playfair Display', serif;
        }

        .gold-text {
            color: var(--srs-gold);
        }

        .gold-bg {
            background: var(--srs-gold-gradient);
        }

        .green-bg {
            background: var(--srs-green);
        }

        .cream-bg {
            background: var(--srs-cream);
        }

        .dark-bg {
            background: var(--srs-dark);
        }

        .section-padding {
            padding: 80px 0;
        }
        section{
            overflow: hidden;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .gold-border {
            border-color: var(--srs-gold) !important;
        }

        .btn-gold {
            background: var(--srs-gold-gradient);
            border: none;
            color: #1e2b26;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
            color: #0f1a15;
            background: #e0c04a;
        }

        .btn-outline-gold {
            border: 2px solid var(--srs-gold);
            color: var(--srs-gold);
            background: transparent;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-gold:hover {
            background: var(--srs-gold);
            color: #1e2b26;
            transform: translateY(-2px);
        }

        .card-premium {
            background: white;
            border: none;
            border-radius: 24px;
            box-shadow: var(--srs-soft-shadow);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }

        .card-premium:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .bg-green-dark {
            background: #14362b;
        }

        /* ----- TOP HEADER ----- */
        .top-header {
            background: #0f2a21;
            color: #e8e0d0;
            font-size: 0.85rem;
            padding: 6px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .top-header a {
            color: #e8e0d0;
            text-decoration: none;
            margin: 0 10px;
        }

        .top-header a:hover {
            color: var(--srs-gold);
        }

        .social-icons a {
            margin: 0 6px;
            font-size: 1rem;
        }

        /* ----- NAV ----- */
        .navbar {
            background: #80171c !important;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .navbar .nav-link {
            color: #f0ede7 !important;
            font-weight: 500;
            margin: 0 8px;
            transition: 0.2s;
            font-size: 0.95rem;
        }

        .navbar .nav-link:hover {
            color: var(--srs-gold) !important;
        }

        .navbar .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 2px;
        }

        .navbar .logo-text span {
            color: var(--srs-gold);
        }

        .btn-call-nav {
            background: var(--srs-gold-gradient);
            border-radius: 40px;
            padding: 8px 22px;
            font-weight: 600;
            color: #14362b !important;
            transition: 0.3s;
        }

        .btn-call-nav:hover {
            transform: scale(1.03);
            color: #0a1f18 !important;
        }

        /* ----- HERO CAROUSEL ----- */
        .hero-carousel .carousel-item {
            height: 90vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-carousel .carousel-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 30, 22, 0.55);
            background: linear-gradient(135deg, rgba(10, 30, 22, 0.7) 20%, rgba(0, 0, 0, 0.25) 80%);
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 750px;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.3rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }

        /* ----- ABOUT ----- */
        .about-img {
            border-radius: 28px;
            box-shadow: var(--srs-soft-shadow);
            width: 100%;
            object-fit: cover;
            height: 420px;
        }

        .highlight-list li {
            list-style: none;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .highlight-list li i {
            color: var(--srs-gold);
            margin-right: 14px;
            font-size: 1.4rem;
        }

        /* ----- SERVICES CARDS ----- */
        .service-card .card-img-top {
            height: 200px;
            object-fit: cover;
            border-radius: 24px 24px 0 0;
        }

        .service-card .card-body {
            padding: 1.8rem 1.5rem;
        }

        .service-card .card-title {
            font-weight: 700;
            color: var(--srs-green);
        }

        /* ----- WHY CHOOSE ----- */
        .why-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 26px 18px;
            text-align: center;
            transition: 0.3s;
            height: 100%;
        }

        .why-card:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-6px);
        }

        .why-card i {
            font-size: 2.8rem;
            color: var(--srs-gold);
            margin-bottom: 12px;
        }

        /* ----- PROCESS ----- */
        .step-circle {
            width: 70px;
            height: 70px;
            background: var(--srs-gold-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: #14362b;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }

        .process-line {
            height: 3px;
            background: var(--srs-gold);
            width: 80%;
            margin: 0 auto;
            opacity: 0.3;
        }

        /* ----- GALLERY LIGHTBOX ----- */
        .gallery-img {
            border-radius: 18px;
            cursor: pointer;
            transition: 0.3s ease;
            width: 100%;
            height: 240px;
            object-fit: cover;
            box-shadow: var(--srs-soft-shadow);
        }

        .gallery-img:hover {
            transform: scale(1.02);
            opacity: 0.9;
        }

        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 20, 16, 0.92);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-img {
            max-width: 85%;
            max-height: 80vh;
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            border: 3px solid var(--srs-gold);
        }

        .lightbox-close {
            position: absolute;
            top: 28px;
            right: 40px;
            font-size: 3rem;
            color: white;
            cursor: pointer;
            transition: 0.2s;
        }

        .lightbox-close:hover {
            color: var(--srs-gold);
            transform: rotate(90deg);
        }

        /* ----- TESTIMONIALS ----- */
        .testimonial-card {
            background: white;
            border-radius: 28px;
            padding: 30px 24px;
            box-shadow: var(--srs-soft-shadow);
            margin: 12px;
            border-left: 6px solid var(--srs-gold);
        }

        .testimonial-card .stars {
            color: var(--srs-gold);
            letter-spacing: 3px;
        }

        /* ----- FAQ ----- */
        .accordion-button:not(.collapsed) {
            background: var(--srs-green);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
        }

        .accordion-button {
            font-weight: 600;
        }

        /* ----- CTA ----- */
        .cta-section {
            background: linear-gradient(rgba(10, 30, 22, 0.8), rgba(10, 30, 22, 0.85)), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1200&h=500&fit=crop') center/cover fixed;
            padding: 90px 0;
        }

        /* ----- FLOATING BUTTONS ----- */
        .float-btn {
            position: fixed;
            bottom: 28px;
            z-index: 999;
            padding: 14px 24px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
            border: none;
            transition: 0.25s ease;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .float-btn:hover {
            transform: scale(1.05);
            color: white;
        }

        .float-call {
            left: 20px;
            background: #1a5a47;
        }

        .float-wa {
            right: 20px;
            background: #25D366;
        }

        /* ----- FOOTER ----- */
        .footer a {
            color: #ccc;
            text-decoration: none;
        }

        .footer a:hover {
            color: var(--srs-gold);
        }

        .footer .social-icon {
            font-size: 1.6rem;
            margin-right: 12px;
        }

        /* ----- RESPONSIVE ----- */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-img {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .hero-carousel .carousel-item {
                height: 70vh;
                min-height: 400px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .float-btn {
                padding: 10px 16px;
                font-size: 0.9rem;
            }

            .float-call {
                left: 12px;
            }

            .float-wa {
                right: 12px;
            }
        }

        @media (max-width: 576px) {
            .top-header {
                font-size: 0.7rem;
            }

            .top-header a {
                margin: 0 4px;
            }
        }