
        :root {
            --color-primary: #292524;
            --color-secondary: #A8A29E;
            --color-light: #FAFAF9;
            --color-white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #292524 0%, #44403c 100%);
            --gradient-accent: linear-gradient(135deg, #A8A29E 0%, #d6d3d1 100%);
            --shadow-sm: 0 2px 4px rgba(41, 37, 36, 0.05);
            --shadow-md: 0 4px 12px rgba(41, 37, 36, 0.08);
            --shadow-lg: 0 10px 30px rgba(41, 37, 36, 0.12);
            --shadow-xl: 0 20px 50px rgba(41, 37, 36, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--color-primary);
            background-color: var(--color-light);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

        p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: #57534e;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--color-white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-3px);
        }

        .btn-light {
            background: var(--color-white);
            color: var(--color-primary);
            box-shadow: var(--shadow-md);
        }

        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Navigation */
        .navbar {
            background: rgba(250, 250, 249, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.2rem 0;
            transition: var(--transition);
            z-index: 1000;
            border-bottom: 1px solid rgba(168, 162, 158, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            color: var(--color-primary);
            font-weight: 800;
            font-size: 1.5rem;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            box-shadow: var(--shadow-sm);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--color-primary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 50px !important;
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--color-primary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5 0%, #0be1c1 100%);
            padding: 120px 0 80px;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            opacity: 0.05;
            background-image: 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='%23292524' fill-opacity='1'%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");
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInLeft 1s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(168, 162, 158, 0.15);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }

        .hero-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #78716c;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(168, 162, 158, 0.2);
        }

        .stat-item h4 {
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 0.3rem;
        }

        .stat-item p {
            font-size: 0.9rem;
            color: var(--color-secondary);
            margin: 0;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

        .hero-img-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .hero-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            animation: float 3s ease-in-out infinite;
        }

        .floating-card.card-1 {
            bottom: 15%;
            left: -40px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            top: 15%;
            right: -30px;
            animation-delay: 1s;
        }

        .floating-card i {
            font-size: 1.8rem;
            color: var(--color-primary);
            margin-right: 0.8rem;
        }

        .floating-card span {
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--color-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-img-main {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-img-main img {
            width: 100%;
            height: auto;
            display: block;
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gradient-primary);
            color: white;
            padding: 25px 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .experience-badge h3 {
            font-size: 2.5rem;
            margin: 0;
            color: white;
        }

        .experience-badge p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .section-label {
            display: inline-block;
            color: var(--color-secondary);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .section-title {
            margin-bottom: 1.5rem;
            color: var(--color-primary);
        }

        .about-text p {
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .about-feature-item i {
            color: var(--color-primary);
            font-size: 1.1rem;
        }

        .about-feature-item span {
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Counter Section */
        .counter-section {
            padding: 80px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .counter-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 28c-5.523 0-10 4.477-10 10s4.477 10 10 10 10-4.477 10-10-4.477-10-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .counter-item {
            text-align: center;
            color: white;
        }

        .counter-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            display: block;
        }

        .counter-label {
            font-size: 1rem;
            opacity: 0.85;
            font-weight: 500;
        }

        /* Vision Mission */
        .vision-mission {
            padding: 100px 0;
            background: var(--color-light);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .vm-card {
            background: var(--color-white);
            padding: 3.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .vm-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(41, 37, 36, 0.1) 0%, rgba(168, 162, 158, 0.1) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        .vm-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .vm-card p {
            line-height: 1.9;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: var(--color-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: var(--color-light);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--color-secondary);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 85px;
            height: 85px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: white;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--color-primary);
        }

        .feature-card p {
            font-size: 0.98rem;
            line-height: 1.8;
            color: #78716c;
        }

        /* Work Process */
        .work-process {
            padding: 100px 0;
            background: var(--color-light);
            position: relative;
            overflow: hidden;
        }

        .process-timeline {
            position: relative;
            margin-top: 4rem;
        }

        .process-line {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
            transform: translateY(-50%);
            z-index: 1;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 90px;
            height: 90px;
            background: var(--color-white);
            border: 4px solid var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            margin: 0 auto 1.5rem;
            transition: var(--transition);
            position: relative;
        }

        .step-number::before {
            content: '';
            position: absolute;
            inset: -8px;
            border: 2px dashed var(--color-secondary);
            border-radius: 50%;
            animation: spin 20s linear infinite;
        }

        .process-step:hover .step-number {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.1);
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .process-step h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .process-step p {
            font-size: 0.95rem;
            color: #78716c;
        }

        /* Service Plans */
        .service-plans {
            padding: 100px 0;
            background: var(--color-white);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .plan-card {
            background: var(--color-light);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            border: 2px solid transparent;
            overflow: hidden;
        }

        .plan-card.featured {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.05);
            border: none;
        }

        .plan-card.featured p,
        .plan-card.featured li {
            color: rgba(255, 255, 255, 0.9);
        }

        .plan-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--color-white);
            color: var(--color-primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            background: rgba(41, 37, 36, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--color-primary);
            margin: 0 auto 1.5rem;
        }

        .plan-card.featured .plan-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .plan-card h3 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 800;
            margin: 1.5rem 0;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.7;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(168, 162, 158, 0.2);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .plan-features li i {
            color: var(--color-primary);
        }

        .plan-card.featured .plan-features li i {
            color: #a8a29e;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--color-secondary);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--color-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: var(--color-white);
            border-radius: 20px;
            padding: 2.5rem;
            display: flex;
            gap: 1.8rem;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-secondary);
        }

        .service-icon {
            width: 75px;
            height: 75px;
            min-width: 75px;
            background: linear-gradient(135deg, rgba(41, 37, 36, 0.08) 0%, rgba(168, 162, 158, 0.15) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--color-primary);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--gradient-primary);
            color: white;
        }

        .service-content h4 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-primary);
        }

        .service-content p {
            font-size: 0.98rem;
            line-height: 1.8;
            margin-bottom: 1.2rem;
            color: #78716c;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .read-more:hover {
            gap: 0.8rem;
        }

        /* Booking Form */
        .booking-form-section {
            padding: 100px 0;
            background: var(--color-white);
        }

        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .booking-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .booking-info p {
            margin-bottom: 2rem;
        }

        .booking-features-list {
            list-style: none;
        }

        .booking-features-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(168, 162, 158, 0.15);
        }

        .booking-features-list li i {
            width: 40px;
            height: 40px;
            background: var(--color-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }

        .form-container {
            background: var(--color-light);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--color-primary);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid rgba(168, 162, 158, 0.3);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 4px rgba(41, 37, 36, 0.1);
        }

        select.form-control {
            cursor: pointer;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        /* Reviews Section */
        .reviews {
            padding: 100px 0;
            background: var(--color-light);
        }

        .reviews-slider {
            margin-top: 4rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .review-card {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 5rem;
            color: rgba(168, 162, 158, 0.15);
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .review-stars {
            color: #f59e0b;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #57534e;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h5 {
            font-size: 1.05rem;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.88rem;
            color: var(--color-secondary);
            margin: 0;
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--color-white);
        }

        .faq-container {
            max-width: 850px;
            margin: 4rem auto 0;
        }

        .faq-item {
            background: var(--color-light);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .faq-item.active {
            border-color: var(--color-secondary);
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: #44403c;
        }

        .faq-question i {
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem;
            color: #78716c;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .cta-bg-shape {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
        }

        .cta-bg-shape.shape-1 {
            top: -200px;
            right: -100px;
        }

        .cta-bg-shape.shape-2 {
            bottom: -150px;
            left: -100px;
            width: 300px;
            height: 300px;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            color: white;
        }

        .cta-content h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            color: white;
            margin-bottom: 1.2rem;
        }

        .cta-content p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 650px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-content .btn-light {
            background: white;
            color: var(--color-primary);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            background: var(--color-white);
            padding: 2rem;
            border-radius: 16px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }

        .contact-card-icon {
            width: 55px;
            height: 55px;
            min-width: 55px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

        .contact-card h4 {
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }

        .contact-card p,
        .contact-card a {
            color: #78716c;
            text-decoration: none;
            font-size: 0.98rem;
            margin: 0;
            transition: var(--transition);
        }

        .contact-card a:hover {
            color: var(--color-primary);
        }

        .contact-form-wrapper {
            background: var(--color-white);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
        }

        .contact-form-wrapper h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background: var(--color-primary);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--color-secondary);
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.98rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--color-secondary);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.95rem;
            font-family: inherit;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--color-secondary);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form button {
            padding: 14px 24px;
            background: var(--color-secondary);
            color: var(--color-primary);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
        }

        .newsletter-form button:hover {
            background: white;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.92rem;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.92rem;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: white;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .floating-card {
                display: none;
            }

            .about-grid,
            .vm-grid,
            .booking-container,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .plans-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }

            .plan-card.featured {
                transform: scale(1);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .reviews-slider {
                grid-template-columns: 1fr;
                max-width: 550px;
                margin-left: auto;
                margin-right: auto;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-line {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 1.5rem;
                box-shadow: var(--shadow-xl);
                transition: var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: block;
                z-index: 1001;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .counter-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow-md);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
