/* ===== HOMEPAGE STYLES ===== */

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 550px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 24, 39, 0.35) 0%,
        rgba(4, 24, 39, 0.55) 50%,
        rgba(4, 24, 39, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-text {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== INTRO ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2::after {
    margin: 12px 0 0;
}

.intro-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.intro-image {
    position: relative;
}

.intro-img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* ===== TOURS GRID ===== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card .card-img {
    height: 240px;
    transition: transform 0.4s ease;
}

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

.tour-card a {
    display: block;
    overflow: hidden;
}

.tour-card .card-body {
    padding: 20px 20px 15px;
}

.tour-card .card-title a {
    color: var(--color-heading);
}

.tour-card .card-title a:hover {
    color: var(--color-primary);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--color-heading);
    padding: 50px 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner-text h2 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.cta-email-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cta-email-form .form-control {
    min-width: 280px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

.cta-email-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-email-form .form-control:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.12);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.about-video iframe {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
}

.about-text h2::after {
    margin: 12px 0 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.about-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.about-feature p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.about-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-heading);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-item[open] .faq-question {
    background: rgba(235, 122, 97, 0.06);
    border-bottom: 1px solid var(--color-border);
}

.faq-question:hover {
    background: rgba(235, 122, 97, 0.04);
}

.faq-answer {
    padding: 20px 24px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* ===== CTA BOTTOM ===== */
.cta-bottom {
    background: linear-gradient(135deg, var(--color-primary) 0%, #D66F58 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-bottom-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-bottom h2 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.cta-bottom-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE - HOMEPAGE ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-grid .testimonial:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-video iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-image {
        order: -1;
    }

    .intro-img {
        max-width: 300px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-email-form {
        flex-direction: column;
        width: 100%;
    }

    .cta-email-form .form-control {
        min-width: auto;
        width: 100%;
    }

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

    .testimonials-grid .testimonial:last-child {
        max-width: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-video iframe {
        height: 280px;
    }

    .cta-bottom h2 {
        font-size: 1.75rem;
    }

    .cta-bottom p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .cta-banner-text h2 {
        font-size: 1.4rem;
    }

    .about-video iframe {
        height: 220px;
    }
}
