
        :root {
            --aubergine-primary: #4A0E4E;
            --aubergine-dark: #350A38;
            --aubergine-light: #6B1D70;
            --aubergine-accent: #8B2B91;
            --grey-dark: #2C2C2C;
            --grey-medium: #5A5A5A;
            --grey-light: #8C8C8C;
            --grey-lighter: #E5E5E5;
            --grey-bg: #F7F7F7;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, var(--aubergine-primary) 0%, var(--aubergine-light) 100%);
            --shadow-sm: 0 2px 10px rgba(74, 14, 78, 0.08);
            --shadow-md: 0 10px 30px rgba(74, 14, 78, 0.12);
            --shadow-lg: 0 20px 50px rgba(74, 14, 78, 0.18);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--grey-dark);
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--gradient-primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.3px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--aubergine-light) 0%, var(--aubergine-accent) 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            left: 0;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(74, 14, 78, 0.35);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 34px;
            background: transparent;
            color: var(--aubergine-primary);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid var(--aubergine-primary);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--aubergine-primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(74, 14, 78, 0.25);
        }
        
        /* Navbar */
        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 28px 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            position: fixed;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 16px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }
        
        .logo:hover {
            opacity: 0.85;
        }
        
        .logo-icon {
            width: 52px;
            height: 52px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 8px 25px rgba(74, 14, 78, 0.3);
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.5px;
        }
        
        .navbar.scrolled .logo-text {
            color: var(--aubergine-primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 38px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 6px 0;
        }
        
        .navbar.scrolled .nav-links a {
            color: var(--grey-dark);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--aubergine-primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--aubergine-accent);
        }
        
        .nav-cta {
            background: var(--gradient-primary) !important;
            color: var(--white) !important;
            padding: 13px 28px !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
        }
        
        .nav-cta::after {
            display: none !important;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(74, 14, 78, 0.35);
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .navbar.scrolled .mobile-toggle span {
            background: var(--grey-dark);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(42, 10, 44, 0.95) 0%, rgba(74, 14, 78, 0.9) 50%, rgba(107, 29, 112, 0.88) 100%),
                        url('https://images.pexels.com/photos/7693142/pexels-photo-7693142.jpeg') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></svg>') repeat;
            background-size: 30px 30px;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at 80% 50%, rgba(139, 43, 145, 0.2) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 12px 24px;
            border-radius: 50px;
            color: var(--white);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-badge i {
            color: #D4AF37;
        }
        
        .hero h1 {
            font-size: clamp(40px, 5.5vw, 68px);
            color: var(--white);
            margin-bottom: 26px;
            animation: fadeInUp 0.8s ease 0.2s both;
            letter-spacing: -1px;
        }
        
        .hero h1 span {
            color: #D4AF37;
            position: relative;
        }
        
        .hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease 0.4s both;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        
        .hero-buttons .btn-secondary {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.5);
            color: var(--white);
        }
        
        .hero-buttons .btn-secondary:hover {
            background: var(--white);
            color: var(--aubergine-primary);
            border-color: var(--white);
        }
        
        .hero-stats {
            display: flex;
            gap: 55px;
            margin-top: 65px;
            padding-top: 45px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            animation: fadeInUp 0.8s ease 0.8s both;
        }
        
        .hero-stat h3 {
            font-size: 38px;
            color: #D4AF37;
            font-weight: 800;
            font-family: 'Inter', sans-serif;
        }
        
        .hero-stat p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        
        /* Section Styles */
        section {
            padding: 110px 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 65px;
        }
        
        .section-tag {
            display: inline-block;
            background: rgba(74, 14, 78, 0.06);
            color: var(--aubergine-primary);
            padding: 8px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 18px;
            border: 1px solid rgba(74, 14, 78, 0.12);
        }
        
        .section-header h2 {
            font-size: clamp(32px, 4vw, 46px);
            margin-bottom: 22px;
            color: var(--grey-dark);
            letter-spacing: -0.5px;
        }
        
        .section-header p {
            font-size: 17px;
            color: var(--grey-medium);
            line-height: 1.75;
        }
        
        /* About Section */
        .about-section {
            background: var(--white);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 2;
        }
        
        .about-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-experience-badge {
            position: absolute;
            bottom: -22px;
            right: -22px;
            background: var(--gradient-primary);
            color: white;
            padding: 28px 36px;
            border-radius: 16px;
            text-align: center;
            z-index: 3;
            box-shadow: 0 20px 45px rgba(74, 14, 78, 0.35);
        }
        
        .about-experience-badge h3 {
            font-size: 44px;
            font-weight: 900;
            line-height: 1;
            font-family: 'Inter', sans-serif;
        }
        
        .about-experience-badge p {
            font-size: 14px;
            opacity: 0.95;
            margin-top: 6px;
        }
        
        .about-content h2 {
            font-size: 38px;
            margin-bottom: 26px;
            color: var(--grey-dark);
            letter-spacing: -0.5px;
        }
        
        .about-content h2 span {
            color: var(--aubergine-primary);
        }
        
        .about-content > p {
            color: var(--grey-medium);
            font-size: 16px;
            margin-bottom: 18px;
            line-height: 1.9;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin: 32px 0;
        }
        
        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .about-feature-item i {
            width: 40px;
            height: 40px;
            background: rgba(74, 14, 78, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--aubergine-primary);
            font-size: 15px;
        }
        
        .about-feature-item span {
            font-weight: 500;
            font-size: 15px;
            color: var(--grey-dark);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--grey-bg);
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
        }
        
        .counter-card {
            text-align: center;
            padding: 45px 30px;
            background: var(--white);
            border-radius: 16px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--grey-lighter);
        }
        
        .counter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .counter-card:hover::before {
            transform: scaleX(1);
        }
        
        .counter-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .counter-icon {
            width: 72px;
            height: 72px;
            background: rgba(74, 14, 78, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-size: 28px;
            color: var(--aubergine-primary);
            transition: all 0.3s ease;
        }
        
        .counter-card:hover .counter-icon {
            background: var(--gradient-primary);
            color: white;
        }
        
        .counter-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--grey-dark);
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
        }
        
        .counter-label {
            font-size: 15px;
            color: var(--grey-medium);
            font-weight: 500;
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            background: var(--white);
        }
        
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .vm-card {
            background: var(--grey-bg);
            padding: 50px 42px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .vm-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }
        
        .vm-card.vision {
            border-color: rgba(74, 14, 78, 0.15);
        }
        
        .vm-card.mission {
            border-color: rgba(140, 140, 140, 0.25);
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
        }
        
        .vm-card.vision::before {
            background: var(--gradient-primary);
        }
        
        .vm-card.mission::before {
            background: linear-gradient(90deg, var(--grey-dark), var(--grey-medium));
        }
        
        .vm-icon {
            width: 78px;
            height: 78px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            margin-bottom: 26px;
        }
        
        .vm-card.vision .vm-icon {
            background: rgba(74, 14, 78, 0.1);
            color: var(--aubergine-primary);
        }
        
        .vm-card.mission .vm-icon {
            background: rgba(92, 92, 92, 0.1);
            color: var(--grey-dark);
        }
        
        .vm-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--grey-dark);
        }
        
        .vm-card p {
            color: var(--grey-medium);
            font-size: 16px;
            line-height: 1.9;
        }
        
        /* Why Choose Us */
        .why-us-section {
            background: var(--grey-bg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 42px 32px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--grey-lighter);
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-primary);
            transition: height 0.4s ease;
            z-index: 0;
        }
        
        .feature-card:hover::after {
            height: 100%;
        }
        
        .feature-card > * {
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-card:hover .feature-icon,
        .feature-card:hover h4,
        .feature-card:hover p {
            color: var(--white);
        }
        
        .feature-icon {
            width: 76px;
            height: 76px;
            background: rgba(74, 14, 78, 0.07);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 30px;
            color: var(--aubergine-primary);
            transition: all 0.4s ease;
        }
        
        .feature-card h4 {
            font-size: 21px;
            margin-bottom: 16px;
            color: var(--grey-dark);
            transition: color 0.4s ease;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .feature-card p {
            color: var(--grey-medium);
            font-size: 15px;
            line-height: 1.75;
            transition: color 0.4s ease;
        }
        
        /* Work Process Section */
        .process-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(74, 14, 78, 0.02) 0%, transparent 100%);
        }
        
        .process-timeline {
            position: relative;
            padding: 50px 0;
        }
        
        .process-line {
            position: absolute;
            top: 50%;
            left: 8%;
            right: 8%;
            height: 3px;
            background: linear-gradient(90deg, var(--aubergine-primary) 0%, var(--grey-lighter) 100%);
            transform: translateY(-50%);
            border-radius: 2px;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 94px;
            height: 94px;
            background: var(--white);
            border: 3px solid var(--aubergine-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 26px;
            font-size: 32px;
            font-weight: 800;
            color: var(--aubergine-primary);
            position: relative;
            transition: all 0.4s ease;
            font-family: 'Inter', sans-serif;
            animation: pulse-step 2.5s infinite;
        }
        
        @keyframes pulse-step {
            0%, 100% { box-shadow: 0 0 0 0 rgba(74, 14, 78, 0.25); }
            50% { box-shadow: 0 0 0 18px rgba(74, 14, 78, 0); }
        }
        
        .step-icon {
            position: absolute;
            top: -12px;
            right: -8px;
            width: 44px;
            height: 44px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: white;
            box-shadow: 0 6px 20px rgba(74, 14, 78, 0.3);
        }
        
        .process-step h4 {
            font-size: 19px;
            color: var(--grey-dark);
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .process-step p {
            color: var(--grey-medium);
            font-size: 14px;
            line-height: 1.75;
        }
        
        /* Services Section */
        .services-section {
            background: var(--grey-bg);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--grey-lighter);
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(74, 14, 78, 0.2);
        }
        
        .service-icon-wrapper {
            padding: 45px 40px 30px;
            text-align: center;
        }
        
        .service-icon-large {
            width: 90px;
            height: 90px;
            background: rgba(74, 14, 78, 0.06);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 40px;
            color: var(--aubergine-primary);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon-large {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 0 40px 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        
        .service-tag {
            display: inline-block;
            background: rgba(74, 14, 78, 0.08);
            color: var(--aubergine-primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
            align-self: flex-start;
        }
        
        .service-content h3 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--grey-dark);
            font-family: 'Inter', sans-serif;
        }
        
        .service-content p {
            color: var(--grey-medium);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 26px;
            flex-grow: 1;
        }
        
        .service-link {
            text-align: center;
            align-items: center;
            gap: 10px;
            color: var(--aubergine-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            gap: 16px;
            color: var(--aubergine-dark);
        }
        
        /* Booking Form Section */
        .booking-section {
            background: var(--white);
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .booking-info h2 {
            font-size: 40px;
            margin-bottom: 24px;
            color: var(--grey-dark);
            letter-spacing: -0.5px;
        }
        
        .booking-info h2 span {
            color: var(--aubergine-primary);
        }
        
        .booking-info > p {
            color: var(--grey-medium);
            font-size: 16px;
            margin-bottom: 36px;
            line-height: 1.8;
        }
        
        .booking-features-list {
            list-style: none;
        }
        
        .booking-features-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
            color: var(--grey-medium);
            font-size: 15px;
        }
        
        .booking-features-list li i {
            width: 26px;
            height: 26px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 11px;
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        .booking-form-wrapper {
            background: var(--grey-bg);
            padding: 48px 42px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--grey-lighter);
        }
        
        .booking-form-wrapper h3 {
            font-size: 26px;
            margin-bottom: 10px;
            color: var(--grey-dark);
            font-family: 'Inter', sans-serif;
        }
        
        .booking-form-wrapper > p {
            color: var(--grey-medium);
            margin-bottom: 28px;
            font-size: 15px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: var(--grey-dark);
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid var(--grey-lighter);
            border-radius: 10px;
            font-family: inherit;
            font-size: 15px;
            transition: all 0.3s ease;
            background: var(--white);
            color: var(--grey-dark);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--aubergine-primary);
            box-shadow: 0 0 0 4px rgba(74, 14, 78, 0.08);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* Pricing Plans Section */
        .pricing-section {
            background: linear-gradient(160deg, var(--aubergine-dark) 0%, var(--aubergine-primary) 50%, var(--aubergine-light) 100%);
            position: relative;
        }
        
        .pricing-section .section-header h2,
        .pricing-section .section-header p {
            color: var(--white);
        }
        
        .pricing-section .section-tag {
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.25);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .pricing-card {
            background: rgba(255, 255, 255, 0.96);
            border-radius: 20px;
            padding: 45px 36px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured {
            background: var(--white);
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }
        
        .pricing-card:hover {
            transform: translateY(-12px);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-12px);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -32px;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 48px;
            font-size: 12px;
            font-weight: 700;
            transform: rotate(45deg);
            letter-spacing: 0.5px;
        }
        
        .plan-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--grey-dark);
            margin-bottom: 18px;
            font-family: 'Inter', sans-serif;
        }
        
        .plan-price {
            margin-bottom: 26px;
            padding-bottom: 26px;
            border-bottom: 2px solid var(--grey-lighter);
        }
        
        .plan-price .currency {
            font-size: 26px;
            color: var(--aubergine-primary);
            vertical-align: super;
            font-weight: 700;
        }
        
        .plan-price .amount {
            font-size: 56px;
            font-weight: 900;
            color: var(--grey-dark);
            font-family: 'Inter', sans-serif;
            letter-spacing: -2px;
        }
        
        .plan-price .period {
            font-size: 16px;
            color: var(--grey-medium);
        }
        
        .plan-description {
            color: var(--grey-medium);
            font-size: 14px;
            margin-bottom: 28px;
        }
        
        .plan-features {
            list-style: none;
            text-align: left;
            margin-bottom: 34px;
        }
        
        .plan-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 0;
            color: var(--grey-dark);
            font-size: 15px;
            border-bottom: 1px solid var(--grey-lighter);
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li i {
            color: var(--aubergine-primary);
            font-size: 14px;
            width: 20px;
        }
        
        .pricing-card .btn-primary {
            width: 100%;
            justify-content: center;
        }
        
        /* Reviews Section */
        .reviews-section {
            background: var(--grey-bg);
        }
        
        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .review-card {
            background: var(--white);
            padding: 38px 32px;
            border-radius: 18px;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid var(--grey-lighter);
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(74, 14, 78, 0.2);
        }
        
        .review-quote {
            font-size: 52px;
            color: var(--aubergine-primary);
            opacity: 0.12;
            position: absolute;
            top: 22px;
            left: 28px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }
        
        .review-stars i {
            color: #D4AF37;
            font-size: 17px;
        }
        
        .review-text {
            color: var(--grey-medium);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 26px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .review-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--aubergine-primary);
        }
        
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 17px;
            color: var(--grey-dark);
            margin-bottom: 4px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .review-info span {
            font-size: 13px;
            color: var(--grey-light);
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--white);
        }
        
        .faq-container {
            max-width: 860px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--grey-bg);
            border-radius: 14px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .faq-item.active {
            border-color: var(--aubergine-primary);
            box-shadow: 0 8px 30px rgba(74, 14, 78, 0.12);
        }
        
        .faq-question {
            padding: 24px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question h4 {
            font-size: 17px;
            color: var(--grey-dark);
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }
        
        .faq-question i {
            color: var(--aubergine-primary);
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .faq-answer-content {
            padding: 0 30px 26px;
            color: var(--grey-medium);
            font-size: 15px;
            line-height: 1.85;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--aubergine-dark) 0%, var(--aubergine-primary) 60%, var(--aubergine-light) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="%23ffffff" opacity="0.04"/></svg>') repeat;
            background-size: 40px 40px;
        }
        
        .cta-glow {
            position: absolute;
            top: -40%;
            right: -15%;
            width: 55%;
            height: 180%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 720px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: clamp(32px, 4vw, 46px);
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        
        .cta-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 38px;
            line-height: 1.75;
        }
        
        .cta-content .btn-primary {
            background: var(--white);
            color: var(--aubergine-primary);
            font-weight: 700;
            padding: 18px 42px;
        }
        
        .cta-content .btn-primary::before {
            background: #D4AF37;
        }
        
        .cta-content .btn-primary:hover {
            color: var(--white);
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--grey-bg);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }
        
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }
        
        .contact-info-card {
            background: var(--white);
            padding: 28px 30px;
            border-radius: 16px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .contact-info-card:hover {
            border-color: var(--aubergine-primary);
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }
        
        .contact-icon-box {
            width: 58px;
            height: 58px;
            background: var(--gradient-primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            flex-shrink: 0;
        }
        
        .contact-info-card h4 {
            font-size: 17px;
            color: var(--grey-dark);
            margin-bottom: 6px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }
        
        .contact-info-card p,
        .contact-info-card a {
            color: var(--grey-medium);
            font-size: 15px;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            line-height: 1.6;
        }
        
        .contact-info-card a:hover {
            color: var(--aubergine-primary);
        }
        
        .contact-form-wrapper {
            background: var(--white);
            padding: 45px 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--grey-lighter);
        }
        
        .contact-form-wrapper h3 {
            font-size: 28px;
            margin-bottom: 8px;
            color: var(--grey-dark);
            font-family: 'Inter', sans-serif;
        }
        
        .contact-form-wrapper > p {
            color: var(--grey-medium);
            margin-bottom: 28px;
            font-size: 15px;
        }
        
        /* Footer */
        .footer {
            background: var(--grey-dark);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            color: var(--white);
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 14px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 45px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--gradient-primary);
            transform: translateY(-4px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: #D4AF37;
            padding-left: 6px;
        }
        
        .footer-links a i {
            font-size: 10px;
            color: var(--aubergine-accent);
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .newsletter-form input {
            padding: 16px 20px;
            border: 2px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-family: inherit;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--aubergine-accent);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .newsletter-form button {
            padding: 16px 28px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 10px;
            color: white;
            font-family: inherit;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(74, 14, 78, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 26px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 26px;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #D4AF37;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 54px;
            height: 54px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            border: none;
            box-shadow: 0 10px 30px rgba(74, 14, 78, 0.35);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 40px 40px;
                gap: 24px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                color: var(--grey-dark) !important;
                font-size: 17px;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .about-grid,
            .vm-grid,
            .booking-container,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            
            .about-image {
                order: -1;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-line {
                display: none;
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }
            
            .reviews-slider {
                grid-template-columns: 1fr;
                max-width: 550px;
                margin: 0 auto;
            }
            
            .hero-stats {
                gap: 35px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 38px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 22px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }
