/* Kids page specific styles */

/* Smooth animations for all elements */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kids {
    padding: 5rem 0;
    background: var(--bg-white);
}

.kids-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.birthday-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.package-card {
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-light);
    animation: scaleIn 0.6s ease-out;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.package-card.featured {
    background: linear-gradient(135deg, rgba(58, 164, 120, 0.05), var(--bg-white));
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(58, 164, 120, 0.15);
    transform: scale(1.02);
}

.package-card.featured::before {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 6px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-light);
    z-index: 2;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.package-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(58, 164, 120, 0.3));
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
}

.package-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.package-card.featured .package-price {
    color: var(--primary-color);
    font-weight: 800;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
}

.package-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.5;
    padding: 0.5rem 0;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }
.feature:nth-child(5) { animation-delay: 0.5s; }

.feature:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.feature-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
    background: rgba(58, 164, 120, 0.08);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.feature-extra {
    background: rgba(246, 156, 55, 0.08);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    border-left: 4px solid var(--secondary-color);
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature.premium {
    color: var(--text-dark);
    font-weight: 600;
    background: rgba(246, 156, 55, 0.08);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.feature.premium i {
    color: var(--secondary-color);
}

.why-choose-section {
    margin: 5rem 0;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.why-choose-item:nth-child(1) { animation-delay: 0.1s; }
.why-choose-item:nth-child(2) { animation-delay: 0.2s; }
.why-choose-item:nth-child(3) { animation-delay: 0.3s; }
.why-choose-item:nth-child(4) { animation-delay: 0.4s; }
.why-choose-item:nth-child(5) { animation-delay: 0.5s; }
.why-choose-item:nth-child(6) { animation-delay: 0.6s; }

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.why-choose-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(58, 164, 120, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(4px 4px 8px rgba(58, 164, 120, 0.3));
}

.why-choose-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.why-choose-item:hover h4 {
    color: var(--primary-color);
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.important-info {
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(58, 164, 120, 0.08), rgba(246, 156, 55, 0.08));
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(58, 164, 120, 0.2);
}

.location-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-info-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-person {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.phone-number {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.phone-number:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
    color: white;
}

.birthday-gallery {
    margin: 5rem 0;
}

.birthday-gallery h2 {
    margin-bottom: 2rem;
}

.birthday-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.birthday-gallery .gallery-item {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
    position: relative;
}

.birthday-gallery .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(58, 164, 120, 0.2), rgba(246, 156, 55, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.birthday-gallery .gallery-item:hover::before {
    opacity: 1;
}

.birthday-gallery .gallery-item:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: var(--shadow-heavy);
}

.birthday-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.birthday-gallery .gallery-item:hover img {
    transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .birthday-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
    
    .package-icon {
        font-size: 3rem;
    }
    
    .why-choose-icon {
        font-size: 3rem;
    }
    
    .birthday-gallery .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 1rem;
    }
    
    .package-price {
        font-size: 1.6rem;
    }
    
    .package-icon {
        font-size: 2.5rem;
    }
    
    .why-choose-icon {
        font-size: 2.5rem;
    }
    
    .featured-badge {
        font-size: 0.8rem;
        padding: 6px 30px;
    }
}