
        :root {
            --black: #000000;
            --gold: #C9B037;
            --gold-light: #D4AF37;
            --gold-dark: #B89A2E;
            --light: #F5F5F5;
            --white: #ffffff;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-600: #6c757d;
            --gray-800: #343a40;
            --gradient-gold: linear-gradient(135deg, #C9B037 0%, #E8D5A3 50%, #C9B037 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            --shadow-gold: 0 10px 40px rgba(201, 176, 55, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            line-height: 1.7;
            color: var(--gray-800);
            overflow-x: hidden;
            background: var(--white);
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 5px;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .gradient-text {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 20px;
            background: rgba(201, 176, 55, 0.1);
            border: 1px solid rgba(201, 176, 55, 0.3);
            border-radius: 50px;
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--black);
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-subtitle {
            color: var(--gray-600);
            font-size: 1.1rem;
            max-width: 650px;
            line-height: 1.8;
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 60px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: var(--gradient-gold);
            color: var(--black);
            box-shadow: var(--shadow-gold);
        }
        
        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 50px rgba(201, 176, 55, 0.45);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }
        
        .btn-outline:hover {
            background: var(--gold);
            color: var(--black);
        }
        
        /* Glass Effect */
        .glass {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        
        .glass-light {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            padding: 20px 0;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(30px);
            box-shadow: 0 5px 40px rgba(0, 0, 0, 0.3);
        }
        
        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.7rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Space Grotesk', sans-serif;
        }
        
        .logo span {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            padding: 12px 28px !important;
            background: var(--gradient-gold) !important;
            color: var(--black) !important;
            border-radius: 50px !important;
            font-weight: 700 !important;
            box-shadow: var(--shadow-gold) !important;
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        
        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--black);
        }
        
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
        }
        
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(0,0,0,0.92) 0%, 
                rgba(0,0,0,0.75) 50%,
                rgba(201,176,55,0.15) 100%);
            z-index: 2;
        }
        
        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.5;
            animation: floatParticle 15s infinite;
        }
        
        @keyframes floatParticle {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1500px;
            margin: 0 auto;
            padding: 120px 50px 80px;
            width: 100%;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-text {
            max-width: 700px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: rgba(201, 176, 55, 0.15);
            border: 1px solid rgba(201, 176, 55, 0.4);
            border-radius: 50px;
            color: var(--gold);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }
        
        .hero-badge i {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        .hero-title {
            font-size: clamp(2.8rem, 6vw, 4.8rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }
        
        .hero-title .highlight {
            position: relative;
            display: inline-block;
        }
        
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: var(--gold);
            opacity: 0.35;
            z-index: -1;
            transform: skewX(-5deg);
        }
        
        .hero-desc {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            margin-bottom: 40px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        
        .hero-stats {
            display: flex;
            gap: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--gold);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-top: 5px;
        }
        
        .hero-visual {
            position: relative;
        }
        
        .hero-card {
            position: relative;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 25px;
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s ease;
        }
        
        .hero-card:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }
        
        .hero-card img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 16px;
        }
        
        .floating-card {
            position: absolute;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(201, 176, 55, 0.3);
            border-radius: 16px;
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            animation: floatCard 4s ease-in-out infinite;
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .floating-card.card-1 {
            bottom: 40px;
            left: -40px;
            animation-delay: 0s;
        }
        
        .floating-card.card-2 {
            top: 40px;
            right: -30px;
            animation-delay: 1s;
        }
        
        .floating-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }
        
        .floating-text h4 {
            color: var(--white);
            font-size: 1rem;
            font-weight: 700;
        }
        
        .floating-text p {
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* About Section */
        .about-section {
            padding: 140px 0;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 176, 55, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 100px;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image-main {
            width: 100%;
            height: 580px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }
        
        .about-experience {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gradient-gold);
            padding: 35px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-gold);
        }
        
        .about-experience h3 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--black);
            line-height: 1;
        }
        
        .about-experience p {
            color: var(--black);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .about-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 25px;
        }
        
        .about-text {
            color: var(--gray-600);
            font-size: 1.05rem;
            line-height: 1.95;
            margin-bottom: 30px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 35px;
        }
        
        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--white);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .about-feature:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .about-feature i {
            color: var(--gold);
            font-size: 1.1rem;
        }
        
        .about-feature span {
            font-weight: 600;
            color: var(--gray-800);
        }
        
        /* Counter Section */
        .counter-section {
            padding: 100px 0;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            inset: 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='%23C9B037' fill-opacity='0.04'%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");
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 2;
        }
        
        .counter-item {
            text-align: center;
            padding: 50px 30px;
            border-right: 1px solid rgba(201, 176, 55, 0.15);
            position: relative;
        }
        
        .counter-item:last-child {
            border-right: none;
        }
        
        .counter-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .counter-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--white);
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .counter-number span {
            color: var(--gold);
        }
        
        .counter-label {
            color: rgba(255, 255, 255, 0.65);
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* Vision Mission Section */
        .vm-section {
            padding: 140px 0;
            background: var(--white);
        }
        
        .vm-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .vm-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .vm-card {
            background: var(--light);
            border-radius: 30px;
            padding: 55px 45px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }
        
        .vm-card:hover {
            transform: translateY(-15px);
            border-color: var(--gold);
            box-shadow: 0 30px 80px rgba(201, 176, 55, 0.15);
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-gold);
        }
        
        .vm-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-gold);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            margin-bottom: 30px;
            box-shadow: var(--shadow-gold);
        }
        
        .vm-card h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--black);
        }
        
        .vm-card p {
            color: var(--gray-600);
            font-size: 1.05rem;
            line-height: 1.9;
        }
        
        /* Why Choose Us */
        .features-section {
            padding: 140px 0;
            background: var(--light);
        }
        
        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .features-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: var(--white);
            border-radius: 24px;
            padding: 45px 35px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-gold);
            transition: height 0.4s ease;
            opacity: 0.1;
        }
        
        .feature-card:hover {
            transform: translateY(-12px);
            border-color: var(--gold);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card:hover::after {
            height: 100%;
        }
        
        .feature-icon-wrap {
            width: 110px;
            height: 110px;
            background: linear-gradient(135deg, rgba(201, 176, 55, 0.12) 0%, rgba(201, 176, 55, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            margin: 0 auto 28px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover .feature-icon-wrap {
            background: var(--gradient-gold);
            transform: scale(1.1) rotateY(360deg);
        }
        
        .feature-card > *:not(.feature-icon-wrap):not(:last-child) {
            position: relative;
            z-index: 1;
        }
        
        .feature-card h4 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            color: var(--black);
        }
        
        .feature-card p {
            color: var(--gray-600);
            font-size: 0.98rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        /* Process Section */
        .process-section {
            padding: 140px 0;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }
        
        .process-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 2;
        }
        
        .process-header {
            text-align: center;
            margin-bottom: 90px;
        }
        
        .process-header .section-title,
        .process-header .section-subtitle {
            color: var(--white);
        }
        
        .process-header .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 70px;
            left: 12%;
            right: 12%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), rgba(201, 176, 55, 0.3));
        }
        
        .step-card {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 140px;
            height: 140px;
            background: var(--black);
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--gold);
            font-family: 'Space Grotesk', sans-serif;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }
        
        .step-card:hover .step-number {
            background: var(--gold);
            color: var(--black);
            transform: scale(1.1);
            box-shadow: 0 0 40px rgba(201, 176, 55, 0.5);
        }
        
        .step-card h4 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 14px;
        }
        
        .step-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* Services Section */
        .services-section {
            padding: 140px 0;
            background: var(--white);
        }
        
        .services-container {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        
        .service-card {
            background: var(--light);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            group: true;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
        }
        
        .service-image {
            height: 420px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.15);
        }
        
        .service-emoji {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 58px;
            height: 58px;
            background: var(--white);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .service-body {
            padding: 28px 24px;
        }
        
        .service-body h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--black);
        }
        
        .service-body p {
            color: var(--gray-600);
            font-size: 0.94rem;
            line-height: 1.8;
            margin-bottom: 22px;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            gap: 18px;
            color: var(--black);
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 140px 0;
            background: var(--light);
        }
        
        .pricing-container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            align-items: stretch;
        }
        
        .pricing-card {
            background: var(--white);
            border-radius: 28px;
            padding: 48px 38px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            border: 2px solid transparent;
        }
        
        .pricing-card.featured {
            border-color: var(--gold);
            transform: scale(1.06);
            box-shadow: 0 25px 70px rgba(201, 176, 55, 0.25);
        }
        
        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 22px;
            right: -32px;
            background: var(--gradient-gold);
            color: var(--black);
            padding: 8px 50px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            transform: rotate(45deg);
        }
        
        .pricing-card:hover:not(.featured) {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-icon {
            font-size: 3.5rem;
            margin-bottom: 22px;
            display: block;
        }
        
        .pricing-name {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }
        
        .pricing-price {
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--gold);
            font-family: 'Space Grotesk', sans-serif;
            margin-bottom: 8px;
        }
        
        .pricing-price span {
            font-size: 1rem;
            color: var(--gray-600);
            font-weight: 500;
        }
        
        .pricing-desc {
            color: var(--gray-600);
            font-size: 0.95rem;
            margin-bottom: 30px;
        }
        
        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 35px;
        }
        
        .pricing-features li {
            padding: 13px 0;
            border-bottom: 1px solid var(--gray-200);
            color: var(--gray-800);
            font-size: 0.96rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: var(--gold);
            font-size: 0.9rem;
            width: 20px;
        }
        
        .pricing-btn {
            width: 100%;
            padding: 17px;
            background: var(--gradient-gold);
            color: var(--black);
            border: none;
            border-radius: 60px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
        }
        
        .pricing-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }
        
        /* Booking Section */
        .booking-section {
            padding: 140px 0;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }
        
        .booking-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            opacity: 0.08;
        }
        
        .booking-container {
            max-width: 1050px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 2;
        }
        
        .booking-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .booking-header .section-title {
            color: var(--white);
        }
        
        .booking-header .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .booking-form-wrapper {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 32px;
            padding: 60px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }
        
        .form-group.full {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--gray-800);
            font-weight: 600;
            font-size: 0.93rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--gray-200);
            border-radius: 14px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(201, 176, 55, 0.12);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 19px;
            background: var(--gradient-gold);
            color: var(--black);
            border: none;
            border-radius: 60px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 8px;
        }
        
        .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 140px 0;
            background: var(--light);
        }
        
        .reviews-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .reviews-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .reviews-slider {
            overflow: hidden;
        }
        
        .review-card {
            background: var(--white);
            border-radius: 24px;
            padding: 42px 36px;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }
        
        .review-card:hover {
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }
        
        .review-stars {
            display: flex;
            gap: 6px;
            margin-bottom: 20px;
        }
        
        .review-stars i {
            color: var(--gold);
            font-size: 1.1rem;
        }
        
        .review-text {
            color: var(--gray-600);
            font-size: 1.02rem;
            line-height: 1.85;
            margin-bottom: 28px;
            font-style: italic;
            position: relative;
        }
        
        .review-text::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -10px;
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-200);
        }
        
        .review-avatar {
            width: 56px;
            height: 56px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
        }
        
        .review-info h5 {
            color: var(--black);
            font-size: 1.08rem;
            margin-bottom: 4px;
        }
        
        .review-info span {
            color: var(--gray-600);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 140px 0;
            background: var(--white);
        }
        
        .faq-container {
            max-width: 950px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .faq-item {
            background: var(--light);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .faq-item.active {
            border-color: var(--gold);
            box-shadow: 0 10px 40px rgba(201, 176, 55, 0.12);
        }
        
        .faq-question {
            padding: 26px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question h4 {
            color: var(--black);
            font-size: 1.08rem;
            font-weight: 600;
            padding-right: 20px;
        }
        
        .faq-toggle {
            width: 44px;
            height: 44px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--black);
            font-size: 1.1rem;
            transition: transform 0.4s ease;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .faq-answer-inner {
            padding: 0 30px 26px;
            color: var(--gray-600);
            line-height: 1.85;
        }
        
        .faq-item.active .faq-answer {
            max-height: 350px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: var(--gradient-gold);
            position: relative;
            overflow: hidden;
        }

           /* CTA Section */
        .cta-section1 {
            padding: 120px 0;
            background: #000000;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
            transform: rotate(-15deg);
        }
        
        .cta-container {
            max-width: 850px;
            margin: 0 auto;
            padding: 0 50px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            color: var(--black);
            margin-bottom: 20px;
            font-weight: 900;
        }
        
        .cta-text {
            font-size: 1.2rem;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 40px;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 50px;
            background: var(--black);
            color: var(--gold);
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
        }
        
        .cta-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 140px 0;
            background: var(--light);
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 50px;
        }
        
        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        
        .contact-info-item {
            background: var(--white);
            padding: 30px 28px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 22px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .contact-info-item:hover {
            border-color: var(--gold);
            transform: translateX(12px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        
        .contact-icon-box {
            width: 68px;
            height: 68px;
            background: var(--gradient-gold);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            flex-shrink: 0;
        }
        
        .contact-info-text h4 {
            color: var(--black);
            font-size: 1.08rem;
            margin-bottom: 6px;
        }
        
        .contact-info-text p,
        .contact-info-text a {
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.98rem;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        
        .contact-info-text a:hover {
            color: var(--gold);
        }
        
        .contact-form-box {
            background: var(--white);
            padding: 52px 45px;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
        }
        
        .contact-form-box h3 {
            font-size: 1.85rem;
            margin-bottom: 32px;
            color: var(--black);
        }
        
        /* Footer */
        .footer {
            background: var(--black);
            padding: 90px 0 0;
        }
        
        .footer-main {
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 50px 70px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
            gap: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-col h4 {
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 16px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.85;
            margin-bottom: 28px;
            font-size: 0.96rem;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .footer-social a:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-5px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 14px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.96rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 8px;
        }
        
        .footer-links a i {
            color: var(--gold);
            font-size: 0.75rem;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .newsletter-input {
            padding: 17px 20px;
            border: 2px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-size: 0.96rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
        
        .newsletter-input:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-btn {
            padding: 17px;
            background: var(--gradient-gold);
            color: var(--black);
            border: none;
            border-radius: 14px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }
        
        .footer-bottom {
            padding: 30px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1450px;
            margin: 0 auto;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.92rem;
        }
        
        .footer-legal {
            display: flex;
            gap: 32px;
        }
        
        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.92rem;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: var(--gold);
        }
        
        /* Responsive */
        @media (max-width: 1280px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .footer-main {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero-visual {
                display: none;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .vm-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .counter-item:nth-child(even) {
                border-right: none;
            }
            
            .counter-item:nth-child(1),
            .counter-item:nth-child(2) {
                border-bottom: 1px solid rgba(201, 176, 55, 0.15);
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 100px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                z-index: 9998;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .mobile-toggle {
                display: flex;
                z-index: 9999;
            }
            
            .hero-content {
                padding: 120px 30px 80px;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .services-grid,
            .features-grid,
            .pricing-grid,
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .booking-form-wrapper {
                padding: 35px 25px;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-item {
                border-right: none !important;
                border-bottom: 1px solid rgba(201, 176, 55, 0.15);
            }
            
            .counter-item:last-child {
                border-bottom: none;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .about-container,
            .vm-container,
            .features-container,
            .services-container,
            .pricing-container,
            .reviews-container,
            .faq-container,
            .contact-container {
                padding: 0 25px;
            }
            
            .counter-grid,
            .process-container,
            .booking-container {
                padding: 0 25px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.4rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-experience {
                right: 15px;
                bottom: -20px;
                padding: 25px 30px;
            }
            
            .about-experience h3 {
                font-size: 2.5rem;
            }
        }

        /* Animation Classes */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }
