/* private-classes.css */

/* Hero Section */
.private-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/api/placeholder/1920/1080') center/cover no-repeat;
}

.private-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.private-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.private-hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    background: transparent;
    border: 2px solid white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FF006C;
    transition: transform 0.3s ease;
    z-index: -1;
}

.hero-button:hover {
    color: white;
    border-color: #FF006C;
}

.hero-button:hover::before {
    transform: translateX(100%);
}

.hero-button i {
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(4px);
}

/* Common Section Styles */
.benefits-section,
.packages-section,
.booking-section,
.group-bookings-section {
    padding: 6rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-section h2,
.packages-section h2,
.booking-section h2,
.group-bookings-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.benefits-section h2::after,
.packages-section h2::after,
.booking-section h2::after,
.group-bookings-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #FF006C;
}

/* Benefits Section */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #FF006C;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    background: #fafafa;
}

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

.package-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 2px solid #FF006C;
}

.package-header {
    background: #fafafa;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
}

.best-value {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF006C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF006C;
    margin-bottom: 0.5rem;
}

.duration {
    color: #666;
    margin-bottom: 0.5rem;
}

.savings {
    color: #FF006C;
    font-weight: 500;
}

.package-features {
    padding: 2rem;
    list-style: none;
}

.package-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li::before {
    content: '•';
    color: #FF006C;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.package-button {
    display: block;
    text-align: center;
    padding: 1rem;
    background: #FF006C;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 0 2rem 2rem;
    border-radius: 4px;
}

.package-button:hover {
    background-color: #e0005f;
}

/* Booking Section */
.booking-section {
    background: white;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-info h3,
.faq-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.booking-steps {
    list-style: none;
    counter-reset: step;
    margin-bottom: 2rem;
}

.booking-steps li {
    counter-increment: step;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.booking-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #FF006C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cancellation-policy,
.what-to-bring {
    margin-top: 2rem;
}

.what-to-bring ul {
    list-style: none;
}

.what-to-bring li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.what-to-bring li::before {
    content: '•';
    color: #FF006C;
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Group Bookings Section */
.group-bookings-section {
    background: #fafafa;
}

.group-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.group-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
}

.group-card i {
    font-size: 2.5rem;
    color: #FF006C;
    margin-bottom: 1.5rem;
}

.group-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.group-card p {
    color: #666;
    line-height: 1.6;
}

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

.group-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #FF006C;
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #e0005f;
}

.contact-button i {
    transition: transform 0.3s ease;
}

.contact-button:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .benefits-section,
    .packages-section,
    .booking-section,
    .group-bookings-section {
        padding: 4rem 0;
    }

    .private-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .package-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .booking-steps li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .benefit-card,
    .group-card {
        padding: 1.5rem;
    }

    .package-header {
        padding: 1.5rem;
    }

    .package-features {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.25rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
}