
        :root {
            --gold: #d4af37;
            --dark-gold: #b8941f;
            --black: #1a1a1a;
            --dark-gray: #2d2d2d;
            --light-gray: #f5f5f5;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--black);
            background: var(--white);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Header Styles */
        .top-header {
            background: var(--black);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .main-header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        .navbar-brand {            font-size: 2rem;
            font-weight: 900;
            color: var(--black);
            font-family: 'Playfair Display', serif;
        }

        .navbar-brand span {
            color: var(--gold);
        }

        .nav-link {
            color: var(--black);
            font-weight: 400;
            margin: 0 1rem;
            transition: all 0.3s;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-link:hover {
            color: var(--gold);
        }

        /* Hero Section */
        .hero {
            margin-top: 40px;
            padding: 150px 0;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/hero.jpg') center/cover;
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to top, var(--white), transparent);
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn-luxury {
            background: var(--gold);
            color: var(--black);
            padding: 15px 40px;
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .btn-luxury:hover {
            background: var(--dark-gold);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .btn-outline-luxury {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--gold);
            padding: 15px 40px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .btn-outline-luxury:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 3.5rem;
            color: var(--black);
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 4rem;
            font-size: 1.2rem;
            font-style: italic;
        }

        /* About Section */
        .about-content {
            padding: 60px;
            background: var(--light-gray);
            position: relative;
        }

        .about-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: var(--gold);
        }

        .luxury-stats {
            text-align: center;
            padding: 40px;
            background: var(--black);
            color: var(--white);
            margin: 20px 0;
        }

        .stats-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
        }

        /* Service Cards */
        .service-card {
            background: var(--white);
            padding: 40px;
            margin-bottom: 30px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 25px;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--gold);
            color: var(--black);
            transform: rotate(360deg);
        }

        /* Category Headers */
        .category-header {
            background: var(--black);
            color: var(--white);
            padding: 30px;
            text-align: center;
            margin-bottom: 40px;
        }

        .category-header h3 {
            font-size: 2.5rem;
            margin: 0;
        }

        .category-header h3 span {
            color: var(--gold);
        }

        /* Features */
        .feature-box {
            text-align: center;
            padding: 50px 30px;
            background: var(--white);
            border: 2px solid transparent;
            transition: all 0.3s;
            height: 100%;
        }

        .feature-box:hover {
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 25px;
            transition: all 0.3s;
        }

        .feature-box:hover .feature-icon {
            transform: scale(1.1);
        }

        /* Testimonials */
        .testimonial-card {
            background: var(--white);
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            right: 30px;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 25px;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 20px;
            border: 3px solid var(--gold);
        }

        /* FAQ */
        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 25px 30px;
            background: var(--black);
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: var(--dark-gray);
        }

        .faq-answer {
            padding: 30px;
            display: none;
            background: var(--light-gray);
            color: #555;
        }

        .faq-answer.active {
            display: block;
        }

        /* Contact Form */
        .contact-form {
            background: var(--white);
            padding: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 0;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-title {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 30px;
            font-family: 'Playfair Display', serif;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 10px;
        }

        /* Popup Styles */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            overflow-y: auto;
        }

        .popup-content {
            background: var(--white);
            margin: 50px auto;
            padding: 50px;
            max-width: 700px;
            position: relative;
            border: 2px solid var(--gold);
        }

        .close-popup {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2.5rem;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }

        .close-popup:hover {
            color: var(--gold);
        }

        /* Success Message */
        .success-message {
            display: none;
            background: var(--gold);
            color: var(--black);
            padding: 20px;
            margin-top: 20px;
            font-weight: 600;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2.5rem;
            }
        }
    