/* ============================================
   Safari Nyota - Custom Theme Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Theme Colors (from logo) */
    --color-primary: #D4740E;
    --color-primary-hover: #B8630C;
    --color-primary-light: #F0A54B;
    --color-secondary: #F5A623;
    --color-dark: #2C1810;
    --color-accent: #5D3A1A;
    --color-light: #FFF8F0;
    --color-text: #1A1A1A;
    --color-muted: #6C757D;
    --color-white: #FFFFFF;

    /* Beach accent */
    --color-beach: #1A8B9D;
    --color-beach-hover: #157383;
    --color-beach-light: #E6F7FA;

    /* WhatsApp */
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBB58;

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;

    /* Override Bootstrap primary */
    --bs-primary: #D4740E;
    --bs-primary-rgb: 212, 116, 14;
    --bs-link-color: #D4740E;
    --bs-link-hover-color: #B8630C;
}

/* --- Global Styles --- */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
}

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }

a {
    color: var(--color-primary);
    transition: color 0.2s ease;
}

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

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

section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.top-bar-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-link:hover {
    color: var(--color-secondary);
}

.top-bar-social {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.top-bar-social:hover {
    color: var(--color-secondary);
}

/* --- Navbar --- */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(44, 24, 16, 0.08);
    padding: 0.8rem 0;
    transition: all 0.4s ease;
    z-index: 1030;
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.12);
}

.nav-logo {
    height: 80px;
    width: auto;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo {
    height: 55px;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-left: 0.6rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    transition: all 0.4s ease;
}

.brand-accent {
    color: var(--color-primary);
}

.navbar.scrolled .brand-text {
    font-size: 1.4rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--color-dark);
    padding: 0.6rem 1.1rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link.active {
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-primary);
}

.nav-cta {
    font-weight: 600;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.95rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.12);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}

/* --- Mega Menu --- */
.mega-menu {
    width: 560px;
    padding: 1.25rem 1.5rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.mega-menu-col h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-dark);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
}

.mega-menu-viewall {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: none;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0;
}

.mega-menu-viewall:hover {
    text-decoration: underline;
}

.mega-menu-col .dropdown-item {
    padding: 0.35rem 0.75rem;
    font-size: 0.88rem;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
}

.mega-menu-col .dropdown-item:hover {
    border-left-color: var(--color-primary);
    background-color: rgba(212, 116, 14, 0.06);
    color: var(--color-primary);
    padding-left: 0.9rem;
}

.mega-menu-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(44, 24, 16, 0.08);
    text-align: center;
}

.mega-menu-footer a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-block;
    padding: 0.4rem 0;
}

.mega-menu-footer a:hover {
    color: var(--color-dark);
}

/* --- Transparent Navbar (Hero Pages) --- */
body.hero-page .top-bar {
    display: none !important;
}

.navbar-hero {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.15) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: none !important;
    padding: 0.6rem 0;
    transition: all 0.4s ease;
}

.navbar-hero .nav-logo {
    height: 90px;
}

.navbar-hero .brand-text {
    color: var(--color-white);
    font-size: 1.75rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.navbar-hero .brand-accent {
    color: var(--color-secondary);
}

.navbar-hero .navbar-nav .nav-link {
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.05rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.navbar-hero .navbar-nav .nav-link:hover,
.navbar-hero .navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-hero .navbar-nav .nav-link.active::after {
    background-color: var(--color-secondary);
}

.navbar-hero .nav-cta {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navbar-hero .navbar-toggler-icon {
    filter: invert(1);
}

/* Scrolled state — solid background */
.navbar-hero.scrolled {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 20px rgba(44,24,16,0.12) !important;
    padding: 0.4rem 0;
}

.navbar-hero.scrolled .nav-logo {
    height: 50px;
}

.navbar-hero.scrolled .brand-text {
    color: var(--color-dark);
    font-size: 1.4rem;
    text-shadow: none;
}

.navbar-hero.scrolled .brand-accent {
    color: var(--color-primary);
}

.navbar-hero.scrolled .navbar-nav .nav-link {
    color: var(--color-dark) !important;
    font-size: 1rem;
    text-shadow: none;
}

.navbar-hero.scrolled .navbar-nav .nav-link:hover,
.navbar-hero.scrolled .navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
}

.navbar-hero.scrolled .navbar-nav .nav-link.active::after {
    background-color: var(--color-primary);
}

.navbar-hero.scrolled .nav-cta {
    box-shadow: none;
}

.navbar-hero.scrolled .navbar-toggler-icon {
    filter: none;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 116, 14, 0.3);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

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

.btn-secondary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    border-color: var(--color-whatsapp);
    color: var(--color-white);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    border-color: var(--color-whatsapp-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

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

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 120px;
}

.hero > .hero-content {
    position: relative;
    z-index: 2;
}

.hero-full {
    min-height: 100vh;
}

.hero-medium {
    min-height: 50vh;
}

.hero-small {
    min-height: 35vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(44,24,16,0.1) 0%,
        rgba(212,116,14,0.15) 50%,
        rgba(44,24,16,0.45) 100%
    );
    z-index: 1;
}

/* Hero overlay — continuous gradient for text readability */
.hero-overlay-light {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.15) 20%,
        rgba(0,0,0,0.25) 40%,
        rgba(44,24,16,0.6) 100%
    );
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 3px 20px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

/* Hero CTA button effects */
.hero-cta .btn-primary,
.hero-cta .btn-beach {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.hero-cta .btn-primary:hover,
.hero-cta .btn-beach:hover {
    animation: none;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,116,14,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(212,116,14,0); }
}

.hero-cta .btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.hero-cta .btn-outline-light:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* --- Hero Carousel --- */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-carousel .carousel-inner {
    height: 100%;
    min-height: 100vh;
}

.hero-carousel .carousel-item {
    min-height: 100vh;
}

/* Background slide with Ken Burns */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroKenBurns 25s ease-out forwards;
}

.carousel-item:not(.active) .hero-slide {
    animation: none;
}

/* Content positioning */
.hero-carousel .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: 0 1.5rem;
}

/* Animate content on slide transition */
.carousel-item.active .hero-content {
    animation: heroFadeUp 0.8s ease-out both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Kicker text above title */
.hero-kicker {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    padding: 0.3rem 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Carousel indicators */
.hero-indicators {
    z-index: 4;
    margin-bottom: 4rem;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background-color: transparent;
    opacity: 0.7;
    margin: 0 5px;
    transition: all 0.3s;
}

.hero-indicators button.active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    opacity: 1;
    transform: scale(1.2);
}

/* Carousel controls */
.hero-control {
    z-index: 4;
    width: 60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-carousel:hover .hero-control {
    opacity: 0.8;
}

.hero-control:hover {
    opacity: 1 !important;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    padding: 0.5rem;
    background-size: 50%;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: color 0.3s;
}

.hero-scroll-indicator:hover {
    color: var(--color-secondary);
}

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

/* --- Destination Cards --- */
.destination-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card {
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.12) !important;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(44, 24, 16, 0.2) !important;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-safari {
    border-top: 3px solid var(--color-primary);
}

.card-beach {
    border-top: 3px solid var(--color-beach);
}

.badge-safari {
    background-color: var(--color-primary) !important;
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.badge-beach {
    background-color: var(--color-beach) !important;
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.destination-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.destination-card .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Home Page Sections --- */
.intro-section {
    background-color: var(--color-light);
}

.trust-item {
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), var(--color-secondary)) 1;
    border-image-slice: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(44, 24, 16, 0.12);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.trust-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.trust-desc {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Safari Section */
.safari-section {
    background: linear-gradient(135deg, #FFF2E0 0%, #FFE4C0 100%);
    position: relative;
}

.safari-section .section-title {
    color: var(--color-dark);
}

/* Beach Section */
.beach-section {
    background: linear-gradient(135deg, #E0F4F7 0%, #B8E6ED 100%);
    position: relative;
}

.beach-section .section-title {
    color: var(--color-dark);
}

/* Wave dividers between sections */
.wave-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
}

.wave-divider-top {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin-bottom: -1px;
}

.wave-divider-top svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44,24,16,0.6) 0%,
        rgba(212,116,14,0.2) 50%,
        rgba(44,24,16,0.65) 100%
    );
}

.cta-banner h2 {
    color: var(--color-white);
}

/* --- Testimonials --- */
.testimonial-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 24px rgba(44, 24, 16, 0.1);
    border-left: 4px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(44, 24, 16, 0.15);
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.testimonial-stars {
    color: var(--color-secondary);
}

/* --- Destination Detail Page --- */
.destination-hero {
    min-height: 60vh;
}

.hero-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 130px;
    z-index: 3;
}

.hero-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.quick-facts {
    background-color: var(--color-light);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}

.quick-fact-item {
    text-align: center;
    padding: 0.5rem;
}

.quick-fact-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.quick-fact-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-fact-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.highlight-card {
    background-color: var(--color-light);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.activity-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.activity-card:hover {
    border-color: var(--color-primary);
}

.activity-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.carry-list {
    list-style: none;
    padding: 0;
}

.carry-list li {
    padding: 0.4rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.carry-list li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.travel-note-card {
    background-color: var(--color-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.travel-note-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.travel-note-item:last-child {
    border-bottom: none;
}

.travel-note-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
    min-width: 1.5rem;
}

/* --- Gallery --- */
.gallery-grid .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}

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

/* --- Filter Bar --- */
.filter-bar {
    background-color: var(--color-light);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #dee2e6;
    background-color: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

.filter-btn.active-beach {
    background-color: var(--color-beach);
    border-color: var(--color-beach);
    color: var(--color-white);
}

/* --- Inquiry Form --- */
.inquiry-form .form-label {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 116, 14, 0.15);
}

.inquiry-form .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    margin-bottom: 1.25rem;
}

/* --- Wizard Steps --- */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.wizard-step.active {
    opacity: 1;
}

.wizard-step.completed {
    opacity: 0.7;
}

.wizard-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dee2e6;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
}

.wizard-step.active .wizard-step-number {
    background: var(--color-primary);
    color: #fff;
}

.wizard-step.completed .wizard-step-number {
    background: var(--color-primary);
    color: #fff;
}

.wizard-step-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.wizard-step-line {
    flex: 0 0 60px;
    height: 2px;
    background: #dee2e6;
    margin: 0 1rem;
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: wizardFadeIn 0.3s ease;
}

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

/* --- Trip Type Cards --- */
.trip-type-cards {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trip-type-card {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    background: #fff;
}

.trip-type-card input {
    display: none;
}

.trip-type-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.trip-type-card span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.trip-type-card:hover {
    border-color: var(--color-primary);
    background: rgba(212, 116, 14, 0.04);
}

.trip-type-card.active {
    border-color: var(--color-primary);
    background: rgba(212, 116, 14, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 116, 14, 0.15);
}

/* --- Destination Pills --- */
.dest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dest-pill {
    display: inline-block;
    cursor: pointer;
}

.dest-pill input {
    display: none;
}

.dest-pill span {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border: 1.5px solid #dee2e6;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    background: #fff;
    transition: all 0.15s;
}

.dest-pill:hover span {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.dest-pill input:checked + span {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-dark);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--color-light);
    color: var(--color-primary);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 116, 14, 0.15);
}

.faq-accordion .accordion-body {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Breadcrumbs --- */
.breadcrumb-wrapper {
    background-color: var(--color-light);
    padding: 0.75rem 0;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--color-muted);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 0;
}

.footer-logo {
    height: 90px;
    width: auto;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

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

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 1.25rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-secondary);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1040;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--color-whatsapp-hover);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- About Page --- */
.usp-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
    height: 100%;
    transition: transform 0.3s;
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.usp-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* --- Contact Page --- */
.contact-info-card {
    background-color: var(--color-light);
    border-radius: 12px;
    padding: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* --- Thank You Page --- */
.thank-you-section {
    text-align: center;
    padding: 5rem 0;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

/* --- 404 Page --- */
.error-section {
    text-align: center;
    padding: 5rem 0;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

/* --- Utility Classes --- */
.bg-primary-custom {
    background-color: var(--color-primary) !important;
}

.bg-light-custom {
    background-color: var(--color-light) !important;
}

.bg-dark-custom {
    background-color: var(--color-dark) !important;
}

.text-primary-custom {
    color: var(--color-primary) !important;
}

.text-beach {
    color: var(--color-beach) !important;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    section {
        padding: var(--section-padding-sm);
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .offcanvas {
        width: 280px !important;
        height: 100vh !important;
        height: 100dvh !important;
    }
    .navbar-hero .offcanvas .navbar-nav .nav-link {
        color: var(--color-dark) !important;
        text-shadow: none !important;
    }
    .navbar-hero .offcanvas .navbar-nav .nav-link:hover,
    .navbar-hero .offcanvas .navbar-nav .nav-link.active {
        color: var(--color-primary) !important;
    }
    .navbar-hero .offcanvas .brand-text {
        color: var(--color-dark) !important;
        text-shadow: none !important;
    }
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    .mega-menu {
        width: 100% !important;
        padding: 0.5rem 0;
        box-shadow: none;
        border-radius: 0;
        border: none;
    }
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .mega-menu-col h6 {
        padding: 0 0.75rem 0.4rem;
    }
    .mega-menu-footer {
        padding: 0.5rem 0.75rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-full,
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        min-height: 80vh;
    }
    .hero-medium {
        min-height: 40vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-indicators {
        margin-bottom: 3rem;
    }
    .quick-facts {
        margin-top: -1.5rem;
    }
    .card-img-wrapper {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

/* --- Animation utilities --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Ken Burns hero animation --- */
@keyframes heroKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Ken Burns for static (non-carousel) hero pages */
.hero:not(.hero-carousel)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: heroKenBurns 25s ease-out forwards;
    z-index: 0;
}

/* --- Card image overlay gradient --- */
.card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.25));
    pointer-events: none;
    z-index: 1;
    border-radius: 0 0 12px 12px;
}

/* --- Gallery hover zoom icon --- */
.gallery-grid .gallery-item {
    position: relative;
}

.gallery-grid .gallery-item::after {
    content: '\F52A';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    color: var(--color-white);
    background: rgba(212, 116, 14, 0.85);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

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

/* --- Testimonial decorative quotes --- */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-primary);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
    pointer-events: none;
}

/* --- Section divider accent bar --- */
.section-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    margin: 0 auto 2rem;
}

.section-divider-left {
    height: 4px;
    width: 70px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    margin: 0 0 2rem 0;
}

/* --- Back-to-top button --- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1039;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(44, 24, 16, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(212, 116, 14, 0.3);
}

/* --- Image lazy-load shimmer --- */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0e6d9 25%, #faf4ed 50%, #f0e6d9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

img[loading="lazy"].loaded {
    animation: none;
    background: none;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* --- Card border gradient upgrade --- */
.card-safari {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), var(--color-secondary)) 1;
    border-image-slice: 1;
}

.card-beach {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-beach), #5BC4D4) 1;
    border-image-slice: 1;
}

/* --- Destination detail gallery grid --- */
.dest-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dest-gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-gallery-grid .gallery-item img {
    height: 100%;
    min-height: 200px;
}

@media (max-width: 767.98px) {
    .dest-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-gallery-grid .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
}
