/* ========================================
   Tours Section
   ======================================== */
.our_tours_section {
    padding: 90px 20px 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f5f0e8;
}

.our_tours_section h1 {
    font-family: 'Cormorant Garamond', serif !important;
}

.our_tours_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(164, 210, 130, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 80% 30%, rgba(255, 180, 80, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a4d282;
    margin-bottom: 14px;
}

.section-header h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #2c2c2c;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.section-header h1 em {
    font-style: italic;
    color: #e09d32;
}

.header-rule {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #a4d282, #e09d32);
    border-radius: 99px;
    margin: 20px auto 0;
}

.tours-row {
    display: flex;
    align-items: stretch;
}

.tour-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.38s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.38s ease, border-color 0.3s ease;
    height: 100%;
    cursor: pointer;
}

#tour-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.38s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.38s ease, border-color 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
    border-color: rgba(164, 210, 130, 0.45);
}

.middle-card {
    transform: translateY(40px);
}

.middle-card:hover {
    transform: translateY(35px);
}

.tour-card.featured {
    background: #ffffff;
    border-color: rgba(224, 157, 50, 0.25);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.12);
}

.tour-card.featured:hover {
    border-color: rgba(224, 157, 50, 0.5);
    box-shadow: 0 36px 72px rgba(0, 0, 0, 0.18);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    pointer-events: none;
}

.card-img-top {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.55s cubic-bezier(.22, .68, 0, 1.1);
}

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

.card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(164, 210, 130, 0.6);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a4d282;
    z-index: 2;
}

.featured .card-badge {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(224, 157, 50, 0.5);
    color: #e09d32;
}

.card-body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #fde6c9;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 14px;
    line-height: 1.35;
    font-family: 'Cormorant Garamond', serif;
}

.featured .card-title {
    color: #2c2c2c;
    font-size: 1.6rem;
}

.card-text {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.75;
    margin-bottom: 28px;
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgb(164, 210, 130);
    border-radius: 99px;
    color: #7bb85a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
    white-space: nowrap;
}

.btn-see-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s;
}

.btn-see-more:hover {
    background: rgba(164, 210, 130, 0.1);
    border-color: #7bb85a;
    color: #6aa34a;
    transform: translateX(2px);
    text-decoration: none;
}

.btn-see-more:hover svg {
    transform: translateX(4px);
}

.featured .btn-see-more {
    border-color: rgba(224, 157, 50, 0.6);
    color: #e09d32;
}

.featured .btn-see-more:hover {
    background: rgba(224, 157, 50, 0.1);
    border-color: #e09d32;
    color: #c88926;
}

.duration-pill {
    font-size: 0.85rem;
    color: #8a8a8a;
    white-space: nowrap;
    font-weight: 500;
}

@media (max-width: 992px) {
    .container.wrapper {
        max-width: 1100px;
    }

    .card-img-top {
        height: 260px;
    }

    .card-title {
        font-size: 1.35rem;
    }

    .featured .card-title {
        font-size: 1.45rem;
    }
}

@media (max-width: 768px) {
    .middle-card {
        transform: translateY(20px);
    }

    .middle-card:hover {
        transform: translateY(15px);
    }

    .card-img-top {
        height: 240px;
    }

    .card-body {
        padding: 24px 26px 28px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .featured .card-title {
        font-size: 1.35rem;
    }

    .card-text {
        font-size: 0.95rem;
    }

    .btn-see-more {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .duration-pill {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .our_tours_section {
        padding: 60px 16px 70px;
    }

    .container.wrapper {
        max-width: 100%;
    }

    .middle-card {
        transform: translateY(0);
    }

    .card-img-top {
        height: 220px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .featured .card-title {
        font-size: 1.25rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .btn-see-more {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .duration-pill {
        font-size: 0.75rem;
    }
}
