/* Page Builder Sections */

/* Text + Image Section */
.section-text-image {
    padding: 88px 0;
}

.text-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-image-grid .text-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-image-grid .text-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.text-image-grid .image-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(17, 17, 17, .12);
}

.text-left .text-image-grid { }
.text-right .text-image-grid { flex-direction: row-reverse; }
.text-center .text-image-grid { grid-template-columns: 1fr; }

/* Video Section */
.section-video {
    padding: 88px 0;
}

.section-video h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(17, 17, 17, .12);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.section-video p {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

/* Gallery Section */
.section-gallery {
    padding: 88px 0;
}

.section-gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

.gallery-2-col { grid-template-columns: repeat(2, 1fr); }
.gallery-3-col { grid-template-columns: repeat(3, 1fr); }
.gallery-4-col { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
    aspect-ratio: 1;
}

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

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

/* Testimonials Section */
.section-testimonials {
    padding: 88px 0;
    background: var(--color-cream);
}

.section-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(17, 17, 17, .06);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-green);
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: .5rem;
}

.testimonial-title {
    color: var(--color-green);
    font-size: .9rem;
    margin: 0;
}

/* Features Section */
.section-features {
    padding: 88px 0;
}

.section-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-box {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
}

/* Pricing Section */
.section-pricing {
    padding: 88px 0;
    background: var(--color-cream);
}

.section-pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(17, 17, 17, .1);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, .12);
}

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

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-green);
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.price-features li {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.pricing-card .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* FAQ Section */
.section-faq {
    padding: 88px 0;
}

.section-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(17, 17, 17, .1);
    margin-bottom: 1.5rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    color: var(--color-green);
}

.faq-question .icon {
    font-size: 1.5rem;
    transition: transform .3s ease;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1.5rem;
    color: #666;
    font-size: 1.05rem;
}

.faq-item.open .faq-answer {
    display: block;
}

/* CTA Section */
.section-cta {
    padding: 88px 0;
    text-align: center;
}

.section-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.section-cta p {
    color: rgba(255, 255, 255, .9);
    max-width: 780px;
    margin: 0 auto 2rem;
}

.section-cta .btn {
    margin-top: 1.5rem;
}

/* Text Section */
.section-text {
    padding: 88px 0;
}

.section-text h2 {
    margin-bottom: 2rem;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Divider */
.section-divider {
    padding: 2rem 0;
}

.section-divider hr {
    border: none;
    border-top: 1px solid rgba(17, 17, 17, .1);
    margin: 0;
}

/* Slideshow */
.section-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-height: 600px;
}

.slides {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slide-prev, .slide-next {
    background: rgba(0, 0, 0, .5);
    color: white;
    border: none;
    padding: .75rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background .3s ease;
}

.slide-prev:hover, .slide-next:hover {
    background: rgba(0, 0, 0, .8);
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    cursor: pointer;
    transition: background .3s ease;
}

.dot.active {
    background: white;
}

/* Booking Page Styles */
.booking-page {
    background: white;
}

.booking-hero {
    background: linear-gradient(135deg, #4F6F52 0%, #3a5237 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.booking-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Booking Navigation */
.booking-nav-section {
    padding: 60px 0;
    background: #F6F0E6;
}

.booking-nav-wrapper {
    margin-bottom: 2rem;
}

.booking-nav-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-nav-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.booking-nav-tab:hover {
    border-color: #4F6F52;
    color: #4F6F52;
    transform: translateY(-2px);
}

.booking-nav-tab.active {
    background: #4F6F52;
    color: white;
    border-color: #4F6F52;
}

.nav-icon {
    font-size: 1.5rem;
}

.nav-label {
    display: none;
}

.booking-nav-tab .nav-label {
    display: inline;
}

.booking-nav-content {
    margin-top: 2rem;
}

.nav-content-item {
    display: none;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    font-size: 1.05rem;
    color: #555;
}

.nav-content-item.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.nav-content-item p {
    margin: 0;
}

.nav-content-item strong {
    color: #4F6F52;
}

/* Booking Calendar */
.booking-calendar-section {
    padding: 60px 0;
    background: white;
}

.booking-calendar-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-shadow: 0 10px 40px rgba(17, 17, 17, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.booking-calendar-wrapper iframe {
    display: block;
    border: none;
}

/* Booking Help Section */
.booking-help-section {
    padding: 88px 0;
    background: #F6F0E6;
}

.booking-help-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.booking-help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.12);
}

.help-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.help-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.help-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Booking Contact CTA */
.booking-contact-cta {
    padding: 88px 0;
    background: #111;
    color: white;
    text-align: center;
}

.booking-contact-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.booking-contact-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary:hover {
    background: #3a5237;
}

/* Responsive */
@media (max-width: 768px) {
    .text-image-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-2-col { grid-template-columns: 1fr; }
    .gallery-3-col { grid-template-columns: repeat(2, 1fr); }
    .gallery-4-col { grid-template-columns: repeat(2, 1fr); }

    .testimonials-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .slide img {
        height: 400px;
    }

    .booking-nav-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .booking-help-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
