/* ====================================
   MAIN.CSS - COMPLETE FILE
   Safari Tourism Website
   ==================================== */

/* --- COMPLEX CSS VARIABLES --- */
:root {
    --primary: #be430a !important;
    --primary-hover: #9A7209;
    --secondary: #1A1A1A;
    --accent: #C0392B;
    --text-main: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --off-white: #F9F9F9;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --primary-rgb: 184, 134, 11;
    
    /* Height variables */
    --top-bar-height: 44px;
    --header-height: 90px;
    --header-height-mobile: 70px;
    --admin-bar-height: 32px;
    --admin-bar-height-mobile: 46px;
}

/* --- RESET & GLOBAL --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* ====================================
   POPULAR SAFARIS SECTION STYLES
   ==================================== */

.popular-safaris-section {
    padding: 80px 0;
    background: #ffffff;
}

.popular-safaris-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.popular-safaris-section .sub-title {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C48C11;
    margin-bottom: 15px;
}

.popular-safaris-section .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b3e0a;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

/* Desktop Grid - 2 columns */
.popular-safaris-desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Slider - Hidden on desktop */
.popular-safaris-mobile-slider {
    display: none;
}

/* ====================================
   ONE DAY TRIP SAFARIS SECTION STYLES
   ==================================== */

.one-day-trip-section {
    padding: 80px 0;
    background: #ffffff;
}

.one-day-trip-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.one-day-trip-section .sub-title {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C48C11;
    margin-bottom: 15px;
}

.one-day-trip-section .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b3e0a;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.one-day-trip-section .main-text {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Desktop Grid - 2 columns */
.day-trip-desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Slider - Hidden on desktop */
.day-trip-mobile-slider {
    display: none;
}

/* Package Card - Horizontal Layout */
.day-trip-card {
    background: #ffffff;
    border: 1px solid #ebe6de;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: row;
    height: 100%;
    min-height: 240px;
}

.day-trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Package Image */
.day-trip-image {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.day-trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.day-trip-card:hover .day-trip-image img {
    transform: scale(1.05);
}

/* Package Content */
.day-trip-content {
    width: 55%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Duration Text */
.day-trip-duration {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C48C11;
    margin-bottom: 10px;
}

/* Package Title */
.day-trip-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
}

/* Description */
.day-trip-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Package Actions - Buttons on one row */
.day-trip-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: auto;
}

/* View Safari Button */
.day-trip-view-safari {
    display: inline-block;
    background-color: #C48C11;
    color: #ffffff;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.day-trip-view-safari:hover {
    background-color: #3D2618;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Enquire Now Button */
.day-trip-enquire-btn {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.65rem;
    background: #105751;
    color: #fff;
    padding: 8px 16px 8px 38px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-out;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.day-trip-enquire-btn:before {
    border-bottom: 32px solid transparent;
    border-left: 24px solid #fff;
    content: "";
    left: -2px;
    position: absolute;
    top: -1px;
    z-index: 2;
}

.day-trip-enquire-btn:hover {
    background: #0e4642;
    color: #fff;
}

/* Slider Navigation */
.day-trip-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.day-trip-slider-prev,
.day-trip-slider-next {
    position: absolute;
    pointer-events: auto;
    background: #ffffff;
    border: 1px solid #ebe6de;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C48C11;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.day-trip-slider-prev {
    left: -20px;
}

.day-trip-slider-next {
    right: -20px;
}

.day-trip-slider-prev:hover,
.day-trip-slider-next:hover {
    background: #C48C11;
    color: #ffffff;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .day-trip-desktop-grid {
        gap: 25px;
    }
    
    .day-trip-content {
        padding: 20px;
    }
    
    .day-trip-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .one-day-trip-section {
        padding: 60px 0;
    }
    
    .one-day-trip-section .main-title {
        font-size: 2rem;
    }
    
    /* Hide desktop grid, show mobile slider */
    .day-trip-desktop-grid {
        display: none;
    }
    
    .day-trip-mobile-slider {
        display: block;
        position: relative;
        padding: 0 30px;
    }
    
    .day-trip-card {
        min-height: 220px;
        margin: 10px 0;
    }
    
    .day-trip-image {
        width: 40%;
    }
    
    .day-trip-content {
        width: 60%;
        padding: 18px;
    }
    
    .day-trip-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .day-trip-duration {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .day-trip-description {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .day-trip-slider-nav {
        display: block;
    }
    
    .day-trip-slider-prev,
    .day-trip-slider-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .day-trip-slider-prev {
        left: -15px;
    }
    
    .day-trip-slider-next {
        right: -15px;
    }
    
    .day-trip-view-safari {
        padding: 6px 12px;
        font-size: 0.6rem;
    }
    
    .day-trip-enquire-btn {
        padding: 6px 10px 6px 28px;
        font-size: 0.55rem;
    }
    
    .day-trip-enquire-btn:before {
        border-bottom: 24px solid transparent;
        border-left: 18px solid #fff;
    }
}

@media (max-width: 576px) {
    .one-day-trip-section {
        padding: 50px 0;
    }
    
    .one-day-trip-section .main-title {
        font-size: 1.8rem;
    }
    
    .day-trip-mobile-slider {
        padding: 0 20px;
    }
    
    .day-trip-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .day-trip-image {
        width: 100%;
        height: 200px;
        position: relative;
    }
    
    .day-trip-image img {
        position: relative;
    }
    
    .day-trip-content {
        width: 100%;
        padding: 20px;
    }
    
    .day-trip-title {
        font-size: 1.3rem;
    }
    
    .day-trip-actions {
        flex-wrap: wrap;
    }
    
    .day-trip-view-safari {
        padding: 8px 18px;
        font-size: 0.7rem;
    }
    
    .day-trip-enquire-btn {
        padding: 8px 14px 8px 36px;
        font-size: 0.65rem;
    }
    
    .day-trip-enquire-btn:before {
        border-bottom: 30px solid transparent;
        border-left: 22px solid #fff;
    }
}

/* Package Card */
.popular-package-card {
    background: #ffffff;
    border: 1px solid #ebe6de;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: row;
    height: 100%;
    min-height: 240px;
}

.popular-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.popular-package-image {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.popular-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.popular-package-card:hover .popular-package-image img {
    transform: scale(1.05);
}

.popular-package-content {
    width: 55%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popular-package-duration {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C48C11;
    margin-bottom: 10px;
}

.popular-package-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
}

.popular-package-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.popular-package-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: auto;
}

.popular-view-safari {
    display: inline-block;
    background-color: #C48C11;
    color: #ffffff;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.popular-view-safari:hover {
    background-color: #3D2618;
    color: #ffffff;
    transform: translateY(-2px);
}

.popular-enquire-btn {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.65rem;
    background: #105751;
    color: #fff;
    padding: 8px 16px 8px 38px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-out;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.popular-enquire-btn:before {
    border-bottom: 32px solid transparent;
    border-left: 24px solid #fff;
    content: "";
    left: -2px;
    position: absolute;
    top: -1px;
    z-index: 2;
}

.popular-enquire-btn:hover {
    background: #0e4642;
    color: #fff;
}

/* Slider Navigation */
.popular-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.popular-slider-prev,
.popular-slider-next {
    position: absolute;
    pointer-events: auto;
    background: #ffffff;
    border: 1px solid #ebe6de;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C48C11;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popular-slider-prev {
    left: -20px;
}

.popular-slider-next {
    right: -20px;
}

.popular-slider-prev:hover,
.popular-slider-next:hover {
    background: #C48C11;
    color: #ffffff;
    transform: scale(1.05);
}

/* ====================================
   BEST KENYA TANZANIA SECTION STYLES
   ==================================== */

.best-kenya-tanzania-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.best-kenya-tanzania-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.best-kenya-tanzania-section .sub-title {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #C48C11;
    margin-bottom: 15px;
}

.best-kenya-tanzania-section .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b3e0a;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.best-kenya-tanzania-section .main-text {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Desktop Grid - 2 columns, 2 rows */
.best-kenya-tanzania-desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Slider - Hidden on desktop */
.best-kenya-tanzania-mobile-slider {
    display: none;
}

/* Package Card */
.best-package-card {
    background: #ffffff;
    border: 1px solid #ebe6de;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: row;
    height: 100%;
    min-height: 240px;
}

.best-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.best-package-image {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.best-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.best-package-card:hover .best-package-image img {
    transform: scale(1.05);
}

.best-package-content {
    width: 55%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.best-package-duration {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #C48C11;
    margin-bottom: 10px;
}

.best-package-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
}

.best-package-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.best-package-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: auto;
}

.best-view-safari {
    display: inline-block;
    background-color: #C48C11;
    color: #ffffff;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.best-view-safari:hover {
    background-color: #3D2618;
    color: #ffffff;
    transform: translateY(-2px);
}

.best-enquire-btn {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.65rem;
    background: #105751;
    color: #fff;
    padding: 8px 16px 8px 38px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-out;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.best-enquire-btn:before {
    border-bottom: 32px solid transparent;
    border-left: 24px solid #fff;
    content: "";
    left: -2px;
    position: absolute;
    top: -1px;
    z-index: 2;
}

.best-enquire-btn:hover {
    background: #0e4642;
    color: #fff;
}

/* Slider Navigation */
.best-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.best-slider-prev,
.best-slider-next {
    position: absolute;
    pointer-events: auto;
    background: #ffffff;
    border: 1px solid #ebe6de;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C48C11;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.best-slider-prev {
    left: -20px;
}

.best-slider-next {
    right: -20px;
}

.best-slider-prev:hover,
.best-slider-next:hover {
    background: #C48C11;
    color: #ffffff;
    transform: scale(1.05);
}

/* Owl Carousel Dots */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #C48C11;
    width: 25px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .popular-safaris-desktop-grid,
    .best-kenya-tanzania-desktop-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .popular-safaris-section,
    .best-kenya-tanzania-section {
        padding: 60px 0;
    }
    
    .popular-safaris-section .main-title,
    .best-kenya-tanzania-section .main-title {
        font-size: 2rem;
    }
    
    /* Hide desktop grid, show mobile slider */
    .popular-safaris-desktop-grid,
    .best-kenya-tanzania-desktop-grid {
        display: none;
    }
    
    .popular-safaris-mobile-slider,
    .best-kenya-tanzania-mobile-slider {
        display: block;
        position: relative;
        padding: 0 30px;
    }
    
    .popular-package-card,
    .best-package-card {
        min-height: 220px;
        margin: 10px 0;
    }
    
    .popular-package-image,
    .best-package-image {
        width: 40%;
    }
    
    .popular-package-content,
    .best-package-content {
        width: 60%;
        padding: 18px;
    }
    
    .popular-package-title,
    .best-package-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .popular-package-duration,
    .best-package-duration {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .popular-package-description,
    .best-package-description {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .popular-slider-nav,
    .best-slider-nav {
        display: block;
    }
    
    .popular-slider-prev,
    .popular-slider-next,
    .best-slider-prev,
    .best-slider-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .popular-slider-prev,
    .best-slider-prev {
        left: -15px;
    }
    
    .popular-slider-next,
    .best-slider-next {
        right: -15px;
    }
}

@media (max-width: 576px) {
    .popular-safaris-section,
    .best-kenya-tanzania-section {
        padding: 50px 0;
    }
    
    .popular-safaris-section .main-title,
    .best-kenya-tanzania-section .main-title {
        font-size: 1.8rem;
    }
    
    .popular-safaris-mobile-slider,
    .best-kenya-tanzania-mobile-slider {
        padding: 0 20px;
    }
    
    .popular-package-card,
    .best-package-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .popular-package-image,
    .best-package-image {
        width: 100%;
        height: 200px;
        position: relative;
    }
    
    .popular-package-image img,
    .best-package-image img {
        position: relative;
    }
    
    .popular-package-content,
    .best-package-content {
        width: 100%;
        padding: 20px;
    }
    
    .popular-package-title,
    .best-package-title {
        font-size: 1.3rem;
    }
    
    .popular-package-actions,
    .best-package-actions {
        flex-wrap: wrap;
    }
}
/* --- HERO BUTTONS - FIXED FOR MOBILE --- */
.hero-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 0;
    flex-wrap: nowrap; /* Force single line */
    width: 100%;
}

.hero-buttons .btn {
    flex: 1 1 auto; /* Allow buttons to shrink */
    min-width: 0; /* Prevent flex items from overflowing */
    white-space: nowrap; /* Keep text on one line */
    padding: 14px 20px; /* Reduced horizontal padding */
    font-size: 0.9rem;
}

/* Tablet Landscape */
@media (max-width: 991px) {
    .hero-buttons .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hero-buttons {
        gap: 8px;
        margin-top: 20px;
    }
    
    .hero-buttons .btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-buttons {
        gap: 6px;
        margin-top: 15px;
    }
    
    .hero-buttons .btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero-buttons .btn {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
}

/* Very Small Mobile */
@media (max-width: 320px) {
    .hero-buttons .btn {
        padding: 5px 6px;
        font-size: 0.65rem;
    }
}
html { 
    margin-top: 0 !important; 
}

body.admin-bar { 
    margin-top: 0 !important; 
    padding-top: 0 !important; 
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition); 
}

ul { 
    list-style: none; 
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section { 
    padding: 100px 0; 
    position: relative; 
}

.bg-light { 
    background-color: var(--off-white); 
}

.bg-dark { 
    background-color: var(--secondary); 
    color: var(--white); 
}

/* --- TYPOGRAPHY UTILITIES --- */
.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.sub-title {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.main-title { 
    font-size: 3rem; 
    margin-bottom: 20px; 
}

.main-text { 
    max-width: 700px; 
    margin: 0 auto; 
    color: var(--text-light); 
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* --- TOP BAR --- */
.top-bar {
    background-color: #105751 !important;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1002;
    height: var(--top-bar-height);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-info span { 
    margin-right: 20px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
}

.top-info i { 
    color: var(--primary); 
}

/* Language Translator Styling */
.lang-wrapper {
    position: relative;
    display: inline-block;
}

.lang-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 5px 30px 5px 10px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.lang-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    pointer-events: none;
    font-size: 0.7rem;
}

.lang-select option { 
    color: #333; 
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary);
}

.top-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* --- WORDPRESS ADMIN BAR FIXES --- */
#wpadminbar {
    z-index: 999999 !important;
}

body.admin-bar .top-bar {
    position: relative;
    top: var(--admin-bar-height);
}

body.admin-bar .main-header {
    top: calc(var(--top-bar-height) + var(--admin-bar-height)) !important;
}

body.admin-bar .main-header.scrolled {
    top: var(--admin-bar-height) !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .top-bar {
        top: var(--admin-bar-height-mobile);
    }
    
    body.admin-bar .main-header {
        top: calc(var(--top-bar-height) + var(--admin-bar-height-mobile)) !important;
    }
    
    body.admin-bar .main-header.scrolled {
        top: var(--admin-bar-height-mobile) !important;
    }
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: absolute !important;
    }
    
    body.admin-bar .main-header {
        top: var(--top-bar-height) !important;
    }
}

/* --- HEADER - FIXED --- */
.main-header {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: var(--header-height);
}

.main-header.scrolled { 
    top: 0; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* --- FIXED LOGO STYLES --- */
.logo {
    display: flex;
    align-items: center;
    height: var(--header-height);
    max-width: 250px;
    padding: 5px 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -1px;
    line-height: 1.2;
    white-space: nowrap;
}

/* Text logo styling */
.logo .site-title {
    display: inline-block;
    color: var(--secondary);
}

.logo .site-title span { 
    color: var(--primary);
    margin-left: 5px;
}

/* Image logo styling - FIXED */
.logo .header-logo {
    max-height: 70px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* --- ACCESSIBILITY PANEL --- */
.a11y-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9998;
    transition: transform 0.3s;
}

.a11y-trigger:hover { 
    transform: rotate(90deg) scale(1.1); 
}

.a11y-panel {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 280px;
    background: var(--white);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 20px;
    z-index: 9997;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.a11y-panel.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.a11y-title {
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.a11y-close { 
    cursor: pointer; 
    font-size: 1.2rem; 
}

.a11y-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.a11y-btn-sm {
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.a11y-btn-sm:hover { 
    background: #e0e0e0; 
}

/* --- DROPDOWN MENU STYLES --- */
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav > li {
    position: relative;
    margin: 0 5px;
}

.navbar-nav > li > a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav > li > a:hover {
    color: #007bff;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.navbar-nav > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu (3rd level) */
.navbar-nav .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    transform: translateX(10px);
}

.navbar-nav .dropdown-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Dropdown items */
.navbar-nav .dropdown-menu li {
    position: relative;
}

.navbar-nav .dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.navbar-nav .dropdown-menu a:hover {
    background: #f8f9fa;
    color: #007bff;
}

/* Dropdown arrows */
.navbar-nav .menu-item-has-children > a {
    position: relative;
    padding-right: 25px;
}

.navbar-nav .menu-item-has-children > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-menu .menu-item-has-children > a:after {
    content: '\f105';
}

/* Desktop hover intent */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        display: block !important;
    }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: calc(var(--top-bar-height) + var(--header-height));
}

body.admin-bar .hero {
    padding-top: calc(var(--top-bar-height) + var(--header-height) + var(--admin-bar-height));
}

@media screen and (max-width: 782px) {
    body.admin-bar .hero {
        padding-top: calc(var(--top-bar-height) + var(--header-height) + var(--admin-bar-height-mobile));
    }
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-family: var(--font-heading);
}

.hero p { 
    font-size: 1.3rem; 
    margin-bottom: 40px; 
    opacity: 0.9; 
    font-weight: 300; 
}

/* --- HERO BUTTONS - FIXED FOR MOBILE --- */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

/* --- BOUNCING SCROLL ARROW - IMPROVED --- */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow i {
    color: var(--white);
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* --- BOOKING WIDGET --- */
.booking-widget {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    margin-top: 40px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group select, 
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    color: var(--text-main);
}

.form-group input:focus { 
    border-color: var(--primary); 
    outline: none; 
}

/* --- FEATURED PACKAGES --- */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex; 
    flex-direction: column;
}

.package-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-lg); 
}

.pkg-thumb { 
    position: relative; 
    height: 250px; 
    overflow: hidden; 
}

.pkg-thumb img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 1s; 
}

.package-card:hover .pkg-thumb img { 
    transform: scale(1.1); 
}

.pkg-overlay {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: var(--white);
    display: flex; 
    justify-content: space-between;
}

.pkg-content { 
    padding: 25px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.pkg-meta {
    display: flex; 
    gap: 15px; 
    margin-bottom: 15px; 
    font-size: 0.85rem; 
    color: var(--text-light);
}

.pkg-meta i { 
    color: var(--primary); 
    margin-right: 5px; 
}

.pkg-price {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.price-tag { 
    color: var(--primary); 
    font-weight: 700; 
    font-size: 1.4rem; 
    font-family: var(--font-heading); 
}

/* --- INTERACTIVE ITINERARY --- */
.itinerary-section {
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(#f9f9f9, #eeeeee);
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
}

.tab-btn.active, 
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-content { 
    display: none; 
    animation: fadeIn 0.5s; 
}

.tab-content.active { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
}

.day-number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.day-content { 
    position: relative; 
    z-index: 1; 
    padding-left: 20px; 
    border-left: 3px solid var(--primary); 
}

.day-content h3 { 
    font-size: 2rem; 
    margin-bottom: 15px; 
}

.tab-img img { 
    border-radius: 8px; 
    box-shadow: var(--shadow-lg); 
}

/* --- STATS SECTION --- */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)), url('../images/stats-bg.jpg') center/cover fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-leather.png');
    opacity: 0.3;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .section-header {
    margin-bottom: 60px;
}

.stats-section .main-title {
    color: var(--white);
}

.stats-section .main-text {
    color: rgba(255,255,255,0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-item:hover::before {
    transform: translateX(0);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.stat-item:hover .stat-label {
    color: var(--white);
}

/* --- PARTNERS SECTION --- */
.partners-section {
    background: var(--off-white);
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/light-paper-fibers.png');
    opacity: 0.5;
    z-index: 0;
}

.partners-section .container {
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    background: var(--white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(var(--primary-rgb), 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    object-fit: contain;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* --- CONTACT SECTION --- */
.contact-section {
    background: var(--white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.03;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23ffffff" fill-opacity="0.05" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: 200px;
    transform: rotate(15deg);
    z-index: 0;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.contact-info > p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-item:hover .info-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.info-details {
    flex: 1;
}

.info-details strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

.info-details p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-social .social-icons {
    display: flex;
    gap: 12px;
}

.contact-social .social-icons a {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social .social-icons a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--white);
}

.contact-form-box {
    padding: 60px;
    background: var(--white);
}

.contact-form-box h3 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.contact-form-box h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-form-box > p {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm input[type="date"],
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

#contactForm textarea {
    resize: vertical;
    min-height: 150px;
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: #888;
    padding: 80px 0 20px;
    border-top: 5px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li { 
    margin-bottom: 15px; 
}

.footer-col ul li a { 
    transition: 0.3s; 
    display: block; 
}

.footer-col ul li a:hover { 
    color: var(--primary); 
    padding-left: 5px; 
}

.newsletter input {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #222;
}

/* --- MENU OVERLAY --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====================================
   MOBILE RESPONSIVE STYLES
   ==================================== */

/* Large Desktop */
@media (min-width: 1280px) {
    .logo .header-logo {
        max-width: 250px;
    }
}

/* Tablet Landscape */
@media (max-width: 991px) {
    :root {
        --header-height: 70px;
    }
    
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero h1 { 
        font-size: 3rem; 
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .scroll-arrow {
        bottom: 20px;
        width: 36px;
        height: 36px;
    }
    
    .scroll-arrow i {
        font-size: 1rem;
    }
    
    .booking-form { 
        grid-template-columns: 1fr; 
    }
    
    .package-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .tab-content.active { 
        grid-template-columns: 1fr; 
    }
    
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .partners-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
    
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .mobile-toggle { 
        display: flex; 
    }
    
    .logo {
        font-size: 1.5rem;
        max-width: 200px;
    }
    
    .logo .header-logo {
        max-height: 50px;
        max-width: 180px;
    }
    
    /* Mobile Menu Styles */
    .navbar-nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 999;
    }
    
    .navbar-nav.show {
        left: 0;
    }
    
    .navbar-nav > li {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }
    
    /* Mobile dropdown */
    .navbar-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navbar-nav .dropdown-menu.show {
        max-height: 500px;
    }
    
    .navbar-nav .menu-item-has-children > a:after {
        transform: translateY(-50%) rotate(0deg);
    }
    
    .navbar-nav .menu-item-has-children.active > a:after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    :root {
        --top-bar-height: 0px;
    }
    
    .hero {
        min-height: 70vh;
        padding-top: calc(var(--header-height) + 20px);
    }
    
    body.admin-bar .hero {
        padding-top: calc(var(--header-height) + var(--admin-bar-height-mobile) + 20px);
    }
    
    .hero h1 { 
        font-size: 2.5rem; 
        margin-bottom: 15px;
    }
    
    .hero p { 
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .scroll-arrow {
        bottom: 15px;
        width: 32px;
        height: 32px;
    }
    
    .section { 
        padding: 60px 0; 
    }
    
    .main-title { 
        font-size: 2rem; 
    }
    
    .package-grid { 
        grid-template-columns: 1fr; 
    }
    
    .stats-grid { 
        grid-template-columns: 1fr; 
    }
    
    .partners-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
    
    .contact-info,
    .contact-form-box {
        padding: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        padding: 20px;
    }
    
    .tab-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .logo .header-logo {
        max-height: 45px;
        max-width: 160px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        min-height: 60vh;
        padding-top: calc(var(--header-height) + 15px);
    }
    
    .hero h1 { 
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .hero p { 
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-buttons {
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 0;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .scroll-arrow {
        bottom: 10px;
        width: 28px;
        height: 28px;
    }
    
    .scroll-arrow i {
        font-size: 0.9rem;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }
    
    .section { 
        padding: 40px 0; 
    }
    
    .top-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .top-info span {
        margin-right: 0;
    }
    
    .top-right {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-logo {
        height: 80px;
        padding: 15px;
    }
    
    .partner-logo img {
        max-height: 45px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .contact-info,
    .contact-form-box {
        padding: 30px 20px;
    }
    
    .contact-info h3,
    .contact-form-box h3 {
        font-size: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .contact-social .social-icons {
        justify-content: center;
    }
    
    .logo {
        font-size: 1.3rem;
        max-width: 160px;
    }
    
    .logo .header-logo {
        max-height: 40px;
        max-width: 140px;
    }
    
    .mobile-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero {
        min-height: 55vh;
    }
    
    .hero h1 { 
        font-size: 1.8rem;
    }
    
    .hero p { 
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        gap: 8px;
        margin-top: 10px;
    }
    
    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        bottom: 8px;
        width: 24px;
        height: 24px;
    }
    
    .scroll-arrow i {
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.1rem;
        max-width: 140px;
    }
    
    .logo .header-logo {
        max-height: 35px;
        max-width: 120px;
    }
    
    .mobile-toggle {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Very Small Mobile */
@media (max-width: 320px) {
    .hero {
        min-height: 50vh;
    }
    
    .hero h1 { 
        font-size: 1.5rem;
    }
    
    .hero p { 
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .hero-buttons .btn {
        flex: 1;
        padding: 6px 8px;
        font-size: 0.7rem;
        text-align: center;
        white-space: nowrap;
    }
    
    .scroll-arrow {
        bottom: 5px;
        width: 22px;
        height: 22px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .logo .header-logo {
        max-height: 30px;
        max-width: 100px;
    }
}

/* ====================================
   SINGLE SAFARI PACKAGE STYLES
   ==================================== */

/* Package Header */
.package-header {
    background: #bc430a;
    padding: 100px 0 80px;
    margin-top: calc(var(--top-bar-height) + var(--header-height));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-stripes-light.png');
    opacity: 0.1;
    z-index: 0;
}

.package-header .container {
    position: relative;
    z-index: 1;
}

.package-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: var(--font-heading);
}

body.admin-bar .package-header {
    margin-top: calc(var(--top-bar-height) + var(--header-height) + var(--admin-bar-height));
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

/* Style for all-caps paragraphs */
.all-caps-paragraph {
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

/* Optional: Different styling for different types */
.all-caps-paragraph.small-text {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.all-caps-paragraph.large-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.package-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.package-meta-item i {
    color: #ffff !important;
    font-size: 1.1rem;
}

/* Section Padding */
.section-padding {
    padding: 0px 0;
    background: var(--white);
}

/* Gallery Styles */
.package-gallery {
    margin-bottom: 50px;
}

.package-gallery h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.package-gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    transition: all 0.3s ease;
    background: rgba(var(--primary-rgb), 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Package Description */
.package-description {
    margin-bottom: 50px;
}

.package-description h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.package-description h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.package-description p {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Package Highlights */
.package-highlights {
    margin-bottom: 50px;
    background: var(--off-white);
    padding: 40px;
    border-radius: 12px;
}

.package-highlights h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

/* Season Pricing Info */
.season-pricing-info {
    background: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    border: 1px solid #eee;
}

.season-pricing-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.season-pricing-info h3 i {
    color: var(--primary);
}

.season-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.season-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.season-card.high {
    border-left-color: #e67e22;
}

.season-card.shoulder {
    border-left-color: #3498db;
}

.season-card.low {
    border-left-color: #27ae60;
}

.season-name {
    display: block;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.season-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.season-months {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Tabs Container */
.tab-container {
    margin-top: 50px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
}

.tab-buttons {
    display: flex;
    background: var(--off-white);
    border-bottom: 1px solid #eee;
    padding: 5px;
}

.tab-btn {
    flex: 1;
    padding: 18px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.tab-btn.active {
    color: var(--primary);
    background: var(--white);
}

.tab-btn.active::before {
    width: 50px;
}

.tab-pane {
    display: none;
    padding: 40px;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Itinerary Day */
.itinerary-day {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.itinerary-day:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.itinerary-day:last-child {
    margin-bottom: 0;
}

.itinerary-day h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.itinerary-day h4::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1rem;
}

.itinerary-day p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Included/Excluded Lists */
.included-box,
.excluded-box {
    padding: 30px;
    background: var(--off-white);
    border-radius: 8px;
}

.included-box h3,
.excluded-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 4px;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.included-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.included-list li i {
    color: var(--primary);
    font-size: 1rem;
}

.included-list.excluded-list li i {
    color: #e74c3c;
}

.text-muted {
    color: var(--text-light);
    font-style: italic;
}

/* Package Sidebar */
.package-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #eee;
}

body.admin-bar .package-sidebar {
    top: calc(var(--header-height) + var(--admin-bar-height) + 30px);
}

.package-price-box {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #eee;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.price-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 5px;
}

.season-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-main);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    width: 20px;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Sidebar Booking Form */
.package-sidebar h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-align: center;
}

.booking-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.booking-form-sidebar input,
.booking-form-sidebar select,
.booking-form-sidebar textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form-sidebar input:focus,
.booking-form-sidebar select:focus,
.booking-form-sidebar textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.booking-form-sidebar button[type="submit"] {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-size: 1rem;
}

.booking-form-sidebar button[type="submit"]:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.sidebar-contact-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.sidebar-contact-info p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.sidebar-contact-info i {
    color: var(--primary);
    margin-right: 8px;
    width: 20px;
}

/* Related Packages */
.related-packages {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.related-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 0;
}

.related-packages .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Safari Grid for Related Packages */
.safari-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.safari-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.safari-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.safari-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.safari-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.safari-card:hover .safari-image::after {
    opacity: 1;
}

.safari-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.safari-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.safari-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.safari-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.safari-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.safari-meta i {
    color: var(--primary);
}

.safari-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.safari-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.safari-btns {
    display: flex;
    gap: 10px;
}

.btn-full {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-full:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

/* Lightbox Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.close-modal:hover {
    transform: rotate(90deg);
    background: rgba(255,255,255,0.2);
}

#lightboxImage {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

/* ====================================
   PAGE HEADER STYLES
   ==================================== */

.page-header {
    background: #bc430a;
    padding: 80px 0;
    margin-top: calc(var(--top-bar-height) + var(--header-height));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-stripes-light.png');
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: var(--font-heading);
}

.page-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-family: var(--font-body);
}

body.admin-bar .page-header {
    margin-top: calc(var(--top-bar-height) + var(--header-height) + var(--admin-bar-height));
}

@media screen and (max-width: 782px) {
    body.admin-bar .page-header {
        margin-top: calc(var(--top-bar-height) + var(--header-height) + var(--admin-bar-height-mobile));
    }
}

/* ====================================
   MAIN CONTENT AREA
   ==================================== */

.site-main {
    padding: 80px 0;
    background: var(--white);
}

.page-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Main Content Styles */
.page-main-content {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

/* Featured Image */
.featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 8px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

/* Entry Content */
.entry-content {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.1rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    margin: 1.5em 0 0.75em;
    font-weight: 700;
    line-height: 1.3;
}

.entry-content h1 { font-size: 2.5rem; }
.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.75rem; }
.entry-content h4 { font-size: 1.5rem; }
.entry-content h5 { font-size: 1.25rem; }
.entry-content h6 { font-size: 1.1rem; }

.entry-content p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: var(--primary-hover);
    text-decoration-thickness: 2px;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.5em 1.5em;
    padding: 0;
}

.entry-content li {
    margin-bottom: 0.5em;
    line-height: 1.8;
}

.entry-content ul li {
    list-style-type: disc;
}

.entry-content ol li {
    list-style-type: decimal;
}

.entry-content blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    background: var(--off-white);
    border-left: 4px solid var(--primary);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    border-radius: 0 8px 8px 0;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content table {
    width: 100%;
    margin: 1.5em 0;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.entry-content th {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
}

.entry-content td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.entry-content tr:last-child td {
    border-bottom: none;
}

.entry-content tr:nth-child(even) {
    background: var(--off-white);
}

/* Page Links */
.page-links {
    clear: both;
    margin: 2em 0;
    padding: 1em 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.page-links .post-page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    background: var(--off-white);
    color: var(--text-main);
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links .post-page-numbers.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-links .post-page-numbers:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Entry Footer */
.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.edit-link {
    text-align: right;
}

.btn-edit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--off-white);
    color: var(--text-main);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-edit i {
    font-size: 1rem;
}

.btn-edit:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Comments Area */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    color: var(--secondary);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.comment {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.comment .comment {
    margin-left: 50px;
    background: var(--white);
    border-left-color: var(--primary-hover);
}

.comment-meta {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.comment-author .fn {
    font-weight: 600;
    color: var(--secondary);
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    margin-top: 5px;
    font-size: 0.9rem;
}

.comment-metadata a {
    color: var(--text-light);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--primary);
}

.comment-content {
    line-height: 1.7;
    color: var(--text-main);
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply {
    margin-top: 15px;
    text-align: right;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: var(--white);
    color: var(--text-main);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.comment-respond {
    margin-top: 40px;
    padding: 30px;
    background: var(--off-white);
    border-radius: 8px;
}

.comment-reply-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--secondary);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin: 0;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: 10px;
}

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

/* ====================================
   SIDEBAR STYLES
   ==================================== */

.page-sidebar {
    font-family: var(--font-body);
}

.widget {
    margin-bottom: 40px;
    padding: 25px;
    background: var(--off-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.widget:hover {
    box-shadow: var(--shadow-lg);
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

.widget-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.widget p {
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 15px;
}

.widget p:last-child {
    margin-bottom: 0;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-main);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.widget ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Search Widget */
.widget_search .search-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.widget_search .search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.widget_search .search-field:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.widget_search .search-submit {
    padding: 0 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget_search .search-submit:hover {
    background: var(--primary-hover);
}

/* Recent Posts Widget */
.widget_recent_entries ul li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.widget_recent_entries ul li::before {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Categories Widget */
.widget_categories ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_categories ul li::before {
    content: '\f07b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Tags Widget */
.widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget_tag_cloud .tag-cloud-link {
    padding: 6px 12px;
    background: var(--white);
    color: var(--text-main);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget_tag_cloud .tag-cloud-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Archive Widget */
.widget_archive ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_archive ul li::before {
    content: '\f133';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* ====================================
   SERVICES SECTION
   ==================================== */

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .section-header {
    margin-bottom: 50px;
    text-align: left;
}

.services-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.services-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.services-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover * {
    color: var(--white) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
    transform: rotate(360deg);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-family: var(--font-heading);
    transition: color 0.5s ease;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.service-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.5);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* ====================================
   PORTFOLIO SECTION
   ==================================== */

.portfolio-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.portfolio-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.portfolio-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Best Kenya Tanzania Safaris Section */
.best-kenya-tanzania-section {
    padding: 80px 0;
}

.featured-card {
    position: relative;
}

.pkg-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c49a6c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

.kenya-tanzania-slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.kenya-tanzania-slider .package-card {
    margin: 10px;
}

.btn-primary {
    background: #c49a6c;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #a57c52;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .kenya-tanzania-slider-wrapper {
        padding: 0 30px;
    }
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Slider Navigation Styles */
.package-slider-wrapper {
    position: relative;
    padding: 0 40px;
    margin: 0 -15px;
}

.package-slider .package-card {
    margin: 10px 15px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
    z-index: 10;
}

.slider-prev,
.slider-next {
    position: absolute;
    pointer-events: auto;
    background: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    z-index: 20;
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #c49a6c;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slider-prev:active,
.slider-next:active {
    transform: scale(0.95);
}

/* Owl Carousel Dots Styling */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #c49a6c;
    width: 25px;
    border-radius: 10px;
}

.owl-dot:hover span {
    background: #c49a6c;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .package-slider-wrapper {
        padding: 0 30px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-prev {
        left: -15px;
    }
    
    .slider-next {
        right: -15px;
    }
}

@media (max-width: 576px) {
    .package-slider-wrapper {
        padding: 0 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .slider-prev {
        left: -10px;
    }
    
    .slider-next {
        right: -10px;
    }
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

/* Slider Styles */
.package-slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.package-slider .package-card {
    margin: 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    position: absolute;
    pointer-events: auto;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev {
    left: -20px;
}

.slider-next {
    right: -20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    color: #fff;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.owl-dot.active span {
    background: var(--primary);
}

/* Package Badge */
.pkg-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.portfolio-excerpt {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-excerpt {
    max-height: 100px;
    opacity: 1;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.portfolio-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    border-bottom-color: var(--primary);
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

.portfolio-archive-link {
    text-align: center;
    margin-top: 50px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.4);
}

.no-projects {
    text-align: center;
    padding: 60px;
    background: var(--off-white);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ====================================
   CTA SECTION
   ==================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-stripes-light.png');
    opacity: 0.1;
    animation: slideStripes 20s linear infinite;
}

@keyframes slideStripes {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-cta:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ====================================
   RESPONSIVE STYLES FOR PACKAGE PAGES
   ==================================== */

/* Tablet Landscape */
@media (max-width: 991px) {
    .package-header {
        padding: 80px 0 60px;
    }
    
    .package-header h1 {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .package-meta {
        gap: 15px;
    }
    
    .package-meta-item {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .package-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    body.admin-bar .package-sidebar {
        top: auto;
    }
    
    .safari-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-sidebar {
        order: 2;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .package-header {
        padding: 60px 0 40px;
    }
    
    .package-header h1 {
        font-size: 2.5rem;
    }
    
    .package-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .package-meta-item {
        width: 100%;
        justify-content: center;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .package-gallery h2,
    .package-description h2,
    .package-highlights h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-highlights {
        padding: 25px;
    }
    
    .season-pricing-info {
        padding: 20px;
    }
    
    .season-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        padding: 0;
    }
    
    .tab-btn {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .tab-btn:last-child {
        border-bottom: none;
    }
    
    .tab-pane {
        padding: 25px;
    }
    
    .itinerary-day {
        padding: 20px;
    }
    
    .itinerary-day h4 {
        font-size: 1.2rem;
    }
    
    .included-box,
    .excluded-box {
        padding: 20px;
    }
    
    .package-sidebar {
        padding: 25px;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .related-packages {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .safari-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .safari-image {
        height: 200px;
    }
    
    .safari-content {
        padding: 20px;
    }
    
    .safari-content h3 {
        font-size: 1.3rem;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .package-header h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .package-description p {
        font-size: 1rem;
    }
    
    .package-highlights {
        padding: 20px;
    }
    
    .included-list li {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
    
    .tab-pane {
        padding: 20px;
    }
    
    .itinerary-day {
        padding: 15px;
    }
    
    .itinerary-day h4 {
        font-size: 1.1rem;
    }
    
    .package-features li {
        font-size: 0.95rem;
    }
    
    .booking-form-sidebar input,
    .booking-form-sidebar select {
        padding: 10px 12px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .safari-content h3 {
        font-size: 1.2rem;
    }
    
    .safari-price {
        font-size: 1.4rem;
    }
    
    .btn-full {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .package-header h1 {
        font-size: 1.5rem;
    }
    
    .package-meta-item {
        font-size: 0.85rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .safari-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* ====================================
   ANIMATIONS
   ==================================== */

@keyframes fadeInStats {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInPartners {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(184, 134, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

/* Animation Classes */
.stats-section .fade-in { 
    animation: fadeInStats 0.8s ease-out forwards; 
}

.info-item {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.partner-logo {
    animation: slideInPartners 0.6s ease-out forwards;
    opacity: 0;
}

/* Animation Delays */
.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }

.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partner-logo:nth-child(5) { animation-delay: 0.5s; }

/* Loading States */
.btn-spinner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary.loading {
    animation: pulse 2s infinite;
}

/* ====================================
   PRINT STYLES
   ==================================== */

@media print {
    .top-bar,
    .main-header,
    .a11y-trigger,
    .a11y-panel,
    #wpadminbar,
    .booking-widget,
    .footer-form,
    .menu-overlay,
    .mobile-toggle,
    .package-sidebar,
    .booking-form-sidebar,
    .btn-full,
    .tab-btn,
    .close-modal,
    .modal-overlay,
    .btn-edit,
    .comment-respond,
    .widget_search,
    .btn-nav,
    .btn-cta,
    .portfolio-link,
    .service-link {
        display: none !important;
    }
    
    .page-header,
    .site-main,
    .services-section,
    .portfolio-section,
    .cta-section,
    .package-header,
    .section-padding,
    .related-packages {
        padding: 20px 0;
    }
    
    .page-header,
    .package-header {
        background: none;
        color: #000;
        margin-top: 0;
    }
    
    .page-title,
    .package-header h1 {
        color: #000;
        text-shadow: none;
    }
    
    .entry-content a {
        text-decoration: underline;
        color: #000;
    }
    
    .featured-image img {
        max-width: 100%;
        page-break-inside: avoid;
    }
    
    .portfolio-overlay {
        position: static;
        background: none;
        opacity: 1;
        padding: 10px 0;
    }
    .newsletter-email-input {
    width: 100%;
    padding: 14px 18px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
    .portfolio-overlay * {
        color: #000 !important;
    }
    
    .portfolio-excerpt {
        max-height: none !important;
        opacity: 1 !important;
    }
    
    .service-card {
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }
    
    .service-card * {
        color: #000 !important;
    }
    
    .service-icon {
        background: none;
    }
    
    .service-icon i {
        color: #000 !important;
    }
    
    .gallery-grid {
        page-break-inside: avoid;
    }
    
    .tab-pane {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .tab-buttons {
        display: none;
    }
}
