/* Sections Styling: Memories, Explore Filters, Adventure Steps, & Kayak Banner */

/* Memories Section (Features + Volcano Image with Reviews) */
.memories-section {
    padding: 100px 0;
}

.memories-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.memories-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.memories-content .subheading {
    color: var(--slate-500);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* Volcano Card & Floating Testimonials */
.memories-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.volcano-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 580px;
    border-radius: var(--radius-xl);
    /* overflow: hidden; Removed so badges can float outside */
    box-shadow: var(--shadow-lg);
}

.volcano-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: transform 6s ease;
}

.volcano-card:hover .volcano-img {
    /* transform: scale(1.05); Removed */
}

.floating-review {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-review.pos-top {
    top: 60px;
    left: -50px;
    animation-delay: 0s;
}

.floating-review.pos-middle {
    top: 45%;
    right: -50px;
    animation-delay: 1.2s;
}

.floating-review.pos-bottom {
    bottom: 80px;
    left: -40px;
    animation-delay: 2.4s;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-text {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--slate-900);
}

.review-star {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Explore More Category Filters */
.explore-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-pills {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.filter-pills::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.filter-pill {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-600);
    background: var(--slate-100);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-pill:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

.filter-pill.active {
    background: var(--slate-900);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.filter-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-700);
    background: var(--white);
    border: 1.5px solid var(--slate-200);
}

/* Adventure Steps Section */
.adventure-section {
    padding: 80px 0;
    text-align: center;
}

.adventure-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.adventure-header p {
    color: var(--slate-500);
    font-size: 1.05rem;
    margin-bottom: 50px;
}

.adventure-stamps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.stamp-card {
    position: relative;
    background: var(--white);
    border: 2px dashed var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-smooth);
}

.stamp-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-md);
}

.stamp-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stamp-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.stamp-city {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.stamp-subtitle {
    font-size: 0.85rem;
    color: var(--slate-500);
}

.stamp-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-cyan);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.4);
}

/* Kayaking Full-Width Book Banner */
.book-banner-section {
    padding: 60px 0 100px 0;
}

.book-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.book-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.kayak-banner-card {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kayak-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.kayak-banner-card:hover .kayak-banner-img {
    /* transform: scale(1.04); Removed */
}

.kayak-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 132, 199, 0.15);
}

.play-button {
    position: relative;
    z-index: 5;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-smooth);
    color: var(--primary-cyan);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    margin-left: 4px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--slate-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.close-modal-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
}

@media (max-width: 1024px) {
    .memories-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .volcano-card {
        max-width: 100%;
        height: 480px;
    }
    .floating-review.pos-top { left: -16px; }
    .floating-review.pos-middle { right: -16px; }
    .floating-review.pos-bottom { left: -16px; }
    .adventure-stamps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .adventure-stamps-grid {
        grid-template-columns: 1fr;
    }
    .kayak-banner-card {
        height: 320px;
    }
}

/* =========================================================
   1. Featured Global Holiday Packages Section (.holiday-section)
========================================================= */
.holiday-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
}

/* =========================================================
   2. Why Choose Tripeo / Trust Pillars Section (.trust-section)
========================================================= */
.trust-section {
    padding: 90px 0;
    background: var(--white);
}

/* =========================================================
   3. Verified Traveler & Pilgrim Reviews Section (.reviews-section)
========================================================= */
.reviews-section {
    padding: 100px 0;
    background: var(--slate-50);
}

