
        :root {
            --primary-pink: #FECDD3;
            --secondary-pink: #FBCFE8;
            --accent-pink: #F9A8D4;
            --light-pink: #FFF1F2;
            --dark-text: #2d3436;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 2px 20px rgba(249, 168, 212, 0.15);
            padding: 10px 0;
        }
        
        .navbar-brand {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-text) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand i {
            font-size: 32px;
            color: var(--accent-pink);
        }
        
        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-pink) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-cta-nav {
            background: linear-gradient(135deg, var(--accent-pink), var(--secondary-pink));
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            color: white !important;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 168, 212, 0.4);
        }
        
        .btn-cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(249, 168, 212, 0.6);
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 241, 242, 0.95), rgba(252, 205, 211, 0.9)), 
                        url('https://images.pexels.com/photos/7876662/pexels-photo-7876662.jpeg') center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(249, 168, 212, 0.1), transparent);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-30px); }
        }
        
        .hero-content h1 {
            font-size: 3.8rem;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--dark-text);
        }
        
        .hero-content h1 span {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 35px;
            max-width: 600px;
        }
        
        .btn-hero {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(249, 168, 212, 0.5);
            border: none;
        }
        
        .btn-hero:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 40px rgba(233, 30, 99, 0.6);
            color: white;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(249, 168, 212, 0.3);
            max-height: 550px;
            object-fit: cover;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
            border-radius: 2px;
        }
        
        .about-image img {
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(249, 168, 212, 0.2);
            width: 100%;
            height: 450px;
            object-fit: cover;
        }
        
        .about-content p {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 15px;
        }
        
        .btn-read-more {
            background: linear-gradient(135deg, var(--accent-pink), var(--secondary-pink));
            color: white;
            padding: 12px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            margin-top: 15px;
        }
        
        .btn-read-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(249, 168, 212, 0.5);
            color: white;
        }
        
        /* Counter Section */
        .counter-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            opacity: 0.3;
        }
        
        .counter-item {
            text-align: center;
            padding: 30px;
        }
        
        .counter-item i {
            font-size: 3rem;
            color: var(--accent-pink);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--dark-text);
            font-family: 'Playfair Display', serif;
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: #555;
            font-weight: 500;
            margin-top: 10px;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 100px 0;
            background: white;
        }
        
        .vm-card {
            background: linear-gradient(135deg, var(--light-pink), white);
            border-radius: 25px;
            padding: 45px;
            height: 100%;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(249, 168, 212, 0.3);
            border-color: var(--primary-pink);
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-pink), var(--secondary-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .vm-icon i {
            font-size: 36px;
            color: white;
        }
        
        .vm-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-text);
        }
        
        .vm-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 100px 0;
            background: var(--light-pink);
        }
        
        .feature-item {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .feature-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(249, 168, 212, 0.3);
            border-color: var(--accent-pink);
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }
        
        .feature-item:hover .feature-icon {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            transform: scale(1.1) rotate(360deg);
        }
        
        .feature-icon i {
            font-size: 38px;
            color: var(--accent-pink);
            transition: all 0.4s ease;
        }
        
        .feature-item:hover .feature-icon i {
            color: white;
        }
        
        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-text);
            font-weight: 700;
        }
        
        .feature-item p {
            color: #666;
            font-size: 0.98rem;
            line-height: 1.7;
        }
        
        /* Work Process */
        .work-process-section {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .process-timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .process-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-pink), var(--secondary-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 8px 25px rgba(249, 168, 212, 0.4);
            z-index: 2;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            left: 29px;
            top: 65px;
            width: 3px;
            height: calc(100% - 5px);
            background: linear-gradient(to bottom, var(--primary-pink), var(--secondary-pink));
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .step-content {
            background: var(--light-pink);
            padding: 30px;
            border-radius: 20px;
            transition: all 0.4s ease;
        }
        
        .step-content:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(249, 168, 212, 0.3);
        }
        
        .step-content h4 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--dark-text);
        }
        
        .step-content p {
            color: #666;
            margin: 0;
            line-height: 1.7;
        }
        
        /* Service Plans */
        .service-plans-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-pink), white);
        }
        
        .plan-card {
            background: white;
            border-radius: 25px;
            padding: 45px 35px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card.featured {
            border-color: var(--accent-pink);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(249, 168, 212, 0.4);
        }
        
        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
        }
        
        .plan-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(249, 168, 212, 0.35);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        .plan-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            color: white;
            padding: 8px 45px;
            font-size: 0.85rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .plan-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .plan-icon i {
            font-size: 45px;
            color: var(--accent-pink);
        }
        
        .plan-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--dark-text);
        }
        
        .plan-price {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--accent-pink);
            margin: 20px 0;
            font-family: 'Playfair Display', serif;
        }
        
        .plan-price span {
            font-size: 1rem;
            color: #888;
            font-weight: 400;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 25px 0;
            text-align: left;
        }
        
        .plan-features li {
            padding: 10px 0;
            color: #555;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .plan-features li i {
            color: var(--accent-pink);
            font-size: 1.1rem;
        }
        
        .btn-plan {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            color: white;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            width: 100%;
            transition: all 0.3s ease;
            border: none;
            margin-top: 15px;
        }
        
        .btn-plan:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(249, 168, 212, 0.5);
            color: white;
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: white;
        }
        
        .service-card {
            background: #f8f9fa;
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(249, 168, 212, 0.08), rgba(252, 207, 232, 0.08));
            transition: all 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 0;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(249, 168, 212, 0.3);
            border-color: var(--primary-pink);
        }
        
        .service-icon {
            width: 110px;
            height: 110px;
            background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            transform: rotateY(360deg);
        }
        
        .service-icon i {
            font-size: 48px;
            color: var(--accent-pink);
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-icon i {
            color: white;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--dark-text);
            position: relative;
            z-index: 1;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.85;
            font-size: 0.98rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .btn-service {
            background: linear-gradient(135deg, var(--accent-pink), var(--secondary-pink));
            color: white;
            padding: 11px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            z-index: 1;
        }
        
        .btn-service:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(249, 168, 212, 0.5);
            color: white;
        }
        
        /* Booking Form Section */
        .booking-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
            position: relative;
        }
        
        .booking-form-container {
            background: white;
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 25px 70px rgba(249, 168, 212, 0.3);
        }
        
        .form-control, .form-select {
            border: 2px solid #eee;
            border-radius: 15px;
            padding: 14px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--light-pink);
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-pink);
            box-shadow: 0 0 0 4px rgba(249, 168, 212, 0.15);
            background: white;
        }
        
        .btn-book-submit {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            color: white;
            padding: 16px 45px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            width: 100%;
            transition: all 0.4s ease;
        }
        
        .btn-book-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(249, 168, 212, 0.5);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 100px 0;
            background: white;
        }
        
        .review-card {
            background: var(--light-pink);
            border-radius: 25px;
            padding: 35px;
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
            position: relative;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(249, 168, 212, 0.3);
            border-color: var(--primary-pink);
        }
        
        .quote-icon {
            font-size: 3rem;
            color: var(--accent-pink);
            opacity: 0.3;
            margin-bottom: 15px;
        }
        
        .review-stars {
            color: #ffc107;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .review-text {
            color: #555;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid rgba(249, 168, 212, 0.2);
        }
        
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-pink), var(--secondary-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
        }
        
        .reviewer-name {
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 3px;
            font-size: 1.05rem;
        }
        
        .reviewer-location {
            color: #888;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--light-pink);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            background: white;
            color: var(--dark-text);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px 25px;
            border: none;
            box-shadow: none !important;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
            color: var(--dark-text);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F9A8D4'%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: scale(1.3);
        }
        
        .accordion-body {
            background: white;
            padding: 20px 25px;
            color: #666;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(-15deg);
        }
        
        .cta-content h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            margin-bottom: 35px;
        }
        
        .btn-cta-large {
            background: white;
            color: var(--accent-pink);
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
        }
        
        .btn-cta-large:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
            color: var(--accent-pink);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
        }
        
        .contact-info-card {
            background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
            border-radius: 25px;
            padding: 40px;
            height: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid rgba(249, 168, 212, 0.3);
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .contact-icon-box {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon-box i {
            font-size: 24px;
            color: var(--accent-pink);
        }
        
        .contact-details h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark-text);
        }
        
        .contact-details p, .contact-details a {
            color: #555;
            text-decoration: none;
            margin: 0;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: var(--accent-pink);
        }
        
        .contact-form-container {
            background: var(--light-pink);
            border-radius: 25px;
            padding: 45px;
            height: 100%;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #2d3436, #1a1a2e);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer h5 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-pink), var(--secondary-pink));
            border-radius: 2px;
        }
        
        .footer p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--accent-pink);
            padding-left: 8px;
        }
        
        .footer-links a i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover i {
            transform: translateX(3px);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid rgba(249, 168, 212, 0.3);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            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(--accent-pink);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .newsletter-form button {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 168, 212, 0.5);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 30px;
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .footer-bottom a {
            color: var(--accent-pink);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--secondary-pink);
        }
        
        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }
        
        .social-icons a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: linear-gradient(135deg, var(--accent-pink), #e91e63);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .plan-card.featured {
                transform: scale(1);
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 15px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-image {
                margin-top: 50px;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .booking-form-container {
                padding: 30px 20px;
            }
            
            .contact-info-card,
            .contact-form-container {
                padding: 30px 25px;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light-pink);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--accent-pink), var(--secondary-pink));
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(#e91e63, var(--accent-pink));
        }
