/* ============================================
   Popular Tours Section — Vibrant Caribbean Orange with Dark Cards
   ============================================ */

.popular-tours {
    position: relative;
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 40%, #c2410c 100%);
    overflow: hidden;
}

/* Decorative Palm Leaves Backgrounds */
.palm-leaf-bg {
    position: absolute;
    top: 0;
    width: 260px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18;
    background-repeat: no-repeat;
    background-size: contain;
}

.palm-leaf-left {
    left: 0;
    background-position: left center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' fill='%23ffffff'%3E%3Cpath d='M10 200 Q 80 180 150 100 Q 110 140 10 200 M10 200 Q 100 200 190 150 Q 130 180 10 200 M10 200 Q 110 230 180 220 Q 120 220 10 200 M10 200 Q 90 260 160 290 Q 100 260 10 200 M10 200 Q 70 290 120 350 Q 80 300 10 200 M5 0 Q 30 150 10 400' stroke='%23ffffff' stroke-width='4' fill='none'/%3E%3Cpath d='M0 100 Q 80 80 160 20 C 120 60 70 90 0 100 Z M0 180 Q 90 160 180 110 C 130 150 70 170 0 180 Z M0 240 Q 100 230 190 200 C 130 230 70 240 0 240 Z M0 300 Q 90 300 170 300 C 120 310 60 300 0 300 Z M0 360 Q 80 370 150 390 C 100 380 50 370 0 360 Z'/%3E%3C/svg%3E");
}

.palm-leaf-right {
    right: 0;
    transform: scaleX(-1);
    background-position: left center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' fill='%23ffffff'%3E%3Cpath d='M10 200 Q 80 180 150 100 Q 110 140 10 200 M10 200 Q 100 200 190 150 Q 130 180 10 200 M10 200 Q 110 230 180 220 Q 120 220 10 200 M10 200 Q 90 260 160 290 Q 100 260 10 200 M10 200 Q 70 290 120 350 Q 80 300 10 200 M5 0 Q 30 150 10 400' stroke='%23ffffff' stroke-width='4' fill='none'/%3E%3Cpath d='M0 100 Q 80 80 160 20 C 120 60 70 90 0 100 Z M0 180 Q 90 160 180 110 C 130 150 70 170 0 180 Z M0 240 Q 100 230 190 200 C 130 230 70 240 0 240 Z M0 300 Q 90 300 170 300 C 120 310 60 300 0 300 Z M0 360 Q 80 370 150 390 C 100 380 50 370 0 360 Z'/%3E%3C/svg%3E");
}

.popular-tours .container {
    position: relative;
    z-index: 2;
}

.popular-tours-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.popular-tours-header .section-tag.tours-tag {
    color: rgba(255, 255, 255, 0.9);
}

.popular-tours-header .section-tag.tours-tag::before,
.popular-tours-header .section-tag.tours-tag::after {
    background-color: rgba(255, 255, 255, 0.85);
}

.popular-tours-header .section-heading.tours-heading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

/* ---- Dark Tour Card (Matching Reference Design) ---- */
.tour-card {
    background-color: #121316;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.15);
}

.tour-card-image {
    width: 100%;
    height: 195px;
    overflow: hidden;
    position: relative;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.tour-card-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #121316;
}

.tour-card-body .tour-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.tour-card:hover .tour-card-body .tour-title {
    color: #ff9d42;
}

.tour-card-body .tour-desc {
    font-size: 0.86rem;
    color: #b0b4ba;
    line-height: 1.55;
    margin-bottom: 1.2rem;
    min-height: 52px;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #d1d5db;
}

.tour-duration svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}

.tour-price {
    font-size: 0.85rem;
    color: #d1d5db;
}

.tour-price span {
    font-size: 1.35rem;
    font-weight: 800;
    color: #F37021;
}

/* View All Button */
.tours-cta {
    text-align: center;
}

.tours-cta .btn {
    padding: 13px 36px;
    font-size: 0.85rem;
    border-radius: var(--radius-xl);
    letter-spacing: 1.2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
