
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-navy: #5e35b1;
            --navy-standard: #9575cd;
            --navy-light: #4527a0;
            --gold: #80cbc4;
            --gold-light: #b2fef7;
            --gold-dark: #4f9a94;
            --white: #ffffff;
            --page-bg: #fafafa;
            --border: #e5e5e5;
            --text-secondary: #757575;
            --text-primary: #1a1a1a;
            --success: #66bb6a;
            --error: #ef5350;
        }

        


        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--page-bg);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 18px;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 96px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: all 0.4s ease;
        }

        header.scrolled {
            box-shadow: 0 8px 24px rgba(26, 35, 50, 0.08);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 96px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-navy);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo svg {
            width: 40px;
            height: 40px;
            fill: var(--gold);
        }

        nav {
            display: flex;
            gap: 48px;
            align-items: center;
        }

        nav a {
            font-size: 16px;
            font-weight: 500;
            color: var(--navy-light);
            text-decoration: none;
            position: relative;
            transition: color 0.4s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transform: translateX(-50%);
            transition: width 0.4s ease;
        }

        nav a:hover {
            color: var(--primary-navy);
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-button {
            padding: 12px 32px;
            background: var(--gold);
            color: var(--primary-navy);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: scale(0.98);
            background: var(--gold-dark);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary-navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 128px 0;
            background: linear-gradient(180deg, var(--page-bg) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(50px, -50px) rotate(120deg); }
            66% { transform: translate(-30px, 30px) rotate(240deg); }
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 72px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-navy);
            margin-bottom: 24px;
        }

        .hero p {
            font-size: 20px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 48px;
        }

        .hero-cta {
            padding: 20px 48px;
            font-size: 18px;
            background: var(--gold);
            color: var(--primary-navy);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.5s ease-in-out;
            box-shadow: 0 8px 24px rgba(26, 35, 50, 0.08);
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 48px rgba(201, 169, 97, 0.3);
        }

        /* About Section */
        .about {
            padding: 128px 0;
            background: var(--white);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--primary-navy);
            text-align: center;
            margin-bottom: 24px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gold);
            margin: 24px auto 0;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto 64px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
            margin-top: 64px;
        }

        .about-card {
            text-align: center;
            padding: 48px 32px;
            background: var(--page-bg);
            border-radius: 8px;
            transition: all 0.5s ease;
            animation: fadeIn 1s ease-out;
            animation-fill-mode: both;
        }

        .about-card:nth-child(1) { animation-delay: 0.1s; }
        .about-card:nth-child(2) { animation-delay: 0.2s; }
        .about-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(26, 35, 50, 0.1);
        }

        .about-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 50%;
            box-shadow: 0 4px 16px rgba(201, 169, 97, 0.2);
        }

        .about-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--gold);
        }

        .about-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 16px;
        }

        .about-card p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 128px 0;
            background: var(--page-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 48px;
            margin-top: 64px;
        }

        .feature-card {
            display: flex;
            gap: 24px;
            padding: 40px;
            background: var(--white);
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateX(-40px);
        }

        .feature-card.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-card:hover {
            border-color: var(--gold);
            transform: translateX(8px);
            box-shadow: 0 8px 24px rgba(26, 35, 50, 0.08);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            border-radius: 50%;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary-navy);
        }

        .feature-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 12px;
        }

        .feature-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Services */
        .services {
            padding: 128px 0;
            background: var(--white);
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 64px;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 14px 32px;
            background: var(--page-bg);
            border: 2px solid transparent;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            color: var(--navy-light);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .tab-button:hover {
            border-color: var(--gold-light);
        }

        .tab-button.active {
            background: var(--gold);
            color: var(--primary-navy);
            border-color: var(--gold);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeInScale 0.6s ease-out;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 48px;
        }

        .service-card {
            padding: 48px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: all 0.5s ease-in-out;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 16px 48px rgba(201, 169, 97, 0.15);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            border-radius: 12px;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--primary-navy);
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 16px;
        }

        .service-card p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .service-link {
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.4s ease;
        }

        .service-link:hover {
            gap: 16px;
        }

        /* Testimonials */
        .testimonials {
            padding: 128px 0;
            background: var(--page-bg);
            position: relative;
            overflow: hidden;
        }

        .testimonial-carousel {
            max-width: 900px;
            margin: 64px auto 0;
            position: relative;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s ease-in-out;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 64px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(26, 35, 50, 0.08);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 32px;
            right: 32px;
            width: 64px;
            height: 64px;
            opacity: 0.1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .stars {
            display: flex;
            gap: 8px;
            margin-bottom: 24px;
        }

        .star {
            width: 24px;
            height: 24px;
            fill: var(--gold);
        }

        .testimonial-text {
            font-size: 20px;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-navy);
        }

        .author-info h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 48px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .carousel-dot.active {
            width: 40px;
            border-radius: 6px;
            background: var(--gold);
        }

        /* FAQ */
        .faq {
            padding: 128px 0;
            background: var(--white);
        }

        .faq-list {
            max-width: 900px;
            margin: 64px auto 0;
        }

        .faq-item {
            margin-bottom: 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            background: var(--white);
            transition: all 0.4s ease;
        }

        .faq-item:hover {
            border-color: var(--gold-light);
        }

        .faq-question {
            width: 100%;
            padding: 24px 32px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            transition: all 0.4s ease;
        }

        .faq-item.active .faq-question {
            background: var(--page-bg);
            border-left: 4px solid var(--gold);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: transform 0.5s ease;
            stroke: var(--gold);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 32px 32px;
        }

        .faq-answer p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Contact Form */
        .contact {
            padding: 128px 0;
            background: var(--page-bg);
        }

        .contact-form {
            max-width: 800px;
            margin: 64px auto 0;
            padding: 64px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(26, 35, 50, 0.08);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 16px 20px;
            font-size: 16px;
            color: var(--text-primary);
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gold);
            color: var(--primary-navy);
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 16px;
        }

        .submit-btn:hover {
            background: var(--gold-dark);
            transform: scale(0.99);
        }

        .success-message {
            display: none;
            padding: 20px;
            background: var(--success);
            color: white;
            border-radius: 8px;
            text-align: center;
            margin-top: 24px;
            animation: slideDown 0.5s ease;
        }

        .success-message.show {
            display: block;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Footer */
        footer {
            background: var(--primary-navy);
            color: var(--white);
            padding: 96px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--gold);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #e1e4e8;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section a:hover {
            color: var(--gold);
            transform: translateX(4px);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(225, 228, 232, 0.1);
            text-align: center;
            color: #e1e4e8;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gold);
            border-radius: 50%;
            color: var(--gold);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gold);
            color: var(--primary-navy);
            transform: scale(1.1);
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 35, 50, 0.85);
            backdrop-filter: blur(4px);
            z-index: 2000;
            animation: fadeIn 0.4s ease;
        }

        .modal-overlay.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal {
            background: var(--white);
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 8px;
            padding: 48px;
            position: relative;
            animation: scaleIn 0.4s ease-out;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal-close:hover {
            background: var(--page-bg);
            color: var(--primary-navy);
            transform: rotate(90deg);
        }

        .modal h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 24px;
        }

        .modal p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .modal h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-navy);
            margin: 32px 0 16px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 24px;
            }

            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                padding: 48px;
            }

            nav.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 64px 0;
            }

            .hero h1 {
                font-size: 48px;
            }

            .section-title {
                font-size: 36px;
            }

            .about,
            .why-choose,
            .services,
            .testimonials,
            .faq,
            .contact {
                padding: 64px 0;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 32px;
            }

            .modal {
                padding: 32px;
            }
        }
    