
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #06bccc;
            --dark-gold: #00a0ae;
            --black: #0a0a0a;
            --charcoal: #1a1a1a;
            --cream: #f5f5f0;
            --text-light: #888888;
            --white: #ffffff;
        }

        body {
            font-family: 'Playfair Display', serif;
            background: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--gold);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 3px;
            color: var(--gold);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--cream);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .cta-button {
            background: transparent;
            color: var(--gold);
            padding: 0.75rem 2rem;
            border: 1px solid var(--gold);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* Hero */
        .hero {
            margin-top: 80px;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%2306bccc" fill-opacity="0.03" x="0" y="0" width="50" height="50"/><rect fill="%2306bccc" fill-opacity="0.03" x="50" y="50" width="50" height="50"/></svg>');
            background-size: 100px 100px;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 2rem;
            color: var(--white);
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--cream);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .hero-image {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .luxury-icon {
            font-size: 12rem;
            color: var(--gold);
            opacity: 0.1;
            position: absolute;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        /* Sections */
        section {
            padding: 6rem 2rem;
            max-width: 100%;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 4rem;
            color: var(--gold);
            letter-spacing: 2px;
        }

        /* About */
        .about {
            background: var(--charcoal);
            border-radius: 2px;
            margin: 2rem auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 2;
            color: var(--cream);
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--black);
            border: 1px solid var(--gold);
        }

        .stat-number {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--cream);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--charcoal);
            padding: 3rem;
            border: 1px solid rgba(0, 160, 174, 0.2);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
        }

        .service-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        /* Why Choose Us */
        .features {
            background: var(--charcoal);
            border-radius: 2px;
            margin: 2rem auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            text-align: center;
            padding: 3rem;
            background: var(--black);
            border: 1px solid rgba(0, 160, 174, 0.2);
            transition: all 0.3s;
        }

        .feature-item:hover {
            border-color: var(--gold);
            transform: scale(1.02);
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--black);
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--charcoal);
            margin-bottom: 1rem;
            border: 1px solid rgba(0, 160, 174, 0.2);
            overflow: hidden;
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            color: var(--cream);
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: rgba(0, 160, 174, 0.1);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: var(--text-light);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 2rem 2rem;
        }

        /* Contact */
        .contact {
            background: var(--charcoal);
            border-radius: 2px;
            margin: 2rem auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--black);
            border: 1px solid rgba(0, 160, 174, 0.2);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            font-size: 1.5rem;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--charcoal);
            padding: 3rem;
            border: 1px solid rgba(0, 160, 174, 0.2);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--cream);
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--charcoal), var(--black));
            padding: 4rem;
            border: 1px solid var(--gold);
            margin: 2rem auto;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--gold);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input {
            padding: 1rem;
            background: var(--black);
            border: 1px solid rgba(0, 160, 174, 0.3);
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin: 1rem 0;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 0.25rem;
            accent-color: var(--gold);
        }

        .checkbox-group label {
            color: var(--cream);
            font-size: 0.9rem;
        }

        .submit-btn {
            background: var(--gold);
            color: var(--black);
            padding: 1rem 2rem;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: var(--dark-gold);
            transform: translateY(-2px);
        }

        .confirmation-message {
            display: none;
            background: var(--gold);
            color: var(--black);
            padding: 1.5rem;
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: var(--black);
            border-top: 1px solid var(--gold);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--gold);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 160, 174, 0.2);
            color: var(--text-light);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }
        }

         /* Modal Background */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; 
            z-index: 1000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.6); /* Semi-transparent background */
        }

        /* Modal Content Box */
        .modal-content {
            background-color: #000;
            margin: 10% auto; 
            padding: 20px;
            border-radius: 8px;
            width: 80%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            animation: slideDown 0.4s ease;
        }

        /* Slide Down Animation */
        @keyframes slideDown {
            from {transform: translateY(-50px); opacity: 0;}
            to {transform: translateY(0); opacity: 1;}
        }

        /* Close Button */
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: #000;
        }

        h2 {
            margin-top: 0;
        }

        p {
            line-height: 1.6;
        }