
        /* ================================
           CSS VARIABLES & RESET
           ================================ */
        :root {
            --primary-dark: #0f172a;
            --primary-blue: #1e3a5f;
            --gold-accent: #c29d59;
            --gold-light: #d4af37;
            --text-dark: #1f2937;
            --text-gray: #64748b;
            --text-light: #94a3b8;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;
            --bg-cream: #fefefe;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--bg-white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.75rem;
            color: var(--primary-dark);
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
        }

        .section-title p {
            color: var(--text-gray);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 24px auto 0;
        }

        .gold-text {
            color: var(--gold-accent);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(194, 157, 89, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--gold-accent);
            color: var(--gold-accent);
        }

        .btn-outline:hover {
            background: var(--gold-accent);
            color: var(--primary-dark);
        }

        .btn-dark {
            background: var(--primary-dark);
            color: white;
        }

        .btn-dark:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* ================================
           HEADER
           ================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 16px 0;
            transition: var(--transition);
        }

        .header.scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-lg);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-dark);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
        }

        .logo-text span {
            color: var(--gold-accent);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 8px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-accent);
            transition: var(--transition);
        }

        .nav-link:hover {
            color: white;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: white;
            transition: var(--transition);
        }

        /* ================================
           HERO SECTION
           ================================ */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c29d59' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(194, 157, 89, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            color: white;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(194, 157, 89, 0.15);
            border: 1px solid rgba(194, 157, 89, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--gold-accent);
            margin-bottom: 24px;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold-accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .hero h1 span {
            color: var(--gold-accent);
            position: relative;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--gold-accent);
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            z-index: 1;
        }

        .hero-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .hero-card-title {
            font-size: 1.25rem;
            color: white;
            margin-bottom: 4px;
        }

        .hero-card-subtitle {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .hero-card-features {
            display: grid;
            gap: 16px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-feature-icon {
            width: 32px;
            height: 32px;
            background: rgba(194, 157, 89, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-accent);
            font-size: 0.875rem;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 16px;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element-1 {
            top: -20px;
            right: -150px;
            animation-delay: 0s;
        }

        .floating-element-2 {
            bottom: 40px;
            left: -130px;
            animation-delay: 2s;
        }

        .floating-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold-accent);
            font-weight: 600;
        }

        .floating-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ================================
           ABOUT SECTION
           ================================ */
        .about {
            background: var(--bg-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-main-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-main-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40,40 0 1,0 80,0a40,40 0 1,0 -80,0' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='0.5'/%3E%3C/svg%3E");
        }

        .about-main-image .icon {
            font-size: 6rem;
            color: var(--gold-accent);
            opacity: 0.8;
        }

        .about-experience {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            padding: 24px 32px;
            border-radius: 12px;
            text-align: center;
        }

        .about-experience-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1;
        }

        .about-experience-label {
            font-size: 0.875rem;
            color: var(--primary-dark);
            opacity: 0.8;
            margin-top: 4px;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .about-text > p {
            color: var(--text-gray);
            margin-bottom: 24px;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            gap: 20px;
            margin: 32px 0;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .about-feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(194, 157, 89, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-accent);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .about-feature-content h4 {
            font-size: 1.125rem;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }

        .about-feature-content p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* ================================
           WHY CHOOSE US
           ================================ */
        .why-choose-us {
            background: var(--bg-white);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .why-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(194, 157, 89, 0.15), rgba(194, 157, 89, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2rem;
            color: var(--gold-accent);
            transition: var(--transition);
        }

        .why-card:hover .why-icon {
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            color: var(--primary-dark);
        }

        .why-card h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .why-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* ================================
           SERVICES SECTION
           ================================ */
        .services {
            background: var(--bg-light);
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .service-tab {
            padding: 14px 28px;
            background: var(--bg-white);
            border: 2px solid transparent;
            border-radius: 50px;
            font-weight: 500;
            color: var(--text-gray);
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
        }

        .service-tab:hover {
            border-color: var(--gold-accent);
            color: var(--gold-accent);
        }

        .service-tab.active {
            background: var(--primary-dark);
            color: white;
            border-color: var(--primary-dark);
        }

        .services-content {
            display: none;
        }

        .services-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .services-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .service-card {
            background: var(--bg-white);
            padding: 32px 24px;
            border-radius: 12px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold-accent);
        }

        .service-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, rgba(194, 157, 89, 0.12), rgba(194, 157, 89, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.75rem;
            color: var(--gold-accent);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            color: var(--primary-dark);
        }

        .service-card h3 {
            font-size: 1.125rem;
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ================================
           TESTIMONIALS SECTION
           ================================ */
        .testimonials {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'30%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 40L20 60M40 40L60 60M40 40L20 20M40 40L60 20' stroke='%23ffffff' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .testimonials .section-title h2 {
            color: white;
        }

        .testimonials .section-title p {
            color: rgba(255, 255, 255, 0.7);
        }

        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 32px;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-rating span {
            color: var(--gold-accent);
            font-size: 1.25rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--primary-dark);
        }

        .testimonial-info h4 {
            font-size: 1rem;
            color: white;
            margin-bottom: 4px;
        }

        .testimonial-info p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ================================
           FAQ SECTION
           ================================ */
        .faq {
            background: var(--bg-white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--gold-accent);
        }

        .faq-question h3 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            font-weight: 500;
            font-family: 'Inter', sans-serif;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-accent);
            font-size: 1.25rem;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--gold-accent);
            color: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 0 24px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* ================================
           CONTACT SECTION
           ================================ */
        .contact {
            background: var(--bg-light);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 16px;
        }

        .contact-info > p {
            color: var(--text-gray);
            margin-bottom: 32px;
            font-size: 1.05rem;
        }

        .contact-details {
            display: grid;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(194, 157, 89, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-accent);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-size: 1rem;
            color: var(--primary-dark);
            margin-bottom: 4px;
            font-family: 'Inter', sans-serif;
        }

        .contact-item p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .contact-item a:hover {
            color: var(--gold-accent);
        }

        .contact-form-wrapper {
            background: var(--bg-white);
            padding: 48px;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
        }

        .contact-form {
            display: grid;
            gap: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            background: var(--bg-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold-accent);
            background: white;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form .btn {
            width: 100%;
            padding: 16px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 48px;
        }

        .form-success.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .form-success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.5rem;
            color: var(--primary-dark);
        }

        .form-success h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 12px;
        }

        .form-success p {
            color: var(--text-gray);
        }

        /* ================================
           FOOTER
           ================================ */
        .footer {
            background: var(--primary-dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gold-accent);
            color: var(--primary-dark);
        }

        .footer-section h4 {
            font-size: 1.125rem;
            color: white;
            margin-bottom: 24px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .footer-links {
            display: grid;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold-accent);
            padding-left: 4px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        .footer-legal a:hover {
            color: var(--gold-accent);
        }

        /* ================================
           MODALS
           ================================ */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 24px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: 16px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow: hidden;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px;
            border-bottom: 1px solid #e2e8f0;
        }

        .modal-header h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
        }

        .modal-close {
            width: 36px;
            height: 36px;
            background: var(--bg-light);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            font-size: 1.25rem;
            transition: var(--transition);
        }

        .modal-close:hover {
            background: var(--gold-accent);
            color: white;
        }

        .modal-body {
            padding: 24px;
            overflow-y: auto;
            max-height: calc(80vh - 140px);
        }

        .modal-body p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .modal-body h4 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin: 24px 0 12px;
            font-family: 'Inter', sans-serif;
        }

        .modal-body ul {
            list-style: disc;
            padding-left: 20px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        /* Newsletter Modal */
        .newsletter-modal .modal {
            max-width: 500px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .newsletter-form .form-group {
            margin-bottom: 0;
        }

        .newsletter-form input {
            width: 100%;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
        }

        .checkbox-group input {
            width: auto;
            margin-top: 4px;
        }

        .checkbox-group label {
            font-size: 0.9rem;
            color: var(--text-gray);
            cursor: pointer;
        }

        .newsletter-success {
            display: none;
            text-align: center;
            padding: 24px;
        }

        .newsletter-success.show {
            display: block;
        }

        /* ================================
           RESPONSIVE DESIGN
           ================================ */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                order: 1;
            }

            .hero-visual {
                order: 0;
                margin-bottom: 40px;
            }

            .hero h1 {
                font-size: 2.75rem;
            }

            .hero p {
                margin: 0 auto 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-image {
                order: 0;
            }

            .about-text {
                order: 1;
            }

            .testimonials-slider {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 30px;
                gap: 24px;
                transform: translateY(-150%);
                transition: var(--transition);
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .mobile-toggle {
                display: flex;
            }

            .header-actions .btn {
                display: none;
            }

            .section-padding {
                padding: 70px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .hero {
                padding-top: 100px;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .hero-stat {
                text-align: center;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper {
                padding: 32px 24px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .services-grid,
            .services-grid-3 {
                grid-template-columns: 1fr;
            }

            .services-tabs {
                flex-direction: column;
                align-items: stretch;
            }

            .service-tab {
                text-align: center;
            }

            .hero-card {
                padding: 24px;
            }

            .about-experience {
                bottom: -20px;
                right: -20px;
                padding: 16px 24px;
            }

            .about-experience-number {
                font-size: 2rem;
            }

            .footer-legal {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }
    