/* ============================================
   HOME TOURIST PROGRAMS SECTION
   ============================================ */

.home-tourist-programs {
    padding: 80px 0;
    background: white;
    width: 100%;
}

.home-tourist-programs .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #63514f;
    margin: 0 0 50px 0;
    font-family: var(--font-title), serif;
    letter-spacing: -0.5px;
}

/* ============================================
   TOURS GRID - 2 COLUMNS
   ============================================ */

.home-tours-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Loading state */
.home-tours-loading {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* ============================================
   TOUR CARD - HORIZONTAL WITH BACKGROUND IMAGE
   ============================================ */

.home-tour-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.home-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Background Image - Full Card */
.home-tour-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.home-tour-card:hover .home-tour-card-bg {
    transform: scale(1.08);
}

/* Gradient Overlay */
.home-tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* ============================================
   CARD CONTENT - BOTTOM POSITIONED
   ============================================ */

.home-tour-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 32px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

/* Left Column: Title + Duration */
.home-tour-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-tour-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    font-family: var(--font-title), serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.home-tour-card-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.home-tour-card-duration svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Right Column: Price + Button */
.home-tour-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    text-align: right;
}

.home-tour-card-price {
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.home-tour-price-label {
    font-size: 0.75rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 2px;
}

.home-tour-price-value {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.home-tour-card-btn {
    background: #ee7326;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(238, 115, 38, 0.3);
    text-decoration: none;
    display: inline-block;
}

.home-tour-card-btn:hover {
    background: #d86420;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 115, 38, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 992px) {
    .home-tourist-programs .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .home-tours-container {
        gap: 25px;
    }

    .home-tour-card-content {
        padding: 24px 28px;
        gap: 20px;
    }

    .home-tour-card-title {
        font-size: 1.3rem;
    }

    .home-tour-price-value {
        font-size: 1.5rem;
    }

    .home-tour-card-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .home-tourist-programs {
        padding: 60px 0;
    }

    .home-tourist-programs .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .home-tours-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .home-tour-card {
        aspect-ratio: 4 / 3;
    }

    .home-tour-card-content {
        padding: 20px 24px;
        gap: 16px;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-tour-card-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .home-tour-card-price {
        text-align: left;
    }

    .home-tour-card-title {
        font-size: 1.2rem;
    }

    .home-tour-card-duration {
        font-size: 0.85rem;
    }

    .home-tour-price-value {
        font-size: 1.4rem;
    }

    .home-tour-card-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Very Small Mobile */
@media (max-width: 480px) {
    .home-tour-card-content {
        padding: 16px 20px;
    }

    .home-tour-card-title {
        font-size: 1.1rem;
    }

    .home-tour-price-value {
        font-size: 1.2rem;
    }

    .home-tour-card-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
