 
        :root {
            --color-primary: #B5179E;
            --color-secondary: #560BAD;
            --color-tertiary: #480CA8;
            --color-accent: #4895EF;
            --color-light: #f8f9ff;
            --color-dark: #1a1a2e;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--color-dark);
            overflow-x: hidden;
            background-color: #ffffff;
            line-height: 1.6;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--color-light);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
            border-radius: 5px;
        }
        
        /* Navigation */
        .navbar {
            background: transparent !important;
            transition: all 0.4s ease;
            padding: 1.5rem 0;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(86, 11, 173, 0.15);
            padding: 0.8rem 0;
            border-bottom: 2px solid var(--color-primary);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--color-secondary) !important;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            letter-spacing: -0.5px;
        }
        
        .navbar-brand i {
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.2rem;
        }
        
        .nav-link {
            color: var(--color-dark) !important;
            font-weight: 500;
            margin: 0 0.6rem;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .nav-link:hover {
            color: var(--color-primary) !important;
        }
        
        .btn-custom {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(181, 23, 158, 0.35);
            position: relative;
            overflow: hidden;
        }
        
        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-custom:hover::before {
            left: 100%;
        }
        
        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(181, 23, 158, 0.5);
            color: white;
        }
        
        .btn-outline-custom {
            border: 2.5px solid var(--color-primary);
            color: var(--color-primary);
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .btn-outline-custom:hover {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(181, 23, 158, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(245, 247, 255, 0.9) 0%, rgba(232, 240, 255, 0.95) 100%);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(72, 149, 239, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 25s infinite ease-in-out;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(181, 23, 158, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 20s infinite ease-in-out reverse;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 650px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(181, 23, 158, 0.15), rgba(72, 149, 239, 0.15));
            color: var(--color-secondary);
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.8rem;
            border: 1px solid rgba(181, 23, 158, 0.3);
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--color-secondary);
            line-height: 1.05;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        
        .hero-title span {
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: #4a5568;
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.7;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }
        
        .hero-stats {
            display: flex;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(86, 11, 173, 0.15);
        }
        
        .stat-item h4 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-secondary);
            margin-bottom: 0.3rem;
        }
        
        .stat-item p {
            color: #64748b;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image-container {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(86, 11, 173, 0.25);
            transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
            transition: transform 0.6s ease;
        }
        
        .hero-image-container:hover {
            transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
        }
        
        .hero-image-container img {
            width: 100%;
            display: block;
            transition: transform 0.6s ease;
        }
        
        .hero-image-container:hover img {
            transform: scale(1.03);
        }
        
        .floating-card {
            position: absolute;
            background: white;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            animation: float 6s ease-in-out infinite;
            z-index: 4;
        }
        
        .floating-card.card-1 {
            top: 15%;
            right: -30px;
            animation-delay: 0s;
        }
        
        .floating-card.card-2 {
            bottom: 20%;
            left: -40px;
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .floating-card i {
            font-size: 1.5rem;
            color: var(--color-accent);
        }
        
        .floating-card span {
            font-weight: 600;
            color: var(--color-dark);
            font-size: 0.95rem;
        }
        
        /* Section Styling */
        section {
            padding: 7rem 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4.5rem;
        }
        
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(181, 23, 158, 0.12), rgba(72, 149, 239, 0.12));
            color: var(--color-primary);
            padding: 0.5rem 1.3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(181, 23, 158, 0.25);
        }
        
        .section-title {
            font-size: 2.9rem;
            font-weight: 800;
            color: var(--color-secondary);
            margin-bottom: 1rem;
            line-height: 1.15;
        }
        
        .section-subtitle {
            color: #64748b;
            font-size: 1.15rem;
            line-height: 1.7;
        }
        
        /* About Section */
        .about-section {
            background: white;
        }
        
        .about-image-wrapper {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(86, 11, 173, 0.18);
        }
        
        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(181, 23, 158, 0.1), rgba(72, 149, 239, 0.1));
            z-index: 1;
        }
        
        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .about-image-wrapper:hover img {
            transform: scale(1.08);
        }
        
        .about-content {
            padding: 1rem 0 1rem 2rem;
        }
        
        .about-content .lead {
            color: var(--color-primary);
            font-weight: 600;
            font-size: 1.15rem;
            margin-bottom: 1.8rem;
        }
        
        .about-content p {
            color: #475569;
            line-height: 1.85;
            margin-bottom: 1.2rem;
            font-size: 1rem;
        }
        
        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-weight: 500;
            color: var(--color-dark);
        }
        
        .highlight-item i {
            color: var(--color-accent);
            font-size: 1.2rem;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
            color: white;
            padding: 5.5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(72, 149, 239, 0.25) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .counter-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(181, 23, 158, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .counter-item {
            text-align: center;
            padding: 2rem 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .counter-number {
            font-size: 3.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.4rem;
            line-height: 1;
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.92);
            font-weight: 400;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            background: var(--color-light);
        }
        
        .vm-card {
            background: white;
            padding: 3.2rem;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(86, 11, 173, 0.12);
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
        }
        
        .vm-card:hover {
            transform: translateY(-12px);
            border-color: rgba(181, 23, 158, 0.3);
            box-shadow: 0 30px 70px rgba(86, 11, 173, 0.2);
        }
        
        .vm-icon {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, rgba(181, 23, 158, 0.15), rgba(72, 149, 239, 0.15));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            font-size: 2.3rem;
            color: var(--color-primary);
            border: 2px solid rgba(181, 23, 158, 0.25);
        }
        
        .vm-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 1.3rem;
        }
        
        .vm-card p {
            color: #475569;
            line-height: 1.8;
            font-size: 1.02rem;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            background: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }
        
        .feature-card {
            padding: 2.2rem;
            border-radius: 20px;
            transition: all 0.35s ease;
            background: var(--color-light);
            border: 2px solid transparent;
        }
        
        .feature-card:hover {
            background: white;
            border-color: rgba(181, 23, 158, 0.3);
            transform: translateY(-6px);
            box-shadow: 0 20px 45px rgba(86, 11, 173, 0.15);
        }
        
        .feature-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.4rem;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 10px 25px rgba(181, 23, 158, 0.35);
        }
        
        .feature-title {
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 0.9rem;
            font-size: 1.25rem;
        }
        
        .feature-desc {
            color: #64748b;
            font-size: 0.98rem;
            line-height: 1.7;
        }
        
        /* Creative Work Process */
        .process-section {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 30%, rgba(72, 149, 239, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 85% 70%, rgba(181, 23, 158, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        
        .process-step-wrapper {
            margin-bottom: 3.5rem;
            position: relative;
        }
        
        .process-step-card {
            background: white;
            border-radius: 28px;
            padding: 2.8rem;
            box-shadow: 0 25px 65px rgba(86, 11, 173, 0.12);
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2.5rem;
            align-items: center;
            position: relative;
            transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
        }
        
        .process-step-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 35px 85px rgba(86, 11, 173, 0.22);
            border-color: rgba(181, 23, 158, 0.35);
        }
        
        .step-number-badge {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 110px;
        }
        
        .step-number {
            font-size: 4.5rem;
            font-weight: 900;
            color: rgba(181, 23, 158, 0.12);
            line-height: 1;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
            font-family: 'Poppins', sans-serif;
        }
        
        .step-icon-wrapper {
            width: 105px;
            height: 105px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 40px rgba(181, 23, 158, 0.4);
            transition: all 0.4s ease;
        }
        
        .process-step-card:hover .step-icon-wrapper {
            transform: rotate(360deg) scale(1.08);
            box-shadow: 0 20px 55px rgba(181, 23, 158, 0.55);
        }
        
        .step-icon-wrapper i {
            font-size: 2.6rem;
            color: white;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.6rem;
        }
        
        .step-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            border-radius: 3px;
        }
        
        .step-desc {
            color: #475569;
            line-height: 1.85;
            margin-bottom: 1.4rem;
            font-size: 1.02rem;
        }
        
        .step-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        
        .step-features li {
            color: var(--color-dark);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.96rem;
        }
        
        .step-features i {
            color: var(--color-accent);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .step-visual {
            width: 260px;
            height: 185px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            position: relative;
            flex-shrink: 0;
        }
        
        .step-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .process-step-card:hover .step-visual img {
            transform: scale(1.12);
        }
        
        .step-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(86, 11, 173, 0.25) 0%, transparent 100%);
            pointer-events: none;
        }
        
        /* Connector Line */
        .process-connector {
            position: absolute;
            left: 50%;
            top: 80px;
            width: 4px;
            height: calc(100% - 160px);
            transform: translateX(-50%);
            z-index: -1;
            opacity: 0.25;
        }
        
        .process-connector path {
            stroke: var(--color-primary);
            stroke-width: 3;
            fill: none;
            stroke-dasharray: 10, 5;
            animation: dash 1.5s linear infinite;
        }
        
        @keyframes dash {
            to {
                stroke-dashoffset: -30;
            }
        }
        
        /* Alternating Layout */
        .process-step-wrapper:nth-child(even) .process-step-card {
            grid-template-columns: auto 1fr auto;
            direction: rtl;
        }
        
        .process-step-wrapper:nth-child(even) .process-step-card > * {
            direction: ltr;
        }
        
        .process-step-wrapper:nth-child(even) .step-content {
            text-align: right;
        }
        
        .process-step-wrapper:nth-child(even) .step-title::after {
            left: auto;
            right: 0;
        }
        
        /* Booking Form */
        .booking-section {
            background: white;
        }
        
        .booking-form-container {
            background: linear-gradient(135deg, rgba(245, 247, 255, 0.95), rgba(232, 240, 255, 0.98));
            padding: 4rem;
            border-radius: 32px;
            box-shadow: 0 30px 75px rgba(86, 11, 173, 0.15);
            border: 2px solid rgba(181, 23, 158, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .booking-form-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(72, 149, 239, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--color-secondary);
            margin-bottom: 0.6rem;
            font-size: 0.98rem;
        }
        
        .form-control, .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            padding: 1rem 1.3rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 4px rgba(181, 23, 158, 0.15);
            outline: none;
        }
        
        .form-control.is-invalid {
            border-color: #ef4444;
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
        }
        
        .alert-custom {
            display: none;
            border-radius: 14px;
            font-weight: 500;
            margin-top: 1.2rem;
            padding: 1rem 1.5rem;
            border: none;
            animation: slideIn 0.4s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Services Section */
        .services-section {
            background: var(--color-light);
        }
        
        .service-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 55px rgba(86, 11, 173, 0.12);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-14px);
            box-shadow: 0 35px 80px rgba(86, 11, 173, 0.22);
            border-color: rgba(181, 23, 158, 0.35);
        }
        
        .service-img {
            height: 320px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(86, 11, 173, 0.2) 100%);
            pointer-events: none;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.15);
        }
        
        .service-content {
            padding: 2.2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-weight: 800;
            color: var(--color-secondary);
            font-size: 1.5rem;
            margin-bottom: 1.1rem;
            line-height: 1.3;
        }
        
        .service-desc {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 1.8rem;
            flex: 1;
            font-size: 0.98rem;
        }
        
        /* Reviews Section */
        .reviews-section {
            background: white;
        }
        
        .review-card {
            background: linear-gradient(135deg, rgba(245, 247, 255, 0.95), rgba(232, 240, 255, 0.98));
            padding: 2.6rem;
            border-radius: 24px;
            margin: 1rem;
            position: relative;
            transition: all 0.35s ease;
            border: 2px solid rgba(181, 23, 158, 0.15);
        }
        
        .review-card:hover {
            transform: translateY(-8px);
            border-color: rgba(181, 23, 158, 0.4);
            box-shadow: 0 25px 60px rgba(86, 11, 173, 0.18);
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 6rem;
            font-weight: 800;
            color: rgba(181, 23, 158, 0.12);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-stars {
            color: #fbbf24;
            margin-bottom: 1.2rem;
            font-size: 1.15rem;
            position: relative;
            z-index: 2;
        }
        
        .review-text {
            color: #334155;
            font-style: italic;
            margin-bottom: 1.8rem;
            line-height: 1.8;
            position: relative;
            z-index: 2;
            font-size: 1.02rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }
        
        .reviewer-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .reviewer-name {
            font-weight: 700;
            color: var(--color-secondary);
            font-size: 1.1rem;
        }
        
        .reviewer-location {
            color: #64748b;
            font-size: 0.92rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--color-light);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1.2rem;
            border-radius: 18px !important;
            overflow: hidden;
            background: white;
            box-shadow: 0 8px 25px rgba(86, 11, 173, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            border-color: rgba(181, 23, 158, 0.3);
            transform: translateX(5px);
        }
        
        .accordion-button {
            background: white;
            color: var(--color-secondary);
            font-weight: 600;
            padding: 1.6rem 2rem;
            border: none;
            box-shadow: none !important;
            font-size: 1.08rem;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B5179E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(-180deg);
        }
        
        .accordion-body {
            background: white;
            color: #475569;
            padding: 1.4rem 2rem 2rem;
            line-height: 1.85;
            font-size: 1.02rem;
            border-top: 1px solid rgba(86, 11, 173, 0.1);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
            color: white;
            text-align: center;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(72, 149, 239, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 22s infinite ease-in-out;
        }
        
        .cta-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-text {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }
        
        .btn-white {
            background: white;
            color: var(--color-secondary);
            padding: 1.1rem 3.2rem;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            transition: all 0.35s ease;
            font-size: 1.05rem;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
        }
        
        .btn-white:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
            color: var(--color-primary);
        }
        
        /* Contact Section */
        .contact-section {
            background: white;
        }
        
        .contact-info-box {
            background: linear-gradient(135deg, rgba(245, 247, 255, 0.95), rgba(232, 240, 255, 0.98));
            padding: 2rem 1.8rem;
            border-radius: 18px;
            margin-bottom: 1.4rem;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            transition: all 0.35s ease;
            border: 2px solid transparent;
        }
        
        .contact-info-box:hover {
            transform: translateX(8px);
            border-color: rgba(181, 23, 158, 0.35);
            box-shadow: 0 15px 40px rgba(86, 11, 173, 0.12);
        }
        
        .contact-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            box-shadow: 0 10px 25px rgba(181, 23, 158, 0.35);
        }
        
        .contact-details h5 {
            color: var(--color-secondary);
            font-weight: 700;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .contact-details p {
            color: #475569;
            margin: 0;
            font-size: 0.98rem;
            line-height: 1.6;
        }
        
        .contact-form-container {
            background: linear-gradient(135deg, rgba(245, 247, 255, 0.95), rgba(232, 240, 255, 0.98));
            padding: 3.5rem;
            border-radius: 28px;
            border: 2px solid rgba(181, 23, 158, 0.2);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--color-dark) 0%, #0f172a 100%);
            color: white;
            padding: 5.5rem 0 2.5rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
        }
        
        .footer-col {
            margin-bottom: 2.5rem;
        }
        
        .footer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.8rem;
            color: white;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            border-radius: 2px;
        }
        
        .footer-desc {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.9;
            margin-bottom: 1.8rem;
            font-size: 0.98rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.95rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.98rem;
        }
        
        .footer-links a:hover {
            color: var(--color-accent);
            transform: translateX(6px);
        }
        
        .footer-links i {
            font-size: 0.85rem;
            color: var(--color-primary);
        }
        
        .newsletter-form .form-control {
            background: rgba(255, 255, 255, 0.12);
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            color: white;
            margin-bottom: 1rem;
            padding: 1rem 1.3rem;
        }
        
        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form .form-control:focus {
            background: rgba(255, 255, 255, 0.18);
            border-color: var(--color-accent);
            box-shadow: 0 0 0 4px rgba(72, 149, 239, 0.25);
        }
        
        .newsletter-form .btn {
            width: 100%;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: white;
            border: none;
            font-weight: 600;
            padding: 1rem;
            border-radius: 14px;
            transition: all 0.3s ease;
        }
        
        .newsletter-form .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(181, 23, 158, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 3.5rem;
            padding-top: 2.2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
        }
        
        .footer-bottom a {
            color: var(--color-accent);
            text-decoration: none;
            margin: 0 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 0.9rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            transform: translateY(-4px);
        }
        
        /* Responsive Design */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .process-step-card {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .process-step-wrapper:nth-child(even) .process-step-card {
                direction: ltr;
            }
            .process-step-wrapper:nth-child(even) .step-content {
                text-align: center;
            }
            .process-step-wrapper:nth-child(even) .step-title::after {
                left: 50%;
                right: auto;
                transform: translateX(-50%);
            }
            .step-visual {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
            .step-features {
                align-items: center;
            }
            .process-connector {
                display: none;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.9rem;
            }
            .hero-section {
                min-height: auto;
                padding: 10rem 0 6rem;
            }
            .hero-image {
                margin-top: 4rem;
            }
            .section-title {
                font-size: 2.4rem;
            }
            section {
                padding: 5.5rem 0;
            }
            .booking-form-container {
                padding: 2.8rem 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.4rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 1.8rem;
            }
            .about-highlights {
                grid-template-columns: 1fr;
            }
            .counter-number {
                font-size: 3rem;
            }
            .vm-card {
                padding: 2.4rem;
            }
            .step-icon-wrapper {
                width: 90px;
                height: 90px;
            }
            .step-icon-wrapper i {
                font-size: 2.2rem;
            }
            .step-number {
                font-size: 3.8rem;
            }
            .contact-form-container {
                padding: 2.5rem 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.4rem;
            }
            .navbar-brand i {
                font-size: 1.9rem;
            }
            .nav-link {
                margin: 0 0.4rem;
                font-size: 0.9rem;
            }
            .btn-custom, .btn-outline-custom {
                padding: 0.75rem 1.8rem;
                font-size: 0.9rem;
            }
            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            .section-title {
                font-size: 2rem;
            }
            .process-step-card {
                padding: 2.2rem 1.6rem;
            }
            .step-icon-wrapper {
                width: 80px;
                height: 80px;
            }
            .step-visual {
                height: 160px;
            }
            .review-card {
                padding: 2rem 1.6rem;
            }
            .footer-col {
                text-align: center;
            }
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-links {
                justify-content: center;
            }
        }
