/* ==========================================================================
   TANZANIA SAFARI – FINAL PROFESSIONAL CSS 2025
   Banner: NO IMAGE + Ultra Compact + Perfect H1
   ========================================================================== */
   
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #faf9f6;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

/* ====================================
   1. Hide unwanted elements
   ==================================== */
nav[aria-label="breadcrumb"],
.breadcrumb,
.search_area_two.booking-tour,
.search_area.booking-tour,
form[action="booking-received.php"],
.booking-tour {
    display: none !important;
}

/* ====================================
   2. BANNER – FORCE COLOR ONLY (Hides any inline background image)
   ==================================== */
.same-section-spacing.bg-banner,
.bg-banner {
    /* COMPLETELY OVERRIDE AND HIDE ANY INLINE BACKGROUND IMAGE */
    background-image: none !important;
    
    /* Luxury safari gradient + solid fallback */
    background: linear-gradient(135deg, #1a5d3f 0%, #0f3a2a 100%) !important;
    background-color: #1a5d3f !important;
    
    /* Super compact height */
    min-height: 220px !important;     /* Desktop: small & elegant */
    padding: 50px 20px !important;
    margin-bottom: 60px !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle depth effect (still no image) */
.bg-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.banner-box {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: left;
    color: #fff;
}

.banner-box h1 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 900 !important;
    font-size: clamp(2.3rem, 6.8vw, 4.2rem) !important;  /* Perfect one-line fit on desktop */
    line-height: 1.05 !important;
    margin: 0 !important;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    letter-spacing: -1.2px;
}

.banner-box h1 strong {
    color: #d4a656;
    display: inline;
    font-weight: 900;
}

/* ====================================
   3. Mobile – Even Smaller Banner + Max 2 Lines
   ==================================== */
@media (max-width: 992px) {
    .same-section-spacing.bg-banner,
    .bg-banner {
        min-height: 200px !important;
        padding: 45px 15px !important;
    }
}

@media (max-width: 768px) {
    .same-section-spacing.bg-banner,
    .bg-banner {
        min-height: 180px !important;   /* Super small on phones */
        padding: 40px 15px !important;
    }
    
    .banner-box h1 {
        font-size: clamp(2rem, 7.5vw, 3.4rem) !important;
        line-height: 1.08 !important;
    }
}

@media (max-width: 480px) {
    .same-section-spacing.bg-banner,
    .bg-banner {
        min-height: 160px !important;
        padding: 35px 12px !important;
    }
}

/* ====================================
   4. Rest of your premium styles – UNCHANGED
   ==================================== */
.package-detail img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.14);
    margin: 40px 0;
    transition: transform 0.4s ease;
}

.package-detail img:hover {
    transform: scale(1.02);
}

.package-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.6rem);
    color: #2c3e50;
    text-align: center;
    margin: 70px 0 35px;
    font-weight: 800;
    position: relative;
}

.package-info h2::after {
    content: '';
    width: 100px;
    height: 5px;
    background: #d4a656;
    display: block;
    margin: 25px auto;
    border-radius: 3px;
}

.package-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5.5vw, 2.6rem);
    color: #1a5d3f;
    margin: 70px 0 25px;
    font-weight: 700;
    position: relative;
    padding-left: 80px;
}

.package-detail h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 60px;
    height: 4px;
    background: #d4a656;
    transform: translateY(-50%);
    border-radius: 2px;
}

.package-info p,
.package-detail p {
    font-size: 1.18rem;
    line-height: 2;
    color: #444;
    margin-bottom: 26px;
}

.package-detail p {
    position: relative;
    padding-left: 44px;
    font-size: 1.16rem;
    color: #444;
}

.package-detail p:before {
    position: absolute;
    left: 0;
    font-size: 28px;
    font-weight: bold;
    top: -3px;
}

.package-detail p:before {
    content: "✓";
    color: #27ae60;
}

.package-detail h3:contains("Not included") ~ p:before {
    content: "✗";
    color: #c0392b;
}

/* ====================================
   4. Other Packages – Premium Cards
   ==================================== */
.other-packages {
    padding: 90px 0;
    background: linear-gradient(135deg, #f9f7f2 0%, #fdfdfb 100%);
}

.other-packages .title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    text-align: center;
    margin-bottom: 75px;
    color: #2c3e50;
    font-weight: 800;
}

.other-packages .title:after {
    content: '';
    width: 130px;
    height: 5px;
    background: #d4a656;
    display: block;
    margin: 25px auto;
    border-radius: 3px;
}

.other-packages > .container > .row,
.other-packages > .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    padding: 0 15px;
}

.other-packages [class*="col-"] {
    padding: 0 !important;
}

.package-list-wrap {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.11);
    transition: all 0.45s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-list-wrap:hover {
    transform: translateY(-22px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.package-list-wrap img {
    height: 290px;
    object-fit: cover;
    width: 100%;
}

.package-list-content {
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
    color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.package-list-title a {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.package-list-button {
    background: #d4a656;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    align-self: flex-start;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: 15px;
}

.package-list-button:hover {
    background: #b5893e;
    transform: scale(1.08);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .other-packages > .container > .row,
    .other-packages > .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .other-packages > .container > .row,
    .other-packages > .row {
        grid-template-columns: 1fr;
    }
    
    .package-list-wrap img {
        height: 340px;
    }
}