
        :root {
            --gold: #C8A951;
            --dark-gold: #A8892C;
            --black: #000000;
            --white: #FFFFFF;
            --light-bg: #F8F9FA;
            --soft-grey: #E9ECEF;
            --text-grey: #6C757D;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, .premium-font {
            font-family: 'Playfair Display', serif;
        }

        /* Branding Colors */
        .bg-gold { background-color: var(--gold) !important; }
        .text-gold { color: var(--gold) !important; }
        .border-gold { border-color: var(--gold) !important; }
        
        .btn-gold { 
            background-color: var(--gold); 
            color: var(--black);
            font-weight: 700;
            border: none;
            border-radius: 0;
            padding: 14px 32px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }
        .btn-gold:hover {
            background-color: var(--white);
            color: var(--black);
            transform: translateY(-3px);
        }

        /* Navbar & Mega Menu */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid var(--soft-grey);
            padding: 0.6rem 0;
            z-index: 1050;
        }

        .nav-link {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            color: var(--black) !important;
            padding: 1.5rem 1rem !important;
            display: flex;
            align-items: center;
        }

        .nav-link.active {
            color: var(--gold) !important;
        }

        .dropdown-toggle::after {
            display: none !important;
        }

        .navbar .dropdown { position: static; }
        .navbar .dropdown-menu {
            width: 100%;
            left: 0;
            right: 0;
            top: 100%;
            border: none;
            border-radius: 0;
            margin-top: 0;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            background: #fff;
            padding: 2.5rem 0;
            display: none;
            border-top: 2px solid var(--gold);
        }

        .navbar .dropdown-menu.show {
            display: block;
        }
        
        @media (min-width: 992px) {
            .navbar .dropdown:hover .dropdown-menu {
                display: block;
            }
        }

        .mega-menu-item {
            padding: 1.25rem 1rem 1.25rem 0;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: flex-start;
            border-radius: 4px;
            color: var(--black);
        }
        .mega-menu-item:hover {
            background: var(--light-bg);
            padding-left: 1rem;
        }
        .mega-menu-icon {
            font-size: 1.25rem;
            color: var(--gold);
            margin-right: 1.25rem;
            width: 24px;
            text-align: center;
            margin-top: 3px;
        }

        .bg-black {
            transition: all 0.4s ease;
        }
        .bg-black:hover {
            box-shadow: 0 15px 40px rgba(200, 169, 81, 0.25) !important;
            transform: translateY(-5px);
        }

        .grayscale {
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        .grayscale:hover {
            filter: grayscale(0%);
        }

        .fade-in { animation: fadeIn 0.6s ease-out forwards; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Page Header */
        .page-header {
            background-color: var(--black);
            padding: 100px 0;
            color: white;
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid var(--gold);
            margin-top: 75px;
        }
        .page-header::after {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 30%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(200, 169, 81, 0.05));
        }

        section { padding: 80px 0; }

        /* Premium Service Cards */
        .premium-service-card {
            position: relative;
            height: 100%;
            overflow: hidden;
            background: var(--white);
            border: 1px solid #e8e8e8;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .premium-service-card:hover {
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(200, 169, 81, 0.15);
            transform: translateY(-5px);
        }

        .premium-service-card .card-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), transparent);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .premium-service-card:hover .card-gradient {
            height: 6px;
            background: var(--gold);
        }

        .premium-service-card .card-content {
            padding: 40px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-icon-wrapper {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            border-radius: 8px;
            background: rgba(200, 169, 81, 0.08);
            transition: all 0.4s ease;
        }

        .premium-service-card:hover .service-icon-wrapper {
            background: rgba(200, 169, 81, 0.15);
            transform: scale(1.1);
        }

        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }

        .service-divider {
            width: 40px;
            height: 3px;
            background: var(--gold);
            margin-bottom: 20px;
            transition: width 0.4s ease;
        }

        .premium-service-card:hover .service-divider {
            width: 60px;
        }

        .service-description {
            color: #666666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
            font-weight: 400;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            flex-grow: 1;
        }

        .service-features li {
            color: #333333;
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .service-features li i {
            color: var(--gold);
            margin-right: 12px;
            font-size: 0.75rem;
            min-width: 16px;
        }

        .premium-btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--black);
            color: var(--gold);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1.2px;
            border: 2px solid var(--black);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            text-align: center;
            width: 100%;
        }

        .premium-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            z-index: -1;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .premium-btn:hover {
            color: var(--black);
            border-color: var(--gold);
            text-decoration: none;
        }

        .premium-btn:hover::before {
            left: 0;
        }

        .premium-btn i {
            margin-left: 8px;
            transition: margin-left 0.3s ease;
        }

        .premium-btn:hover i {
            margin-left: 12px;
        }

        @media (max-width: 768px) {
            .premium-service-card .card-content {
                padding: 30px 20px;
            }
            .service-title {
                font-size: 1.25rem;
            }
            .service-description {
                font-size: 0.9rem;
            }
        }