/*
 * Main Stylesheet for Bush Warriors Adventures
 * Version: 1.0
 * Description: Complete theme styles with proper ordering and fixes
 */

/* ============================================
   1. RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    color: #c8963e;
    text-decoration: none;
}

a:visited {
    color: #c8963e;
}

a:hover {
    color: #e0b05e;
}

a:active {
    color: #2d6a2e;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    max-width: 100%;
    height: auto;
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */
/* Colors */
.bg-bw-black {
    background-color: #0a0a0a;
}
.bg-bw-dark {
    background-color: #1a1a1a;
}
.bg-bw-darker {
    background-color: #0f0f0f;
}
.bg-bw-amber {
    background-color: #c8963e;
}
.text-bw-amber {
    color: #c8963e;
}
.border-bw-amber {
    border-color: #c8963e;
}
.text-white {
    color: #ffffff !important;
}

/* Fonts */
.font-great-vibes {
    font-family: 'Great Vibes', cursive;
}
.font-roboto-slab {
    font-family: 'Roboto Slab', serif;
}
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}
.font-raleway {
    font-family: 'Raleway', sans-serif;
}

/* ============================================
   3. TOP BAR
   ============================================ */
.top-bar {
    background: #0a0a0a;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
/* Main Header - Transparent initially, dark on scroll */
.main-header {
    background: transparent;
    width: 100%;
    transition: all 0.3s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 50;
}

.main-header.scrolled {
    background: #0f0f0f !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.main-header.scrolled .nav-menu > li > a {
    color: #ffffff !important;
}

.main-header.scrolled .nav-icon-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.main-header.scrolled .nav-icon-btn.whatsapp-nav {
    border-color: #25D366;
    color: #25D366;
}

.main-header.scrolled .nav-book-btn {
    background: #c8963e !important;
    color: #0a0a0a !important;
}

.header-container {
    max-width: 1429px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo Styles */
.brand-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    background-color: var(--logo-bg-color, transparent);
    padding: var(--logo-padding, 0);
    border-radius: var(--logo-border-radius, 0);
    transition: all 0.3s ease;
}

.brand-logo-link img {
    height: 48px;
    width: auto;
    display: block;
}

.custom-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    background: #fff !important;
}

/* Navigation Menu */
.nav-wrap {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu > li {
    position: relative;
    margin: 0;
}

.nav-menu > li > a {
    color: #0a0a0a !important;
    padding: 18px 10px;
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #c8963e;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-menu > li:hover > a {
    color: #c8963e !important;
}

.nav-menu > li:hover > a::after {
    transform: scaleX(1);
}

.nav-menu > li.current-menu-item > a {
    color: #c8963e !important;
}

.nav-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}

/* Dropdown menus */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: #1a1a1a;
    border-top: 3px solid #c8963e;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li {
    position: relative;
}

.nav-menu .sub-menu li a {
    color: #bbb;
    padding: 12px 20px;
    display: block;
    font-size: 13px;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
}

.nav-menu .sub-menu li a:hover {
    color: #c8963e;
    background: rgba(200, 150, 62, 0.08);
    padding-left: 25px;
}

.nav-menu .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: -3px;
    transform: translateX(10px);
}

.nav-menu .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Right side items */
.nav-right-items {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
}

.nav-contact-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s;
    border: 1.5px solid rgba(200, 150, 62, 0.4);
    color: #c8963e;
}

.nav-icon-btn.whatsapp-nav {
    border-color: #25D366;
    color: #25D366;
}

.nav-icon-btn.whatsapp-nav:hover {
    background: #25D366;
    color: #fff;
}

.nav-icon-btn.call-nav:hover {
    background: #c8963e;
    color: #0a0a0a;
}

.nav-book-btn {
    background: #c8963e !important;
    color: #0a0a0a !important;
    border-radius: 3px;
    padding: 6px 16px !important;
    margin-left: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    display: inline-block !important;
}

.nav-book-btn:hover {
    background: #e0b05e !important;
    transform: translateY(-1px);
}

/* ============================================
   5. MOBILE MENU
   ============================================ */
.mobile-overlay {
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu {
    transition: right 0.3s ease;
}

.mobile-menu.open {
    right: 0 !important;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu > li > a {
    display: block;
    padding: 14px 20px;
    color: #0f0f0f !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-menu .sub-menu {
    display: none;
    background: rgba(0, 0, 0, 0.02);
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu .sub-menu a {
    display: block;
    padding: 10px 20px 10px 35px;
    color: #0f0f0f;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    text-transform: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-menu .sub-menu a:hover {
    color: #c8963e;
    padding-left: 45px;
}

.mobile-nav-menu .sub-menu .sub-menu a {
    padding-left: 50px;
    font-size: 12px;
}

.mobile-nav-menu .menu-item-has-children > a::after {
    content: '+';
    float: right;
    font-size: 18px;
    color: #c8963e;
}

.mobile-nav-menu .menu-item-has-children.open > a::after {
    content: '−';
}

/* ============================================
   6. HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.08) 18%, transparent 35%);
}

.hero-slide-content {
    position: absolute;
    bottom: 12%;
    right: 8%;
    text-align: right;
    color: #fff;
    z-index: 2;
    max-width: 600px;
}

.hero-slide-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(22px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.hero-slide-content .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.5vw, 18px);
    color: #c8963e;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #c8963e;
    color: #ffff !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.hero-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.hero-btn:hover {
    background: #e0b05e;
    transform: translateY(-2px);
    color: #0a0a0a;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

.hero-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-nav-btn:hover {
    background: #c8963e;
    transform: scale(1.1);
    color: #0a0a0a;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: #c8963e;
    transform: scale(1.3);
}

.hero-dot:hover {
    background: #c8963e;
    transform: scale(1.2);
}

@keyframes heroBtnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 150, 62, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(200, 150, 62, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 150, 62, 0);
    }
}

.hero-btn:focus {
    animation: heroBtnPulse 1s;
}

/* ============================================
   7. FLIP CARDS
   ============================================ */
.flip-card {
    perspective: 1000px;
    height: 320px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow-y: auto;
    overflow-x: hidden;
}

.flip-card-front {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(200, 150, 62, 0.3);
    padding: 1rem;
}

.flip-card-front h3 {
    max-width: 90%;
    word-break: break-word;
    text-align: center;
    line-height: 1.3;
}

.flip-card-back {
    background: linear-gradient(135deg, #c8963e, #a67a2e);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding: 20px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.flip-card-back p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    width: 100%;
    flex: 1;
    max-height: 180px;
    overflow-y: auto;
}

.flip-card-back a {
    margin-top: auto;
    margin-bottom: 0;
    display: inline-block;
    background: white;
    color: #a67a2e;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.flip-card-back a:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

/* ============================================
   8. SAFARI CARDS
   ============================================ */
.safari-card,
.type-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
}

.safari-card:hover,
.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.safari-card img,
.type-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.safari-card:hover img,
.type-card:hover img {
    transform: scale(1.05);
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
}

.view-itinerary-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 2px solid #c8963e;
    color: #c8963e;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    transition: all 0.3s;
}

.view-itinerary-btn:hover {
    background: #c8963e;
    color: #0a0a0a;
    transform: translateY(-1px);
}

.wa-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wa-btn:hover {
    background: #1fb855;
    transform: scale(1.1);
}

.book-btn {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.book-btn:hover {
    background: #c8963e;
    color: #0a0a0a;
}

/* ============================================
   9. STAFF CARDS
   ============================================ */
.staff-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.staff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.staff-card .staff-img-wrap {
    position: relative;
    overflow: hidden;
}

.staff-card .staff-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s;
}

.staff-card:hover .staff-img-wrap img {
    transform: scale(1.05);
}

.staff-card .staff-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 20px 16px 12px;
}

.guide-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

.guide-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-top: 8px;
}

.guide-specialty-tag {
    background: #f3f4f6;
    color: #555;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ============================================
   10. SINGLE SAFARI PACKAGE
   ============================================ */
/* Hero Section */
.single-safari-package .hero-section {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.single-safari-package .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.single-safari-package .hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Hero Section Text Colors - ALL WHITE */
.single-safari-package .hero-section,
.single-safari-package .hero-section * {
    color: #ffffff !important;
}

.single-safari-package .hero-section a {
    color: #ffffff !important;
}

.single-safari-package .hero-section a:hover {
    color: #c8963e !important;
}

.single-safari-package .hero-section .bg-bw-amber {
    color: #0a0a0a !important;
}

.single-safari-package .hero-section .bg-bw-amber:hover {
    color: #0a0a0a !important;
}

.single-safari-package .hero-section i {
    color: #c8963e !important;
}

.single-safari-package .package-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.single-safari-package .package-category-badge {
    background: #c8963e;
    color: #0a0a0a !important;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-safari-package .package-title {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.single-safari-package .package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #ffffff !important;
}

.single-safari-package .package-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff !important;
}

.single-safari-package .package-meta-item i {
    color: #c8963e !important;
    font-size: 16px;
}

.single-safari-package .breadcrumbs {
    color: #ffffff !important;
}

.single-safari-package .breadcrumbs a {
    color: #ffffff !important;
}

.single-safari-package .breadcrumbs a:hover {
    color: #c8963e !important;
}

/* Content Sections */
.single-safari-package .content-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 28px;
    margin-bottom: 28px;
}

.single-safari-package .section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #c8963e;
    display: inline-block;
}

/* Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: #fef3e8;
    transform: translateX(5px);
}

.highlight-item i {
    color: #c8963e;
    font-size: 20px;
    margin-top: 2px;
}

.highlight-item span {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

/* Itinerary */
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c8963e;
}

.itinerary-day {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c8963e;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #c8963e;
}

.itinerary-day h3 {
    font-size: 18px;
    font-weight: 700;
    color: #c8963e;
    margin-bottom: 10px;
}

.itinerary-day p {
    color: #6b7280;
    line-height: 1.6;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 32px;
}

/* Includes & Excludes */
.includes-box {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
}

.excludes-box {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.includes-list,
.excludes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li,
.excludes-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.includes-list li:last-child,
.excludes-list li:last-child {
    border-bottom: none;
}

.includes-list i {
    color: #22c55e;
    font-size: 14px;
}

.excludes-list i {
    color: #ef4444;
    font-size: 14px;
}

/* ============================================
   11. BOOKING WIDGET
   ============================================ */
.booking-widget {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.booking-widget .price {
    text-align: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.booking-widget .price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #c8963e;
}

.booking-widget .price-label {
    color: #6b7280;
    font-size: 14px;
}

.booking-form-group {
    margin-bottom: 16px;
}

.booking-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.booking-form-group input,
.booking-form-group textarea,
.booking-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.booking-form-group input:focus,
.booking-form-group textarea:focus,
.booking-form-group select:focus {
    outline: none;
    border-color: #c8963e;
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.1);
}

.submit-booking {
    width: 100%;
    background: #c8963e;
    color: #0a0a0a;
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.submit-booking:hover {
    background: #e0b05e;
    transform: translateY(-2px);
}

.whatsapp-booking {
    display: block;
    text-align: center;
    background: #25D366;
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.whatsapp-booking:hover {
    background: #1fb855;
    transform: translateY(-2px);
    color: #ffffff;
}

.need-help-widget {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 20px;
}

.need-help-widget i {
    font-size: 48px;
    color: #c8963e;
    margin-bottom: 16px;
}

.need-help-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.need-help-widget p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.need-help-widget a {
    color: #c8963e;
    font-weight: 600;
    text-decoration: none;
}

.need-help-widget a:hover {
    text-decoration: underline;
}

/* ============================================
   12. ARCHIVE / PACKAGE GRID
   ============================================ */
.archive-header {
    text-align: center;
    padding: 48px 0 32px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.archive-title {
    font-family: 'Roboto Slab', serif;
    font-size: 42px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.archive-description {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 24px;
    background: #f3f4f6;
    color: #374151;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #c8963e;
    color: #0a0a0a;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 48px;
}

.package-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.package-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #c8963e;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.package-content {
    padding: 20px;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.package-card:hover .package-title {
    color: #c8963e;
}

.package-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.package-meta-item i {
    color: #c8963e;
    font-size: 12px;
}

.package-excerpt {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #c8963e;
}

.price-label {
    font-size: 12px;
    color: #6b7280;
}

.package-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8963e;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.package-link:hover {
    gap: 12px;
}

/* ============================================
   13. PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.page-numbers.current {
    background: #c8963e;
    color: #0a0a0a;
}

.page-numbers:hover:not(.current) {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* ============================================
   14. RELATED PACKAGES
   ============================================ */
.related-packages {
    margin-top: 48px;
}

.related-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card-content {
    padding: 16px;
}

.related-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.related-card-link {
    color: #c8963e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.related-card-link:hover {
    gap: 10px;
}

/* ============================================
   15. PAGE TITLE BANNER
   ============================================ */
.page-title-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
}

.page-title-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-title-banner .container {
    position: relative;
    z-index: 2;
}

.page-title-banner h1,
.page-title-banner .page-title,
.page-title-banner .entry-title {
    color: #ffffff !important;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-title-banner .page-subtitle,
.page-title-banner .archive-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.page-title-banner .breadcrumbs {
    color: #ffffff !important;
}

.page-title-banner .breadcrumbs a {
    color: #ffffff !important;
}

.page-title-banner .breadcrumbs a:hover {
    color: #c8963e !important;
}

.page-title-banner .breadcrumbs .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   16. ANIMATIONS
   ============================================ */
@keyframes float-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-card,
.content-section,
.booking-widget {
    animation: fadeInUp 0.6s ease forwards;
}

.package-card:nth-child(1) {
    animation-delay: 0.1s;
}
.package-card:nth-child(2) {
    animation-delay: 0.2s;
}
.package-card:nth-child(3) {
    animation-delay: 0.3s;
}
.package-card:nth-child(4) {
    animation-delay: 0.4s;
}
.package-card:nth-child(5) {
    animation-delay: 0.5s;
}
.package-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ============================================
   17. BOOKING ALERT
   ============================================ */
.booking-alert {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.booking-alert.success {
    background: #f0fdf4;
    color: #166534;
    border-left: 3px solid #22c55e;
}

.booking-alert.error {
    background: #fef2f2;
    color: #991b1b;
    border-left: 3px solid #ef4444;
}

/* ============================================
   18. SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #c8963e;
    border-radius: 4px;
}

.flip-card-back::-webkit-scrollbar,
.flip-card-front::-webkit-scrollbar {
    width: 4px;
}

.flip-card-back::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* ============================================
   19. RESPONSIVE STYLES
   ============================================ */
@media (min-width: 1280px) {
    .nav-menu > li > a {
        padding: 18px 14px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .single-safari-package .package-title {
        font-size: 36px;
    }
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    .hero-slide-content {
        bottom: 15%;
        right: 5%;
        left: auto;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 55vh;
        min-height: 320px;
    }
    .hero-slide-content {
        bottom: 10%;
        right: 5%;
        left: 5%;
        text-align: center;
        max-width: none;
    }
    .hero-slider-nav {
        bottom: 15px;
    }
    .hero-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .hero-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .single-safari-package .hero-section {
        min-height: 350px;
    }
    .single-safari-package .package-title {
        font-size: 28px;
    }
    .single-safari-package .package-meta {
        gap: 12px;
    }
    .single-safari-package .content-section {
        padding: 20px;
    }
    .single-safari-package .section-title {
        font-size: 22px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
    .archive-title {
        font-size: 32px;
    }
    .category-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    .booking-widget {
        position: static;
        margin-top: 30px;
    }

    .brand-logo-link img,
    .custom-logo {
        max-height: 40px;
    }

    .page-title-banner {
        padding: 50px 0;
    }
    .page-title-banner h1,
    .page-title-banner .page-title,
    .page-title-banner .entry-title {
        font-size: 32px;
    }
    .inner-page-hero h1 {
        font-size: 28px;
    }
    .inner-page-hero p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .single-safari-package .hero-section {
        min-height: 300px;
        padding: 40px 0;
    }
    .single-safari-package .package-meta {
        flex-direction: column;
        gap: 8px;
    }
    .includes-excludes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .package-image {
        height: 200px;
    }
    .package-content {
        padding: 16px;
    }
    .package-title {
        font-size: 18px;
    }
    .card-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .staff-card .staff-img-wrap img {
        height: 280px;
    }
    .page-title-banner {
        padding: 40px 0;
    }
    .page-title-banner h1,
    .page-title-banner .page-title,
    .page-title-banner .entry-title {
        font-size: 24px;
    }
    .page-title-banner .breadcrumbs {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 350px;
    }
    .hero-slide-content h2 {
        font-size: 20px;
    }
    .hero-slide-content .tagline {
        font-size: 9px;
        letter-spacing: 2px;
    }
    .hero-dots {
        gap: 6px;
    }
    .hero-dot {
        width: 6px;
        height: 6px;
    }
}

/* ============================================
   20. PRINT STYLES
   ============================================ */
@media print {
    .booking-widget,
    .related-packages,
    .category-filters,
    .pagination {
        display: none;
    }
    .single-safari-package .hero-section {
        height: auto;
        position: relative;
    }
    .single-safari-package .hero-overlay {
        background: none;
    }
    .single-safari-package .package-title {
        color: #0a0a0a;
        text-shadow: none;
    }
    .single-safari-package .package-meta {
        color: #6b7280;
    }
}
/* ============================================
   RESPONSIVE SAFETY NET FOR SMALL/OLDER PHONES
   ============================================
   Several grids use minmax(350px, 1fr) etc, which is fine on modern phones
   (390px+) but can be tight-to-overflowing on smaller/older devices (320-360px
   wide). This forces a genuinely safe minimum on very small screens without
   changing the look on anything larger. */
@media (max-width: 400px) {
    .container, .site-container, .wrap {
        padding-left: 14px;
        padding-right: 14px;
    }
    .highlights-grid,
    .gallery-grid,
    .packages-grid {
        grid-template-columns: 1fr !important;
    }
}
