/* ===== TOUR CARDS ===== */
.tour-card {
    background: #fffbf5;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
}
.tour-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.06); }
.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.tour-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2d3436;
}
.tour-rating i { color: #fbbf24; font-size: 0.78rem; }
.tour-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tour-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #8fae8b;
    margin-bottom: 10px;
}
.tour-duration i { font-size: 0.78rem; }
.tour-card-title {
    font-size: 1.45rem;
    color: #2d3436;
    margin-bottom: 12px;
    line-height: 1.35;
}
.tour-card-desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}
.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f0ebe4;
    gap: 12px;
}
.tour-price-info {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.5;
    flex-shrink: 1;
}
.tour-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f97316, #e8734a);
    color: #fff;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.35s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}
.tour-cta-btn:hover {
    background: linear-gradient(135deg, #ea580c, #c2693d);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}
.tour-cta-btn i { font-size: 0.8rem; transition: transform 0.3s ease; }
.tour-cta-btn:hover i { transform: translateX(3px); }
/* ===== GRID LAYOUTS ===== */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.tours-more {
    text-align: center;
    margin-top: 48px;
}
.tours-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #f97316;
    transition: all 0.3s ease;
    padding: 12px 28px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
}
.tours-more a:hover {
    background: rgba(249, 115, 22, 0.06);
    border-color: #f97316;
    transform: translateY(-2px);
}
.tours-more a i { font-size: 0.85rem; transition: transform 0.3s ease; }
.tours-more a:hover i { transform: translateX(4px); }

/* ===== DETAILED TOUR CARD — Route / Highlights / Inclusions ===== */
.tour-route {
    background: linear-gradient(135deg, #fef3e2, #fef8f0);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.tour-route-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c2693d;
    margin-bottom: 6px;
}
.tour-route-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}
.tour-highlights {
    margin-bottom: 18px;
}
.tour-highlights-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
}
.tour-highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tour-highlight-tag {
    font-size: 0.78rem;
    font-weight: 500;
    color: #8fae8b;
    background: rgba(143, 174, 139, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
}
.tour-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 18px;
    border-top: 1px solid #f0ebe4;
}
.tour-include-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #555;
}
.tour-include-item i {
    color: #f97316;
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

/* ===== DESTINATION CARDS ===== */
.dest-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.dest-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    display: flex;
    align-items: flex-end;
}
.dest-card-overlay span {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.dest-card.featured {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}
.dest-card.featured .dest-card-overlay span {
    font-size: 1.6rem;
}
.dest-more {
    text-align: center;
    margin-top: 48px;
}
.dest-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #f97316;
    transition: all 0.3s ease;
    padding: 12px 28px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
}
.dest-more a:hover {
    background: rgba(249, 115, 22, 0.06);
    border-color: #f97316;
    transform: translateY(-2px);
}
.dest-more a i { font-size: 0.85rem; transition: transform 0.3s ease; }
.dest-more a:hover i { transform: translateX(4px); }

/* ===== REVIEW CARDS ===== */
.review-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(232, 115, 74, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.review-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 3rem;
    color: #f97316;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.review-stars span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
}
.review-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #f0ebe4;
}
.review-author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2d3436;
}
.review-author-loc {
    font-size: 0.82rem;
    color: #999;
}

/* ===== WHY CARDS ===== */
.why-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(143, 174, 139, 0.15);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8fae8b, #6d9a69);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    font-weight: 700;
}
.why-icon i { font-size: 1.3rem; }
.why-card h3 {
    font-size: 1.15rem;
    color: #2d3436;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
}
