/* Packages Page Specific Styles */

/* Hero Section */
.hero-packages {
    position: relative;
    padding: 120px 0 80px;
    background-image: url('../images/hen-party-dance-class-special.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-packages__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-packages__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-packages__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-packages__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-packages__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn--primary {
    background: white;
    color: #333;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn--secondary:hover {
    background: white;
    color: #333;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header--center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem;
}

.section-header__subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Popular Packages Section */
.popular-packages {
    padding: 5rem 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card--featured {
    grid-column: span 2;
}

.package-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-card__image img {
    transform: scale(1.05);
}

.package-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.package-card__content {
    padding: 2rem;
}

.package-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem;
}

.package-card__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-card__features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.package-card__features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.package-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-card__link:hover {
    gap: 0.75rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
    border-color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-card__header {
    margin-bottom: 2rem;
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-card__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.pricing-card__amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
}

.pricing-card__plus {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    margin-left: 0.5rem;
}

.pricing-card__subtitle {
    color: #666;
    font-size: 1rem;
}

.pricing-card__features {
    margin-bottom: 2rem;
}

.pricing-card__features ul {
    list-style: none;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.pricing-card__features i {
    color: #4CAF50;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-card__cta {
    display: inline-block;
    background: #333;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card__cta:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card--featured .pricing-card__cta {
    background: #FFD700;
    color: #333;
}

.pricing-card--featured .pricing-card__cta:hover {
    background: #FFC700;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.95rem;
}

.pricing-note i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

/* All Themes Section */
.all-themes {
    padding: 5rem 0;
    background: #f8f9fa;
}

.themes-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.theme-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 3px solid #FFD700;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-bubble:hover {
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.theme-bubble--large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.theme-bubble--medium {
    font-size: 1.1rem;
    padding: 0.85rem 1.75rem;
}

.themes-cta {
    text-align: center;
}

/* Locations Overview Section */
.locations-overview {
    padding: 5rem 0;
    background: white;
}

.locations-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.region-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.region-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.region-card__count {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.region-card__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.region-card__cities span {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

.locations-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card__rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

.testimonial-card__text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
}

.testimonial-card__author strong {
    color: #222;
    font-weight: 700;
}

.testimonial-card__author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    color: #666;
    font-size: 1rem;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background: white;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem;
}

.booking-header p {
    font-size: 1.2rem;
    color: #666;
}

.booking-form {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-field label[data-required]::after {
    content: " *";
    color: #e74c3c;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #333;
}

.message-field {
    grid-column: 1 / -1;
}

.booking-form__cta {
    text-align: center;
    margin-top: 2rem;
}

.booking-form__cta button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #333;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form__cta button:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.booking-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature i {
    font-size: 1.5rem;
    color: #333;
}

.feature span {
    font-weight: 500;
    color: #555;
}

/* Fix for navigation dropdowns */
.nav__dropdown {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    min-width: 600px !important;
}

.nav__item--locations .nav__dropdown {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-packages {
        padding: 100px 0 60px;
    }
    
    .hero-packages__content {
        margin: 2rem 1rem 0;
        padding: 1.25rem 1.5rem;
        max-width: calc(100% - 2rem);
    }
    
    .hero-packages__title {
        font-size: 1.75rem;
    }
    
    .hero-packages__subtitle {
        font-size: 1rem;
    }
    
    .package-card--featured {
        grid-column: span 1;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card--featured {
        transform: scale(1);
    }
    
    .theme-bubble {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .theme-bubble--large {
        font-size: 1rem;
        padding: 0.7rem 1.4rem;
    }
    
    .theme-bubble--medium {
        font-size: 0.95rem;
        padding: 0.65rem 1.3rem;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
    
    .stat-item__number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-packages__cta {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .themes-bubbles {
        gap: 0.75rem;
    }
    
    .booking-features__grid {
        grid-template-columns: 1fr;
    }
}