/* =====================================
   BARLVYNE Safari Website Styles
   ===================================== */

/* CSS Variables */
:root {
    --color-red: #F39A3D;
    --color-green: #39B54A;
    --color-dark: #231f24;
    --color-light-dark: #1b171c;
    --color-white: #ffffff;
    --color-black: #000000;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Fraunces', serif;
    --font-accent: 'EB Garamond', serif;
    /* Mapping to old names for compatibility or replacement */
    --font-montserrat: var(--font-primary);
    --font-baskervville: var(--font-accent);
    --font-open-sans: var(--font-primary);
    --transition: all 0.3s ease;
}

/* Reset and Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-montserrat);
    background-color: var(--color-dark);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    background: #F39A3D;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 1200;
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
}

.skip-link:focus {
    top: 16px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

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

ul,
ol {
    list-style: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

p {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
}

.italic-text {
    font-family: var(--font-baskervville);
    font-style: italic;
    font-weight: 400;
}

.lightfont {
    font-weight: 300;
}

/* Utility Classes */
.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt-60 {
    padding-top: 60px;
}

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

.bg-red {
    background-color: var(--color-red);
}

.bg-green {
    background-color: var(--color-green);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
}

.desktop-nav-links {
    display: flex;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 10px 24px;
    position: relative;
}

.desktop-nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: -1;
    transition: all 0.4s ease;
}

.site-header.scrolled .desktop-nav-links::before {
    background: transparent;
    border-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.site-header.scrolled .desktop-nav-links {
    padding: 12px 0;
}

.desktop-nav-links li {
    position: relative;
    padding: 10px 0;
    /* Add padding to li to keep dropdown open when moving mouse down */
}

/* Base link animations */
.desktop-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
}

.desktop-nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1400px) {
    .site-header { padding: 10px 20px; }
    .desktop-nav-links { gap: 16px; padding: 10px 20px; }
    .header-controls { gap: 12px; }
}

@media (max-width: 1150px) {
    .desktop-nav-links a { font-size: 13px; letter-spacing: 0.02em; }
    .nav-excursions-btn { padding: 5px 12px !important; }
}

/* ── Excursions nav pill ── */
.nav-excursions-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #c9a84c, #e6c97a) !important;
    color: #111 !important;
    font-weight: 700 !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 12px rgba(201,168,76,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    text-shadow: none !important;
}
.nav-excursions-btn:hover {
    color: #111 !important;
    background: linear-gradient(135deg, #e6c97a, #c9a84c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(201,168,76,0.5) !important;
    text-shadow: none !important;
}
.nav-excursions-btn::after {
    display: none !important;
}
.nav-excursions-btn i {
    font-size: 12px;
}

.desktop-nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #F39A3D;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav-links>li>a:hover::after {
    opacity: 1;
    bottom: -6px;
    transform: translateX(-50%) scale(1.5);
}

/* Nav Dropdowns */
.nav-chevron {
    font-size: 10px;
    margin-left: 6px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.desktop-nav-links .has-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(12, 13, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 100;
}

.desktop-nav-links .has-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    padding: 0;
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.02em;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    color: #F39A3D;
    background: rgba(255, 255, 255, 0.05);
    text-shadow: none;
}

.header-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: #F39A3D;
    color: #fff !important;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cta-btn:hover {
    background: #e5882b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 154, 61, 0.3);
}

/* Custom Language Switcher */
.header-audio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(12, 13, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.header-audio-btn:hover {
    background: rgba(12, 13, 15, 0.85);
    border-color: #F39A3D;
}

.header-audio-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.header-audio-btn.muted i::before {
    content: "\f6a9";
    /* fa-volume-mute */
}

.language-switcher-custom {
    position: relative;
    z-index: 1005;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 38px;
    padding: 0 14px;
    border-radius: 40px;
    background: rgba(12, 13, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.lang-toggle:hover {
    background: rgba(12, 13, 15, 0.85);
    border-color: #F39A3D;
    transform: translateY(-1px);
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-chevron {
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: rgba(12, 13, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 8px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.language-switcher-custom.active .lang-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.language-switcher-custom.active .lang-chevron {
    transform: rotate(180deg);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-option.selected {
    color: #F39A3D;
    background: rgba(243, 154, 61, 0.1);
}

.lang-option .lang-flag {
    width: 22px;
    height: 16px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo a {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo-img {
    width: auto;
    height: 80px;
    display: block;
    border-radius: 4px;
    transition: height 0.4s ease;
}

.site-header.scrolled .site-logo-img {
    height: 56px;
}

.menu-icon {
    cursor: pointer;
    z-index: 1001;
    padding: 15px;
    margin: -15px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-icon:focus-visible {
    border-radius: 10px;
}

.menu-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

.menu-button-target {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: var(--transition);
}

.menu-button::before,
.menu-button::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: var(--transition);
}

.menu-button::before {
    top: -8px;
}

.menu-button::after {
    top: 8px;
}

/* =====================================
   CREATIVE SAFARI MENU OVERLAY
   ===================================== */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Dynamic Background Video */
.menu-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.menu-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.menu-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(228, 43, 22, 0.95) 0%,
            rgba(196, 30, 18, 0.92) 50%,
            rgba(163, 26, 15, 0.88) 100%);
    z-index: 2;
    mix-blend-mode: multiply;
}

.menu-gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 60%);
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.close-line {
    position: absolute;
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
}

.close-line-1 {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line-2 {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close:hover .close-line {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Navigation Layout */
.menu-nav {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 80px 60px;
}

.menu-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Creative Navigation Links */
.nav-links-creative {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links-creative li {
    margin: 0 0 clamp(8px, 1.5vw, 18px) 0;
    position: relative;
}

.nav-links-creative a {
    display: flex;
    align-items: baseline;
    gap: clamp(12px, 2vw, 24px);
    font-family: var(--font-montserrat);
    font-size: clamp(24px, 4vw, 52px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: clamp(5px, 0.8vw, 10px) 0;
}

.menu-number {
    font-family: var(--font-open-sans);
    font-size: clamp(11px, 1.2vw, 16px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.menu-text {
    position: relative;
    transition: all 0.4s ease;
}

.menu-hover-bg {
    position: absolute;
    left: -20px;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid #fff;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-links-creative a:hover {
    color: #fff;
    transform: translateX(20px);
}

.nav-links-creative a:hover .menu-number {
    color: #FFD700;
    transform: scale(1.2);
}

.nav-links-creative a:hover .menu-hover-bg {
    width: calc(100% + 40px);
}

.nav-links-creative .current-menu-item a {
    color: #fff;
}

.nav-links-creative .current-menu-item .menu-number {
    color: #FFD700;
}

.nav-links-creative .current-menu-item .menu-hover-bg {
    width: calc(100% + 40px);
}

/* Mobile Dropdown styles */
.mobile-dropdown-menu {
    list-style: none;
    padding: 10px 0 0 clamp(40px, 6vw, 80px);
    /* Indent from main menu items */
    margin: 0;
    display: none;
    /* Hidden by default */
}

.has-mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
    animation: fadeInDown 0.4s ease forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-dropdown-menu li {
    margin-bottom: clamp(10px, 1.5vw, 15px);
    position: relative;
}

.mobile-dropdown-menu a {
    font-family: var(--font-primary);
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: none;
    letter-spacing: 0.02em;
    padding: 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    color: #F39A3D;
    transform: translateX(10px);
}

/* Destination Preview Cards */
.menu-destinations {
    animation: fadeInRight 0.8s ease 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.destinations-title {
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.destination-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.destination-card {
    display: flex;
    gap: 15px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateX(10px);
}

.destination-card:hover .card-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(228, 43, 22, 0.2) 100%);
    transition: opacity 0.3s ease;
}

.destination-card:hover .card-image::after {
    opacity: 0.5;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h4 {
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.card-content p {
    font-family: var(--font-open-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Menu Footer */
.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-contact {
    display: flex;
    gap: 40px;
}

.menu-contact p {
    font-family: var(--font-open-sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    transition: color 0.3s ease;
}

.menu-contact p:hover {
    color: #fff;
}

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

.menu-social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.menu-social-icons a:hover::before {
    width: 120%;
    height: 120%;
}

.menu-social-icons a:hover {
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.menu-social-icons a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.menu-social-icons a:hover i {
    color: #F39A3D;
    transform: scale(1.1);
}

/* Responsive Menu Design */
@media (max-width: 1199px) {
    .menu-nav {
        padding: 80px 50px 50px;
    }

    .menu-content {
        gap: 60px;
    }

    .nav-links-creative a {
        font-size: clamp(22px, 4vw, 42px);
    }
}

@media (max-width: 991px) {
    .menu-nav {
        padding: 80px 40px 50px;
    }

    .menu-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .nav-links-creative a {
        font-size: clamp(20px, 4.5vw, 38px);
    }

    .menu-destinations {
        max-width: 400px;
    }

    .menu-close {
        top: 30px;
        right: 30px;
    }
}

@media (max-width: 767px) {
    .menu-nav {
        padding: 100px 30px 40px;
    }

    .menu-content {
        gap: 40px;
    }

    .nav-links-creative li {
        margin-bottom: 12px;
    }

    .nav-links-creative a {
        font-size: clamp(18px, 6vw, 32px);
        gap: 10px;
    }

    .menu-number {
        font-size: 10px;
    }

    .destination-cards {
        gap: 20px;
    }

    .card-image {
        width: 80px;
        height: 80px;
    }

    .card-content h4 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12px;
    }

    .menu-footer {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .menu-contact {
        flex-direction: column;
        gap: 12px;
    }

    .menu-social-icons a {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .menu-close {
        top: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
    }

    .close-line {
        width: 30px;
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .menu-nav {
        padding: 90px 25px 35px;
    }

    .nav-links-creative a {
        font-size: clamp(16px, 7vw, 28px);
    }

    .destination-cards {
        gap: 18px;
    }

    .card-image {
        width: 75px;
        height: 75px;
    }

    .card-content h4 {
        font-size: 14px;
    }

    .menu-contact p {
        font-size: 13px;
    }
}

/* Main Content */
.smooth-scroll-container {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #0b0c0d url('images/group-elephants-walking-dry-grass-wilderness.jpg') center/cover no-repeat;
}

.hero-loading-screen {
    position: absolute;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-loading-screen.is-hidden {
    display: none;
}

.preloader-panel {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background-image: url('images/preloader-safari-sunset.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 101;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(11, 12, 13, 0.88) 0%, rgba(20, 16, 14, 0.98) 100%);
    pointer-events: none;
}

.panel-left {
    left: 0;
    border-right: 1px solid rgba(255,255,255,0.02);
}

.panel-right {
    right: 0;
}

.hero-loading-screen.is-exiting .panel-left {
    transform: translateX(-100%);
}

.hero-loading-screen.is-exiting .panel-right {
    transform: translateX(100%);
}

.preloader-content {
    position: relative;
    z-index: 102;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    transition: opacity 0.5s ease;
}

.hero-loading-screen.is-exiting .preloader-content {
    opacity: 0;
}

.preloader-logo-wrapper {
    overflow: hidden;
    display: flex;
    gap: 15px;
    font-family: var(--font-secondary);
    font-size: clamp(1.4rem, 3.5vw, 2.8rem);
    letter-spacing: 0.25em;
}

.preloader-logo-img {
    width: clamp(260px, 42vw, 550px);
    height: auto;
    object-fit: contain;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.15s;
}

.preloader-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(0.65rem, 1.4vw, 0.95rem);
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-top: -15px;
    opacity: 0;
    transform: translateY(10px);
    animation: cinematicSubtitleBreath 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.6s;
}

@keyframes cinematicSubtitleBreath {
    0% { opacity: 0; transform: translateY(10px); letter-spacing: 0.2em; filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); letter-spacing: 0.5em; filter: blur(0); }
}

.preloader-progress-wrapper {
    width: 2px;
    height: 90px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    margin: 0 auto;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F39A3D;
    transform-origin: top;
    animation: loaderDropFill 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes slideUpFade {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes loaderDropFill {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0.01;
    transition: opacity 0.7s ease;
}

.hero-bg-video.hero-ready .hero-video-container {
    opacity: 1;
}

.hero-video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transform: scale(1.085);
    filter: saturate(1.08) contrast(1.06) brightness(0.84);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 7s ease-out,
        filter 0.9s ease;
    will-change: opacity, transform, filter;
    z-index: 1;
}

.hero-video-slide.active {
    opacity: 1;
    transform: scale(1.02);
    filter: saturate(1.12) contrast(1.08) brightness(0.9);
    z-index: 2;
}

.hero-video-slide.transitioning-out {
    opacity: 0;
    transform: scale(1.06);
    filter: saturate(1.02) contrast(1.03) brightness(0.78);
    z-index: 1;
}

.hero-video-slide[data-index="0"] {
    object-position: 50% 46%;
    background: transparent url('images/group-elephants-walking-dry-grass-wilderness.jpg') center/cover no-repeat;
}

.hero-video-slide[data-index="1"] {
    object-position: 50% 44%;
}

.hero-video-slide[data-index="2"] {
    object-position: 50% 48%;
}

.hero-video-slide[data-index="3"] {
    object-position: 50% 54%;
}

.hero-video-slide[data-index="4"] {
    object-position: 50% 52%;
}

/* Hero Content - Bold Text Overlay */
/* center hero content both horizontally and vertically; previous -55% shifted slightly upwards to make room for trust badges which have been removed */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 95%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Destination Label */
.hero-destination-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 6px 18px;
    margin-bottom: 1.2rem;
    animation: fadeSlideDown 0.8s ease 0.3s both;
}

.hero-dest-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F39A3D;
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(243, 154, 61, 0.7);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(243, 154, 61, 0);
    }
}

.hero-dest-text {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-slider {
    position: relative;
    height: clamp(4rem, 14vw, 12rem);
    overflow: visible;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-secondary);
    font-size: clamp(3.5rem, 11vw, 9rem);
    font-weight: 950;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0;
    padding: 0 2rem;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(120%) scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: max-content;
    max-width: 95vw;
    overflow: visible;
}

.hero-text-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.hero-text-slide.exit {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-100%) scale(0.8);
}

@keyframes bounceIn {
    0% {
        transform: translate(-50%, -50%) translateY(120%) scale(0.3);
        opacity: 0;
    }

    40% {
        transform: translate(-50%, -50%) translateY(-15%) scale(1.15);
        opacity: 0.7;
    }

    60% {
        transform: translate(-50%, -50%) translateY(8%) scale(0.92);
        opacity: 0.85;
    }

    80% {
        transform: translate(-50%, -50%) translateY(-3%) scale(1.02);
        opacity: 0.95;
    }

    100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
        opacity: 1;
    }
}

/* Hero Audio Videos (for audio extraction) */
.hero-audio-videos {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-montserrat);
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 500;
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeSlideUp 0.9s ease 0.5s both;
    background: linear-gradient(135deg, #F39A3D 0%, #e07b10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.9s ease 0.7s both;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #F39A3D 0%, #e07b10 100%);
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(243, 154, 61, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #ffaf59 0%, #F39A3D 100%);
    box-shadow: 0 15px 35px rgba(243, 154, 61, 0.45), 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.hero-cta-primary:active {
    transform: translateY(-2px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* Trust Row */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 10px 30px;
    animation: fadeSlideUp 0.9s ease 0.9s both;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 20px;
}

.hero-trust-number {
    font-family: var(--font-secondary);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 800;
    color: #F39A3D;
    line-height: 1;
}

.hero-trust-label {
    font-family: var(--font-secondary);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

.hero-trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* Slide Dots Navigation */
.hero-slide-dots {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
    align-items: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.hero-dot.active {
    background: #F39A3D;
    border-color: #F39A3D;
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(243, 154, 61, 0.6);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    border-color: #fff;
    transform: scale(1.2);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.6) 100%),
        radial-gradient(ellipse at 50% 60%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        transform: translate(-50%, -52%);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 1.4rem;
        padding: 0 1rem;
    }

    .hero-cta-group {
        gap: 0.75rem;
        margin-bottom: 1.8rem;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 12px;
        padding: 13px 26px;
    }

    .hero-trust-row {
        padding: 8px 16px;
        gap: 0;
    }

    .hero-trust-item {
        padding: 0 12px;
    }

    .hero-trust-number {
        font-size: 0.9rem;
    }

    .hero-trust-label {
        font-size: 8px;
    }

    .hero-slide-dots {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .hero-trust-row {
        flex-wrap: wrap;
        border-radius: 16px;
        padding: 12px 16px;
        gap: 8px;
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-trust-item {
        flex-direction: row;
        gap: 6px;
        padding: 0 8px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}



.hero-audio-video {
    width: 1px;
    height: 1px;
}

/* About Section */
.des-about-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.des-about-text p {
    font-size: 18px;
    line-height: 1.8;
}

.des-about-text h1 {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.des-about-text h2 {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 400;
    color: #F39A3D;
    font-style: italic;
    margin-bottom: 30px;
}

/* Panels Container */
.thecontainer {
    display: flex;
    height: 100vh;
    width: 200vw;
    /* Only 2 panels horizontal now */
}

/* Second Horizontal Panels Container */
.thecontainer-second {
    display: flex;
    height: 100vh;
    width: 200vw;
    /* 2 panels for the second section */
}

.panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    padding: 60px;
    background-color: var(--color-dark);
    will-change: transform;
}


.panel[data-bg="#F39A3D"] {
    background-color: #F39A3D;
}

.panel[data-bg="#39B54A"] {
    background-color: #39B54A;
}

.panel[data-bg="#2B2B2B"] {
    background-color: #2B2B2B;
}

.panel .panel-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(8, 10, 14, 0.25) 0%,
            rgba(8, 10, 14, 0.52) 62%,
            rgba(8, 10, 14, 0.72) 100%);
    pointer-events: none;
}

.panel .container {
    max-width: 1200px;
    width: 100%;
}

.text-panel {
    text-align: center;
}

.text-panel h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7);
}

.text-panel h3 {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7);
}

.text-panel h4 {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-white);
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7);
}

.text-panel p {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.6;
    color: var(--color-white);
    font-family: var(--font-baskervville);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.text-panel.text-black h2,
.text-panel.text-black h3,
.text-panel.text-black h4,
.text-panel.text-black p {
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.92), 0 2px 10px rgba(0, 0, 0, 0.75);
    font-weight: 700;
}

/* Second horizontal panel text positioning */
.thecontainer-second .text-panel {
    padding-top: 80px;
}

/* Decorative Elements */
.rightscroll,
.leftscroll,
.topscroll,
.bottomscroll,
.penrotate {
    position: absolute;
}

.rightscroll img,
.leftscroll img,
.topscroll img,
.bottomscroll img,
.penrotate img {
    width: 150px;
    height: auto;
    opacity: 0.8;
}

.penrotate img {
    width: 200px;
    animation: rotatePen 10s linear infinite;
}

@keyframes rotatePen {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.awardscroll img {
    width: 120px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .text-panel h2 {
        font-size: 42px;
    }

    .text-panel h3 {
        font-size: 32px;
    }

    .text-panel h4 {
        font-size: 24px;
    }

    .des-about-text p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .site-header {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
    }

    .header-cta-btn {
        display: none !important;
    }

    .site-header .logo img {
        height: 40px;
    }

    .language-select {
        min-width: 98px;
        font-size: 11px;
    }

    .language-switcher {
        height: 32px;
        padding: 0 9px;
    }

    .language-select {
        padding-right: 20px;
    }

    .nav-links a {
        font-size: 28px;
    }

    .thecontainer {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .panel {
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 80px 20px;
    }

    .text-panel h2 {
        font-size: 36px;
    }

    .text-panel h3 {
        font-size: 28px;
    }

    .text-panel h4 {
        font-size: 22px;
    }

    .text-panel p {
        font-size: 18px;
    }

    .des-about-text p {
        font-size: 16px;
    }

    .rightscroll img,
    .leftscroll img,
    .topscroll img,
    .bottomscroll img {
        width: 100px;
    }

    .penrotate img {
        width: 120px;
    }

    .hero-content {
        width: 90%;
    }

    .hero-text-slide {
        font-size: clamp(2rem, 6vw, 5rem);
    }
}

@media (max-width: 767px) {
    .ptb-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .nav-links a {
        font-size: 24px;
    }

    .header-controls {
        gap: 10px;
    }

    .header-audio {
        height: 30px;
        padding: 0 8px;
    }

    .audio-volume-control {
        width: 82px;
    }

    .language-select {
        min-width: 88px;
    }

    .language-switcher {
        height: 30px;
        padding: 0 8px;
    }

    .language-select {
        padding-right: 18px;
    }

    .site-logo-img {
        width: 160px;
    }

    .text-panel h2 {
        font-size: 28px;
    }

    .text-panel h3 {
        font-size: 22px;
    }

    .text-panel h4 {
        font-size: 18px;
    }

    .text-panel p {
        font-size: 16px;
    }

    .des-about-text p {
        font-size: 14px;
    }

    .rightscroll img,
    .leftscroll img,
    .topscroll img,
    .bottomscroll img {
        width: 80px;
    }

    .penrotate img {
        width: 100px;
    }

    .hero-text-slide {
        font-size: clamp(1.5rem, 5vw, 3.5rem);
        padding: 0 1rem;
    }

}

@media (max-width: 480px) {
    .nav-links a {
        font-size: 20px;
    }

    .rightscroll img,
    .leftscroll img,
    .topscroll img,
    .bottomscroll img {
        width: 60px;
    }

    .penrotate img {
        width: 80px;
    }

    .marquee-content {
        gap: 40px;
    }

    .marquee-content img {
        height: 35px;
    }

    .audio-volume-control {
        width: 72px;
    }
}

/* Smooth Scroll Container */
.smooth-scroll-container {
    overflow-x: hidden;
}

/* Services Flip Cards */
.col-cards {
    perspective: 1000px;
    margin-bottom: 3px;
    cursor: pointer;
}

.flipContainer {
    position: relative;
    width: 100%;
    height: 320px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.col-cards:hover .flipContainer,
.col-cards.is-open .flipContainer {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 6px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.front {
    z-index: 2;
}

.back {
    transform: rotateY(180deg);
    z-index: 1;
    background-color: var(--color-light-dark);
}

.front h2,
.back h2 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.front ul,
.back ul {
    text-align: left;
    padding-left: 18px;
}

.front li,
.back li {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    list-style: disc;
}

.flipContainer {
    position: relative;
    width: 100%;
    height: 400px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.col-cards:hover .flipContainer,
.col-cards.is-open .flipContainer {
    transform: rotateY(180deg);
}

.col-cards:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: 4px;
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.front {
    z-index: 2;
}

.back {
    transform: rotateY(180deg);
    z-index: 1;
    background-color: var(--color-light-dark);
}

.front h2,
.back h2 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.front ul,
.back ul {
    text-align: left;
    padding-left: 20px;
}

.front li,
.back li {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    list-style: disc;
}

.services-research-note {
    max-width: 980px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-open-sans);
    font-size: 15px;
    line-height: 1.7;
}

.services-pricing-strip {
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 1320px;
}

.services-price-card {
    background: linear-gradient(160deg, rgba(30, 33, 38, 0.94) 0%, rgba(20, 22, 27, 0.96) 100%);
    border: 1px solid rgba(243, 154, 61, 0.28);
    border-radius: 14px;
    padding: 20px 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.services-price-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-montserrat);
    font-size: 17px;
    color: #ffffff;
}

.services-price-value {
    margin: 0 0 8px;
    font-family: var(--font-montserrat);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #f39a3d;
}

.services-price-card p {
    margin: 0;
    font-family: var(--font-open-sans);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.services-inclusion-grid {
    margin: 18px auto 0;
    max-width: 1320px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.services-inclusion-col {
    background: rgba(22, 24, 29, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
}

.services-inclusion-col h4 {
    margin: 0 0 10px;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.services-inclusion-col ul {
    margin: 0;
    padding-left: 18px;
}

.services-inclusion-col li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
    list-style: disc;
}

.services-inclusion-col li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .services-pricing-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .services-research-note {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .services-pricing-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-inclusion-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-price-value {
        font-size: 22px;
    }
}

/* Holiday Styles Section */
.holiday-style-section {
    background: var(--color-light-dark);
    padding: 84px 0 92px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.holiday-style-shell {
    max-width: 1380px;
}

.holiday-style-head {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.holiday-style-kicker {
    margin: 0 0 16px;
    font-family: var(--font-montserrat);
    font-size: 13px;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
}

.holiday-style-title {
    margin: 0 0 18px;
    font-family: var(--font-montserrat);
    font-size: clamp(38px, 5.2vw, 72px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.holiday-style-title span {
    font-weight: 900;
    display: inline-block;
    position: relative;
}

.holiday-style-title span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 14px;
    background: rgba(243, 154, 61, 0.36);
    z-index: -1;
}

.holiday-style-copy {
    margin: 0 auto;
    max-width: 780px;
    font-family: var(--font-open-sans);
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.holiday-style-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.holiday-style-item {
    text-align: center;
    padding: 24px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.holiday-style-item:hover {
    background: rgba(243, 154, 61, 0.08);
    /* slight orange tint */
    border-color: rgba(243, 154, 61, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.holiday-style-icon {
    margin-bottom: 16px;
    transition: var(--transition);
}

.holiday-style-item:hover .holiday-style-icon {
    transform: scale(1.15);
}

.holiday-style-icon i {
    font-size: 52px;
    color: var(--color-red);
    transition: var(--transition);
}

.holiday-style-item:hover .holiday-style-icon i {
    text-shadow: 0 0 15px rgba(243, 154, 61, 0.5);
}

.holiday-style-small {
    margin: 0 0 4px;
    font-family: var(--font-montserrat);
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    text-transform: uppercase;
}

.holiday-style-main {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1;
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.03em;
    transition: var(--transition);
}

.holiday-style-item:hover .holiday-style-main {
    color: var(--color-red);
}

.holiday-style-cta {
    margin-top: 34px;
    text-align: center;
}

.holiday-style-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    height: 76px;
    background: var(--color-red);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-montserrat);
    font-size: 33px;
    font-weight: 700;
    border-radius: 8px;
    /* Added subtle rounding to match other elements better */
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.holiday-style-button:hover {
    background: #d8812c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 154, 61, 0.4);
}

@media (max-width: 1199px) {
    .holiday-style-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .holiday-style-main {
        font-size: clamp(28px, 4.5vw, 42px);
    }
}

@media (max-width: 767px) {
    .holiday-style-section {
        padding: 60px 0 66px;
    }

    .holiday-style-head {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .holiday-style-title {
        font-size: clamp(32px, 10vw, 50px);
    }

    .holiday-style-copy {
        font-size: 17px;
        line-height: 1.6;
    }

    .holiday-style-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
    }

    .holiday-style-icon i {
        font-size: 42px;
    }

    .holiday-style-main {
        font-size: clamp(26px, 8vw, 34px);
    }

    .holiday-style-button {
        min-width: 240px;
        height: 62px;
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .holiday-style-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Showcase (Aceternity-inspired spotlight cards) */
.reviews-showcase-section {
    background: #eceeef;
    padding: 76px 0 84px;
}

.reviews-shell {
    max-width: 1600px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 28px;
}

.reviews-title {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: clamp(44px, 7.2vw, 88px);
    line-height: 0.95;
    font-weight: 900;
    color: #131820;
    letter-spacing: -0.03em;
}

.reviews-title span {
    position: relative;
    display: inline-block;
}

.reviews-title span::after {
    content: '';
    position: absolute;
    left: -10px;
    right: 12px;
    bottom: 12px;
    height: 28px;
    background: rgba(15, 63, 112, 0.17);
    z-index: -1;
}

.reviews-subtitle {
    margin: 8px 0 0;
    font-family: var(--font-open-sans);
    font-size: clamp(22px, 2vw, 40px);
    color: #202732;
    line-height: 1.25;
}

.reviews-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) repeat(4, minmax(220px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.ac-card-spotlight {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(16, 24, 40, 0.1);
    background: #f4f5f7;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ac-card-spotlight::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(340px circle at var(--spotlight-x) var(--spotlight-y),
            rgba(96, 165, 250, 0.22) 0%,
            rgba(96, 165, 250, 0.12) 18%,
            transparent 48%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.ac-card-spotlight.is-hovered::before {
    opacity: 1;
}

.ac-card-spotlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.ac-card-spotlight:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 63, 112, 0.26);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.review-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
}

.reviews-summary-card .review-card-inner {
    justify-content: center;
}

.reviews-brand-logo {
    width: 98px;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.reviews-brand-name {
    margin: 0 0 8px;
    font-family: var(--font-montserrat);
    font-size: clamp(24px, 1.5vw, 34px);
    color: #101621;
    line-height: 1.08;
    font-weight: 800;
}

.review-summary-stars {
    margin: 0 0 3px;
    color: #f3ad13;
    letter-spacing: 2px;
    font-size: 22px;
    line-height: 1;
}

.reviews-count {
    margin: 0 0 14px;
    font-family: var(--font-open-sans);
    font-size: 17px;
    color: #2e3643;
}

.review-write-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    border: 1px solid rgba(16, 24, 40, 0.32);
    background: #ffffff;
    color: #111827;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.review-write-btn:hover {
    background: #0f3f70;
    border-color: #0f3f70;
    color: #ffffff;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 11px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-avatar-lr {
    background: linear-gradient(135deg, #b04c2e, #f39a3d);
}

.review-avatar-dg {
    background: linear-gradient(135deg, #2f7f2c, #61a43d);
}

.review-avatar-dr {
    background: linear-gradient(135deg, #0f3f70, #3d8ad3);
}

.review-avatar-tm {
    background: linear-gradient(135deg, #202020, #4b4b4b);
}

.reviewer-name {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: 29px;
    font-weight: 800;
    color: #111826;
    line-height: 1.05;
}

.review-time {
    margin: 2px 0 0;
    font-family: var(--font-open-sans);
    font-size: 18px;
    color: #6b7280;
}

.review-google-icon {
    margin-left: auto;
    color: #4285f4;
    font-size: 28px;
    flex-shrink: 0;
}

.review-stars-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-stars-row span {
    color: #f3ad13;
    letter-spacing: 1.8px;
    font-size: 21px;
    line-height: 1;
}

.review-stars-row i {
    color: #3b82f6;
    font-size: 15px;
}

.review-copy {
    margin: 10px 0 0;
    font-family: var(--font-open-sans);
    font-size: 21px;
    line-height: 1.45;
    color: #161b25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-read-more {
    margin-top: auto;
    padding-top: 14px;
    display: inline-flex;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #6b7280;
    transition: color 0.2s ease;
}

.review-read-more:hover {
    color: #0f3f70;
}

.reviews-verified {
    margin: 14px 0 0;
    text-align: right;
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #198754;
}

@media (max-width: 1599px) {
    .reviews-grid {
        grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(220px, 1fr));
    }

    .reviews-summary-card {
        grid-column: 1 / -1;
    }

    .reviews-summary-card .review-card-inner {
        flex-direction: row;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
    }

    .reviews-brand-logo {
        margin-bottom: 0;
    }

    .reviews-brand-name,
    .review-summary-stars,
    .reviews-count {
        margin-bottom: 0;
    }
}

@media (max-width: 1199px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviewer-name {
        font-size: 24px;
    }

    .review-time {
        font-size: 16px;
    }

    .review-copy {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .reviews-showcase-section {
        padding: 54px 0 62px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary-card .review-card-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .reviewer-name {
        font-size: 22px;
    }

    .review-copy {
        font-size: 17px;
    }

    .review-google-icon {
        font-size: 24px;
    }

    .reviews-verified {
        text-align: left;
    }
}

/* Trust + Payments Section */
.trust-payments-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0 100px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-payments-shell {
    max-width: 1480px;
}

.trust-payments-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 28px;
}

.trust-payments-kicker {
    margin: 0 0 12px;
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-red);
    text-transform: uppercase;
}

.trust-payments-title {
    margin: 0 0 16px;
    font-family: var(--font-montserrat);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.trust-payments-copy {
    margin: 0;
    font-family: var(--font-open-sans);
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
}

.trust-payments-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.trust-payments-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.trust-payments-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.trust-payments-card-title {
    margin: 0 0 24px;
    font-family: var(--font-montserrat);
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.trust-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trust-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 64px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-logo-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 63, 112, 0.2);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.trust-logo-img {
    max-height: 28px;
    max-width: 100%;
    object-fit: contain;
}

.trust-logo-text {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 700;
}

/* Specific Logo Adjustments */
.google-reviews-text {
    color: #5f6368;
    font-weight: 600;
}

.tripadvisor-logo {
    max-height: 34px;
}

.safaribookings-logo {
    color: #468B35;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.trustpilot-logo {
    max-height: 26px;
}

.bank-transfer-logo {
    color: #1e3a8a;
    font-weight: 700;
}

.pesapal-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1d4ed8;
    font-weight: 800;
    font-family: var(--font-montserrat);
    font-size: 17px;
}

.pesapal-p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39a3d, #f6ba63);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.paypal-logo {
    max-height: 24px;
}

.mpesa-logo {
    max-height: 38px;
}

.visa-logo {
    max-height: 20px;
}

.mastercard-logo {
    max-height: 28px;
}

@media (max-width: 991px) {
    .trust-payments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .trust-payments-section {
        padding: 48px 0 56px;
    }

    .trust-payments-copy {
        font-size: 16px;
    }

    .trust-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Kenya+Tanzania Tour Catalog */
.tour-catalog-section {
    background: #f0f1f3;
    padding: 26px 0 34px;
}

.tour-catalog-shell {
    max-width: 1880px;
    padding-left: 26px;
    padding-right: 26px;
}

.tour-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.tour-catalog-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.tour-catalog-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.tour-catalog-media {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #f58a10;
}

.tour-catalog-body {
    padding: 16px 22px 18px;
}

.tour-catalog-body h3 {
    margin: 0 0 10px;
    font-family: var(--font-montserrat);
    font-size: clamp(28px, 1.7vw, 44px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #131722;
}

.tour-catalog-body p {
    margin: 0;
    font-family: var(--font-open-sans);
    font-size: clamp(17px, 1.1vw, 28px);
    color: #1f2430;
    line-height: 1.35;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.tour-catalog-meta {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-montserrat);
    font-size: clamp(21px, 1.2vw, 30px);
    font-weight: 700;
    color: #162338;
}

.tour-catalog-meta i {
    font-size: 0.9em;
    color: #174272;
}

.tour-catalog-tag {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 85%;
    padding: 8px 18px;
    background: #f58a10;
    color: #ffffff;
    font-family: var(--font-montserrat);
    font-size: clamp(13px, 0.9vw, 19px);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 1450px) {
    .tour-catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .tour-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-catalog-media {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .tour-catalog-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .tour-catalog-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tour-catalog-media {
        height: 220px;
    }

    .tour-catalog-body h3 {
        font-size: clamp(26px, 8vw, 36px);
    }

    .tour-catalog-body p {
        font-size: clamp(16px, 4.8vw, 22px);
    }

    .tour-catalog-meta {
        font-size: clamp(19px, 5vw, 24px);
    }
}

/* Portfolio/Work Section */
.gallery {
    background-color: var(--color-light-dark);
}

.site-title {
    margin-bottom: 50px;
}

.site-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.site-title p {
    font-family: 'Baskervville', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.porfoliosction {
    display: flex;
    flex-wrap: wrap;
}

.porfoliosction .col {
    flex: 1;
    min-width: 300px;
}

.creation-item {
    position: relative;
    overflow: hidden;
}

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

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

.creation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.creation-overlay h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.creation-overlay p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.filter-btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: var(--transition);
}

.filter-btn:hover {
    background: #fff;
    color: var(--color-dark);
}

/* Clients/Marquee Section */
.bg-red {
    background-color: var(--color-red);
    padding: 60px 0;
}

.logo-row {
    overflow: hidden;
}

.marquee {
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee.reverse {
    animation-direction: reverse;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.marquee-content li {
    flex-shrink: 0;
}

.marquee-content img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.marquee-content span {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Why Choose Us / Brands Section */
.bg-light-dark {
    background-color: var(--color-light-dark);
    padding: 60px 0;
}

.fade-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4,
.col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex !important;
    flex-direction: column;
    min-height: 350px;
    visibility: visible !important;
}

.brand-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.brand-item .brands-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.brand-item .icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.process-bottom {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.process-bottom h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.process-bottom p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Contact/CTA Section */
.bg-green {
    background-color: var(--color-green);
    padding: 80px 0;
}

.site-title.text-left {
    text-align: left;
}

.site-title.text-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.site-title.text-left p {
    font-family: 'Baskervville', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.footer-btnarea {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rr-primary-btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition);
}

.rr-primary-btn.outlined {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.rr-primary-btn.outlined:hover {
    background: #fff;
    color: var(--color-green);
}

.rr-primary-btn:not(.outlined) {
    background: #fff;
    color: var(--color-green);
}

.rr-primary-btn:not(.outlined):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rr-primary-btn.w-100 {
    width: 100%;
}

/* =====================================
   MAGAZINE-STYLE SAFARI INTRO
   ===================================== */

.safari-magazine-intro {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.magazine-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 700px;
}

/* Left: Large Feature Image */
.magazine-image-block {
    position: relative;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(228, 43, 22, 0.2) 100%);
}

.image-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.image-badge img {
    height: 60px;
    width: auto;
    display: block;
}

/* Right: Content Block */
.magazine-content-block {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.content-wrapper {
    max-width: 540px;
}

.section-label {
    font-family: var(--font-montserrat);
    font-size: 11px;
    font-weight: 700;
    color: #F39A3D;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.section-headline {
    font-family: var(--font-montserrat);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.highlight-text {
    font-weight: 700;
    color: #F39A3D;
    display: block;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #F39A3D;
    margin-bottom: 35px;
}

.section-intro {
    font-family: var(--font-open-sans);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
}

.section-intro strong {
    color: #F39A3D;
    font-weight: 600;
}

/* Safari Offerings */
.safari-offerings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offering-group h3 {
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

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

.offering-list li {
    font-family: var(--font-open-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.offering-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #F39A3D;
    font-weight: 700;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: var(--font-montserrat);
    font-size: 32px;
    font-weight: 700;
    color: #F39A3D;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-family: var(--font-open-sans);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .magazine-layout {
        grid-template-columns: 50% 50%;
    }

    .magazine-content-block {
        padding: 60px 50px;
    }

    .safari-offerings {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .magazine-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .magazine-image-block {
        min-height: 500px;
    }

    .magazine-content-block {
        padding: 80px 40px;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .safari-offerings {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-indicators {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .magazine-image-block {
        min-height: 400px;
    }

    .magazine-content-block {
        padding: 60px 30px;
    }

    .image-badge {
        bottom: 25px;
        left: 25px;
        padding: 15px;
    }

    .image-badge img {
        height: 50px;
    }

    .section-headline {
        margin-bottom: 25px;
    }

    .section-intro {
        margin-bottom: 35px;
    }

    .safari-offerings {
        margin-bottom: 40px;
        padding-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .magazine-image-block {
        min-height: 350px;
    }

    .magazine-content-block {
        padding: 50px 25px;
    }

    .section-label {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .section-divider {
        margin-bottom: 25px;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-number {
        font-size: 28px;
    }
}

/* =====================================
   FOOTER — CLEAN & CREATIVE
   ===================================== */

/* ─── Base ─── */
.modern-footer {
    background: #0d0c07;
    position: relative;
    overflow: hidden;
}

/* ─── Terrain Divider ─── */
.footer-terrain-line {
    position: relative;
    margin-top: -1px;
    line-height: 0;
}

.footer-terrain-line svg {
    display: block;
    width: 100%;
    height: 72px;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.footer-cta-immersive {
    position: relative;
    padding: 96px 0 80px;
    text-align: center;
    overflow: hidden;
}

/* Ambient background orbs */
.footer-cta-immersive::before,
.footer-cta-immersive::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-cta-immersive::before {
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(243, 154, 61, 0.07) 0%, transparent 65%);
    animation: footerGlowPulse 7s ease-in-out infinite;
}

.footer-cta-immersive::after {
    width: 300px;
    height: 300px;
    right: 10%;
    bottom: 0;
    background: radial-gradient(circle, rgba(200, 160, 50, 0.05) 0%, transparent 70%);
    animation: footerGlowPulse 9s ease-in-out infinite reverse;
}

@keyframes footerGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.12);
    }
}

/* Keep particles but subtle */
.footer-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ft-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 154, 61, 0.45), transparent 70%);
    animation: ftDrift 14s ease-in-out infinite;
}

.ft-p1 {
    width: 5px;
    height: 5px;
    top: 12%;
    left: 8%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.ft-p2 {
    width: 3px;
    height: 3px;
    top: 65%;
    left: 22%;
    animation-duration: 12s;
    animation-delay: -4s;
}

.ft-p3 {
    width: 7px;
    height: 7px;
    top: 25%;
    left: 72%;
    animation-duration: 17s;
    animation-delay: -6s;
}

.ft-p4 {
    width: 3px;
    height: 3px;
    top: 72%;
    left: 82%;
    animation-duration: 13s;
    animation-delay: -8s;
}

.ft-p5 {
    width: 4px;
    height: 4px;
    top: 18%;
    left: 48%;
    animation-duration: 16s;
    animation-delay: -2s;
}

.ft-p6 {
    width: 3px;
    height: 3px;
    top: 55%;
    left: 92%;
    animation-duration: 11s;
    animation-delay: -10s;
}

@keyframes ftDrift {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.25;
    }

    33% {
        transform: translateY(-28px) translateX(12px);
        opacity: 0.65;
    }

    66% {
        transform: translateY(-10px) translateX(-8px);
        opacity: 0.45;
    }
}

/* Hidden glow (absorbed by ::before now) */
.footer-cta-glow {
    display: none;
}

/* CTA layout */
.footer-cta-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.footer-cta-content {
    max-width: 640px;
}

/* Eyebrow */
.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-style: italic;
    color: rgba(200, 168, 88, 0.7);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ft-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 168, 88, 0.45), transparent);
}

/* Headline */
.footer-cta-headline {
    font-family: var(--font-primary);
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin: 0 0 18px;
}

.footer-cta-headline em {
    font-style: normal;
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 1.05em;
    background: linear-gradient(110deg, #FFD166, #F39A3D, #C8A040);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ftGoldShift 5s linear infinite;
}

@keyframes ftGoldShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Sub-text */
.footer-cta-sub {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.42);
    max-width: 460px;
    margin: 0 auto;
}

/* CTA Button */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0d0c07;
    background: linear-gradient(135deg, #FFD166 0%, #F39A3D 100%);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 100px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 22px rgba(243, 154, 61, 0.22);
    cursor: pointer;
}

.ft-btn-text {
    position: relative;
    z-index: 1;
}

.ft-btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ft-btn-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
    background-size: 200% 100%;
    background-position: -100% 0;
    animation: ftShimmer 2.8s ease-in-out infinite;
}

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

    60%,
    100% {
        background-position: 200% 0;
    }
}

.footer-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(243, 154, 61, 0.32), 0 2px 8px rgba(0, 0, 0, 0.25);
    color: #0d0c07;
}

.footer-cta-btn:hover .ft-btn-icon {
    transform: translateX(3px);
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.footer-pulse {
    padding: 28px 0;
    border-top: 1px solid rgba(200, 168, 88, 0.08);
    border-bottom: 1px solid rgba(200, 168, 88, 0.08);
    background: rgba(200, 168, 88, 0.03);
}

.footer-pulse-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-pulse-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 44px;
}

.ft-pulse-number {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: #F39A3D;
    letter-spacing: -0.01em;
    line-height: 1;
}

.ft-pulse-label {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    white-space: nowrap;
}

.ft-pulse-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(200, 168, 88, 0.22), transparent);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   MAIN FOOTER GRID
══════════════════════════════════════ */
.footer-main {
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1.25fr;
    gap: 52px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-about {
    padding-right: 20px;
}

.footer-logo-section {
    margin-bottom: 20px;
}

.footer-brand {
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
}

.footer-brand:hover {
    opacity: 0.88;
}

.footer-brand-img {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 11px;
    font-style: italic;
    color: rgba(200, 168, 88, 0.55);
    margin: 7px 0 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-description {
    font-family: var(--font-primary);
    font-size: 13.5px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    max-width: 340px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(243, 154, 61, 0.18), rgba(200, 168, 88, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    border-color: rgba(243, 154, 61, 0.28);
    color: #F39A3D;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(243, 154, 61, 0.12);
}

.footer-social a:hover::after {
    opacity: 1;
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

/* Column headings */
.footer-heading {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #F39A3D, rgba(200, 168, 88, 0.25));
    border-radius: 1px;
}

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

.footer-links a {
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.48);
    display: flex;
    align-items: center;
    gap: 0;
    padding: 7px 0;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.ft-link-arrow {
    font-size: 11px;
    color: transparent;
    opacity: 0;
    transform: translateX(-4px);
    margin-right: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 4px;
}

.footer-links a:hover .ft-link-arrow {
    color: #F39A3D;
    opacity: 1;
    width: 14px;
    margin-right: 4px;
    transform: translateX(0);
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    align-items: flex-start;
}

.ft-contact-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(243, 154, 61, 0.07);
    border: 1px solid rgba(243, 154, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.ft-contact-icon i {
    font-size: 12px;
    color: rgba(243, 154, 61, 0.55);
    transition: color 0.3s ease;
}

.footer-contact li:hover .ft-contact-icon {
    background: rgba(243, 154, 61, 0.13);
    border-color: rgba(243, 154, 61, 0.22);
}

.footer-contact li:hover .ft-contact-icon i {
    color: #F39A3D;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #F39A3D;
}

/* KATO badge */
.footer-accreditation {
    margin-top: 20px;
}

.accreditation-badge {
    height: 52px;
    width: auto;
    filter: brightness(1.1) grayscale(0.25);
    opacity: 0.65;
    transition: all 0.35s ease;
}

.accreditation-badge:hover {
    filter: brightness(1.3) grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* ══════════════════════════════════════
   NEWSLETTER ROW
══════════════════════════════════════ */
.footer-newsletter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-top: 52px;
    padding: 28px 36px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(200, 168, 88, 0.09);
    position: relative;
    overflow: hidden;
}

.footer-newsletter-row::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: radial-gradient(ellipse at 100% 50%, rgba(243, 154, 61, 0.05), transparent 70%);
    pointer-events: none;
}

.ft-newsletter-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.ft-newsletter-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(243, 154, 61, 0.1);
    border: 1px solid rgba(243, 154, 61, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ft-newsletter-icon i {
    font-size: 18px;
    color: #F39A3D;
}

.ft-newsletter-text h4 {
    margin: 0 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.ft-newsletter-text p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.36);
    line-height: 1.5;
}

/* Newsletter form */
.footer-newsletter-form {
    display: flex;
    flex: 1;
    max-width: 400px;
    border: 1px solid rgba(200, 168, 88, 0.15);
    border-radius: 100px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-newsletter-form:focus-within {
    border-color: rgba(243, 154, 61, 0.35);
    box-shadow: 0 0 0 3px rgba(243, 154, 61, 0.06);
}

.footer-newsletter-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 13px 22px;
    font-family: var(--font-primary);
    font-size: 13px;
    color: #fff;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.footer-newsletter-form input:focus {
    outline: none;
}

.footer-newsletter-form button {
    flex-shrink: 0;
    background: linear-gradient(135deg, #F39A3D, #C8A040);
    border: none;
    color: #0d0c07;
    padding: 13px 26px;
    font-family: var(--font-primary);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 100px 100px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-newsletter-form button i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: linear-gradient(135deg, #FFD166, #F39A3D);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form button:hover i {
    transform: translateX(2px) translateY(-1px);
}

/* legacy compat */
.footer-newsletter-feedback {
    margin: 10px 0 0;
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════
   FOOTER BOTTOM BAR
══════════════════════════════════════ */
.footer-bottom {
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright p {
    font-family: var(--font-primary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.24);
    margin: 0;
    letter-spacing: 0.2px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-legal a {
    font-family: var(--font-primary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.24);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.04);
}

.ft-legal-dot {
    color: rgba(255, 255, 255, 0.12);
    font-size: 16px;
    line-height: 1;
    user-select: none;
}

/* Back-to-top */
.footer-back-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 154, 61, 0.07);
    border: 1px solid rgba(243, 154, 61, 0.14);
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.footer-back-top i {
    font-size: 13px;
    color: rgba(243, 154, 61, 0.55);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.ft-btt-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(243, 154, 61, 0.38);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-back-top:hover {
    background: rgba(243, 154, 61, 0.14);
    border-color: rgba(243, 154, 61, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(243, 154, 61, 0.13);
}

.footer-back-top:hover i {
    color: #F39A3D;
    transform: translateY(-2px);
}

.footer-back-top:hover .ft-btt-ring {
    opacity: 1;
    animation: bttSpin 1s linear infinite;
}

@keyframes bttSpin {
    to {
        transform: rotate(360deg);
    }
}

.footer-back-top span:not(.ft-btt-ring) {
    display: none;
}

/* ─── legacy selectors kept for JS compatibility ─── */
.footer-social-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 168, 88, 0.08);
}

.social-heading {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-badge span {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    color: rgba(200, 168, 88, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    background: rgba(200, 168, 88, 0.06);
    border: 1px solid rgba(200, 168, 88, 0.12);
    border-radius: 4px;
}

/* Grand CTA legacy classes (no longer in HTML, kept for safety) */
.footer-grand-cta {
    position: relative;
    padding: 0;
}

.footer-grand-cta-bg,
.footer-grand-cta-bg::before {
    display: none;
}

.footer-grand-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-grand-eyebrow {
    display: block;
    font-family: var(--font-accent);
    font-size: 13px;
    font-style: italic;
    color: rgba(200, 168, 88, 0.75);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-grand-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.footer-grand-title em {
    font-style: normal;
    font-family: var(--font-accent);
    font-weight: 400;
    background: linear-gradient(135deg, #FFD166, #C8A040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legacy newsletter */
.footer-newsletter {
    margin-bottom: 24px;
}

.footer-newsletter h4 {
    margin: 0 0 8px;
    font-family: var(--font-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:1199px) {
    .footer-grid {
        grid-template-columns: 1.35fr 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 40px;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
    }

    .footer-description {
        grid-column: 1;
        margin-bottom: 0;
    }

    .footer-social {
        grid-column: 2;
        align-self: end;
    }

    .ft-pulse-item {
        padding: 0 28px;
    }

    .footer-newsletter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 28px 28px;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }
}

@media (max-width:991px) {
    .footer-cta-immersive {
        padding: 70px 0 60px;
    }

    .footer-pulse-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .ft-pulse-divider {
        display: none;
    }

    .ft-pulse-item {
        padding: 14px 0;
    }
}

@media (max-width:767px) {
    .footer-terrain-line svg {
        height: 50px;
    }

    .footer-cta-immersive {
        padding: 56px 0 48px;
    }

    .footer-cta-headline {
        font-size: 30px;
    }

    .footer-cta-sub {
        font-size: 14px;
    }

    .footer-main {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-about {
        display: flex;
        flex-direction: column;
    }

    .footer-brand-img {
        width: 180px;
    }

    .footer-newsletter-row {
        border-radius: 12px;
        padding: 22px 18px;
    }

    .footer-newsletter-form {
        border-radius: 12px;
        flex-direction: column;
    }

    .footer-newsletter-form button {
        border-radius: 0 0 12px 12px;
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 18px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width:480px) {
    .footer-cta-headline {
        font-size: 26px;
    }

    .footer-cta-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
        gap: 10px;
    }

    .ft-eyebrow-line {
        width: 18px;
    }

    .footer-heading {
        font-size: 9px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .ft-contact-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .ft-contact-icon i {
        font-size: 11px;
    }

    .ft-newsletter-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .ft-newsletter-icon i {
        font-size: 16px;
    }

    .ft-pulse-item {
        padding: 10px 0;
    }

    .ft-pulse-number {
        font-size: 20px;
    }
}

/* Terrain SVG divider */
.footer-terrain-line {
    position: relative;
    margin-top: -1px;
    line-height: 0;
}

.footer-terrain-line svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== IMMERSIVE CTA SECTION ===== */
.footer-cta-immersive {
    position: relative;
    padding: 90px 0 80px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 120% at 50% 100%, rgba(243, 154, 61, 0.10), transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 60%, rgba(200, 160, 50, 0.07), transparent),
        radial-gradient(ellipse 50% 70% at 85% 40%, rgba(228, 43, 22, 0.04), transparent),
        linear-gradient(180deg, #0c0b06 0%, #0a0906 100%);
}

/* Floating particles */
.footer-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ft-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 170, 90, 0.5), transparent 70%);
    animation: ftFloat 12s ease-in-out infinite;
}

.ft-p1 {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.ft-p2 {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 25%;
    animation-delay: -3s;
    animation-duration: 11s;
}

.ft-p3 {
    width: 8px;
    height: 8px;
    top: 30%;
    left: 70%;
    animation-delay: -5s;
    animation-duration: 16s;
}

.ft-p4 {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 80%;
    animation-delay: -7s;
    animation-duration: 13s;
}

.ft-p5 {
    width: 5px;
    height: 5px;
    top: 20%;
    left: 50%;
    animation-delay: -2s;
    animation-duration: 15s;
}

.ft-p6 {
    width: 4px;
    height: 4px;
    top: 50%;
    left: 90%;
    animation-delay: -9s;
    animation-duration: 12s;
}

@keyframes ftFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(15px) scale(1.4);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-10px) translateX(-10px) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-40px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }
}

/* CTA Glow */
.footer-cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(243, 154, 61, 0.08) 0%, transparent 65%);
    pointer-events: none;
    animation: ftGlowPulse 6s ease-in-out infinite;
}

@keyframes ftGlowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.footer-cta-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-cta-content {
    max-width: 600px;
}

.footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-style: italic;
    color: rgba(200, 170, 90, 0.75);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ft-eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 170, 90, 0.5), transparent);
}

.footer-cta-headline {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.footer-cta-headline em {
    font-style: normal;
    font-family: var(--font-accent);
    font-weight: 400;
    background: linear-gradient(135deg, #FFD700, #F39A3D, #C8A85A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ftGradientShift 4s ease-in-out infinite;
}

@keyframes ftGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-cta-sub {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    margin: 0 auto;
}

/* CTA Button — Premium */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #0c0b06;
    background: linear-gradient(135deg, #FFD700, #F39A3D);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 60px;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(243, 154, 61, 0.25);
}

.ft-btn-text {
    position: relative;
    z-index: 1;
}

.ft-btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    font-size: 11px;
    transition: all 0.35s ease;
}

.ft-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: ftShimmer 3s ease-in-out infinite;
}

@keyframes ftShimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.footer-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 45px rgba(243, 154, 61, 0.35), 0 4px 16px rgba(0, 0, 0, 0.3);
    color: #0c0b06;
}

.footer-cta-btn:hover .ft-btn-icon {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(4px);
}

/* ===== SAFARI PULSE STATS BAR ===== */
.footer-pulse {
    position: relative;
    padding: 32px 0;
    background: rgba(200, 170, 90, 0.04);
    border-top: 1px solid rgba(200, 170, 90, 0.08);
    border-bottom: 1px solid rgba(200, 170, 90, 0.08);
}

.footer-pulse-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.ft-pulse-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 48px;
}

.ft-pulse-number {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 700;
    color: #F39A3D;
    letter-spacing: -0.02em;
}

.ft-pulse-label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ft-pulse-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(200, 170, 90, 0.25), transparent);
    flex-shrink: 0;
}

/* ===== MAIN FOOTER ===== */
.footer-main {
    padding: 70px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 56px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-about {
    padding-right: 24px;
}

.footer-logo-section {
    margin-bottom: 24px;
}

.footer-brand {
    display: inline-block;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand-img {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: filter 0.4s ease;
}

.footer-brand:hover .footer-brand-img {
    filter: brightness(1.15);
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F39A3D, transparent 80%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand:hover::after {
    transform: scaleX(1);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 13px;
    font-style: italic;
    color: rgba(200, 170, 90, 0.65);
    margin: 8px 0 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-description {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
    max-width: 380px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(243, 154, 61, 0.2), rgba(200, 170, 90, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 10px;
}

.footer-social a:hover {
    border-color: rgba(243, 154, 61, 0.35);
    color: #F39A3D;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(243, 154, 61, 0.15);
}

.footer-social a:hover::before {
    opacity: 1;
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #F39A3D, rgba(200, 170, 90, 0.3));
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px 0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ft-link-arrow {
    display: inline-block;
    font-size: 12px;
    color: rgba(243, 154, 61, 0);
    margin-right: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
    overflow: hidden;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 2px;
}

.footer-links a:hover .ft-link-arrow {
    color: #F39A3D;
    margin-right: 6px;
    transform: translateX(0);
    width: auto;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    align-items: flex-start;
}

.ft-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(243, 154, 61, 0.08);
    border: 1px solid rgba(243, 154, 61, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ft-contact-icon i {
    font-size: 13px;
    color: rgba(243, 154, 61, 0.65);
    transition: color 0.3s ease;
}

.footer-contact li:hover .ft-contact-icon {
    background: rgba(243, 154, 61, 0.15);
    border-color: rgba(243, 154, 61, 0.25);
}

.footer-contact li:hover .ft-contact-icon i {
    color: #F39A3D;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.25s ease;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #F39A3D;
}

/* Accreditation */
.footer-accreditation {
    margin-top: 24px;
}

.accreditation-badge {
    height: 56px;
    filter: brightness(1.1) grayscale(0.3);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.accreditation-badge:hover {
    filter: brightness(1.3) grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* ===== NEWSLETTER ROW ===== */
.footer-newsletter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 56px;
    padding: 36px 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(243, 154, 61, 0.06), rgba(200, 170, 90, 0.04));
    border: 1px solid rgba(200, 170, 90, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-newsletter-row::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(ellipse at 100% 50%, rgba(243, 154, 61, 0.06), transparent 70%);
    pointer-events: none;
}

.ft-newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ft-newsletter-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(243, 154, 61, 0.15), rgba(200, 170, 90, 0.08));
    border: 1px solid rgba(243, 154, 61, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ft-newsletter-icon i {
    font-size: 20px;
    color: #F39A3D;
}

.ft-newsletter-text h4 {
    margin: 0 0 4px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

.ft-newsletter-text p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    min-width: 360px;
    border: 1px solid rgba(200, 170, 90, 0.18);
    border-radius: 60px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.25);
}

.footer-newsletter-form:focus-within {
    border-color: rgba(243, 154, 61, 0.4);
    box-shadow: 0 0 20px rgba(243, 154, 61, 0.08);
}

.footer-newsletter-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-family: var(--font-primary);
    font-size: 13px;
    color: #fff;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
    outline: none;
}

.footer-newsletter-form button {
    background: linear-gradient(135deg, #F39A3D, #C8A85A);
    border: none;
    color: #0c0b06;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s ease;
    white-space: nowrap;
    border-radius: 0 60px 60px 0;
}

.footer-newsletter-form button i {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: linear-gradient(135deg, #FFD700, #F39A3D);
    box-shadow: 0 4px 16px rgba(243, 154, 61, 0.25);
}

.footer-newsletter-form button:hover i {
    transform: translateX(3px) translateY(-2px);
}

/* Legacy newsletter feedback compat */
.footer-newsletter-feedback {
    margin: 10px 0 0;
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    padding: 24px 0;
    border-top: 1px solid rgba(200, 170, 90, 0.06);
    margin-top: 56px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright p {
    font-family: var(--font-primary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-legal {
    display: flex;
    gap: 4px;
    align-items: center;
}

.footer-legal a {
    font-family: var(--font-primary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    transition: all 0.25s ease;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 6px;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.04);
}

.ft-legal-dot {
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 700;
}

/* Back to Top — Enhanced */
.footer-back-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(243, 154, 61, 0.08);
    border: 1px solid rgba(243, 154, 61, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.footer-back-top i {
    font-size: 14px;
    color: rgba(243, 154, 61, 0.6);
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.ft-btt-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(243, 154, 61, 0.4);
    transition: all 0.4s ease;
    opacity: 0;
}

.footer-back-top:hover {
    background: rgba(243, 154, 61, 0.15);
    border-color: rgba(243, 154, 61, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(243, 154, 61, 0.15);
}

.footer-back-top:hover i {
    color: #F39A3D;
    transform: translateY(-2px);
}

.footer-back-top:hover .ft-btt-ring {
    opacity: 1;
    animation: ftRingSpin 1.2s linear infinite;
}

@keyframes ftRingSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Legacy compat */
.footer-back-top span:not(.ft-btt-ring) {
    display: none;
}

/* Footer Social Section (legacy compat) */
.footer-social-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 170, 90, 0.08);
}

.social-heading {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Badge (if present) */
.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-badge span {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    color: rgba(200, 170, 90, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    background: rgba(200, 170, 90, 0.06);
    border: 1px solid rgba(200, 170, 90, 0.12);
    border-radius: 4px;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 44px;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 40px;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
    }

    .footer-description {
        grid-column: 1;
        margin-bottom: 0;
    }

    .footer-social {
        grid-column: 2;
        align-self: end;
    }

    .ft-pulse-item {
        padding: 0 32px;
    }

    .footer-newsletter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 30px 32px;
    }

    .footer-newsletter-form {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .footer-cta-immersive {
        padding: 70px 0 60px;
    }

    .footer-pulse-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .ft-pulse-divider {
        display: none;
    }

    .ft-pulse-item {
        padding: 16px 0;
    }
}

@media (max-width: 767px) {
    .footer-cta-immersive {
        padding: 56px 0 48px;
    }

    .footer-cta-headline {
        font-size: 30px;
    }

    .footer-cta-sub {
        font-size: 14px;
    }

    .footer-main {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-about {
        display: flex;
        flex-direction: column;
    }

    .footer-brand-img {
        width: 200px;
    }

    .footer-newsletter-row {
        border-radius: 12px;
        padding: 24px 20px;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 12px;
    }

    .footer-newsletter-form button {
        border-radius: 0 0 12px 12px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-pulse-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-cta-immersive {
        padding: 44px 0 36px;
    }

    .footer-cta-headline {
        font-size: 26px;
    }

    .footer-cta-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .ft-eyebrow-line {
        width: 20px;
    }

    .footer-heading {
        font-size: 10px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .ft-contact-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .ft-contact-icon i {
        font-size: 12px;
    }

    .ft-newsletter-icon {
        width: 44px;
        height: 44px;
    }

    .ft-newsletter-icon i {
        font-size: 16px;
    }
}

/* Utility: Text Split Animation */
.textsplit {
    opacity: 0;
    transform: translateY(20px);
}

.textsplit.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Animations */
.fadeInUpBig {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeInUpBig.animated,
.fadeInUpBig.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-top {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* No Select */
body {
    user-select: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4422;
}

/* Bootstrap Grid Override */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.offset-xl-2 {
    margin-left: 16.666667%;
}

@media (max-width: 1199px) {
    .col-lg-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 991px) {

    .col-lg-8,
    .col-lg-4,
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .offset-xl-2 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {

    .col-lg-8,
    .col-lg-4,
    .col-lg-3,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-5 {
    margin-top: 3rem;
}

/* About Background Section */
.about-bg-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-bg-section .menubg {
    opacity: 0.1;
}

.about-bg-section .menubg img {
    width: 150%;
}

/* Video Background for Hero */
.hero-bg-video video,
.hero-bg-video iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    min-width: 100%;
    min-height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Ensure poster doesn't hide video */
.hero-bg-video video::-webkit-media-controls {
    display: none !important;
}

.hero-bg-video video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Mobile Menu Effect */
.navbar-toggle {
    display: none;
}

@media (max-width: 991px) {
    .navbar-toggle {
        display: block;
        padding: 10px;
        cursor: pointer;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        margin: 5px 0;
    }
}

/* Scroll Progress */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.progress-bar {
    height: 3px;
    background: linear-gradient(90deg, #F39A3D 0%, #ffce45 100%);
    width: 0%;
    box-shadow: 0 0 16px rgba(228, 43, 22, 0.45);
    transition: width 0.12s linear;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =====================================
   SIGNATURE EXPERIENCES SECTION
   ===================================== */

.signature-experiences-section {
    background: url('images/c91f5c44-e6ee-490f-882a-e27e75dda386.webp') center/cover no-repeat;
    position: relative;
    overflow: visible;
    margin-top: 0;
    z-index: 20;
}

.signature-experiences-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 239, 225, 0.92);
    z-index: 1;
}

/* Signature Hero Section */
.signature-hero {
    position: relative;
    padding: 104px 80px 48px;
    min-height: auto;
    display: flex;
    align-items: center;
    z-index: 2;
}

.signature-content {
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.signature-bird-accent {
    position: relative;
    display: flex;
    justify-content: center;
    margin: -210px auto 8px;
    z-index: 4;
    pointer-events: none;
}

.signature-bird-image {
    width: clamp(220px, 24vw, 390px);
    max-width: 72vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
}

.signature-text {
    position: relative;
    text-align: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.signature-tagline {
    font-family: var(--font-montserrat);
    font-size: 13px;
    color: #39B54A;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.signature-title {
    font-family: var(--font-secondary);
    font-size: clamp(33px, 4.5vw, 62px);
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    text-transform: none;
    text-shadow: none;
}

.signature-popular-header {
    margin-top: 30px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 800;
    color: #F39A3D;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
}

.signature-subtitle {
    font-family: var(--font-open-sans);
    font-size: 18px;
    color: rgba(31, 31, 31, 0.74);
    line-height: 1.72;
    max-width: 760px;
    margin: 0;
    margin-inline: auto;
}

.signature-points {
    margin-top: 22px;
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.signature-points span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(31, 31, 31, 0.16);
    background: rgba(255, 255, 255, 0.65);
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(31, 31, 31, 0.78);
}

.signature-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #f39a3d;
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.signature-primary-link:hover {
    transform: translateY(-1px);
    color: #39b54a;
}

/* Experience Cards Section */
.experience-cards-section {
    padding: 0 80px 100px;
    position: relative;
    z-index: 2;
}

.experience-cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.experience-card {
    position: relative;
    border-radius: 18px;
    perspective: 1200px;
    transform-style: preserve-3d;
    overflow: visible;
    transition: transform 0.3s ease;
    cursor: pointer;
    min-height: 0;
}

.experience-card-inner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(8, 16, 32, 0.18);
    transform-style: preserve-3d;
    transition: transform 0.22s ease;
    will-change: transform;
    height: 100%;
    aspect-ratio: 4 / 5;
}

.experience-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 28, 0.28) 100%);
    transition: all 0.4s ease;
}

.experience-card.is-tilting .experience-overlay,
.experience-card:hover .experience-overlay {
    background: linear-gradient(180deg, rgba(57, 181, 74, 0.12) 0%, rgba(243, 154, 61, 0.46) 100%);
}

.experience-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 20px 18px;
    background: linear-gradient(180deg, rgba(10, 12, 18, 0.02) 0%, rgba(10, 12, 18, 0.55) 36%, rgba(10, 12, 18, 0.88) 100%);
    transform-style: preserve-3d;
}

.experience-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    background: rgba(15, 20, 28, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 0.72rem;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(3px);
}

.experience-card-content h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 7px;
}

.experience-card-content p {
    font-family: var(--font-open-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    margin-bottom: 12px;
}

.experience-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 700;
    color: #E42B16;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.experience-link i {
    transition: transform 0.3s ease;
}

.experience-card.is-tilting .experience-link i,
.experience-card:hover .experience-link i {
    transform: translateX(5px);
}

.experience-card [data-depth] {
    transform: translateZ(calc(var(--depth, 0) * 1px));
    transition: transform 0.22s ease;
    will-change: transform;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .signature-hero {
        padding: 86px 40px 36px;
    }

    .signature-bird-accent {
        margin-top: -165px;
    }

    .experience-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .signature-hero {
        padding: 68px 24px 28px;
    }

    .signature-bird-accent {
        margin-top: -130px;
        margin-bottom: 6px;
    }

    .signature-bird-image {
        width: clamp(170px, 48vw, 280px);
        max-width: 82vw;
    }

    .signature-title {
        font-size: clamp(29px, 8.2vw, 44px);
    }

    .signature-subtitle {
        font-size: 16px;
    }

    .signature-points {
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .experience-cards-section {
        padding: 0 30px 60px;
    }

    .experience-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-card-inner {
        aspect-ratio: 16 / 12;
    }
}

@media (max-width: 480px) {
    .signature-hero {
        padding: 56px 16px 22px;
    }

    .signature-title {
        font-size: 31px;
    }

    .signature-tagline {
        font-size: 11px;
    }

    .signature-subtitle {
        font-size: 15px;
    }

    .experience-cards-section {
        padding: 0 20px 40px;
    }
}

/* =====================================
   WHY TRAVEL WITH US SECTION
   ===================================== */

.why-travel-section {
    background: url('images/c91f5c44-e6ee-490f-882a-e27e75dda386.webp') center/cover no-repeat;
    background-color: #1a1614;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.why-travel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 22, 20, 0.94) 0%, rgba(20, 18, 16, 0.96) 100%);
    z-index: 1;
}

.why-travel-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Header */
.why-travel-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-travel-subtitle {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    color: #B8941F;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.why-travel-title {
    font-family: var(--font-montserrat);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    color: #e8dfd6;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

/* Description */
.why-travel-description {
    text-align: center;
    margin-bottom: 60px;
}

.why-travel-description p {
    font-family: var(--font-open-sans);
    font-size: 18px;
    line-height: 1.9;
    color: rgba(212, 196, 176, 0.9);
    max-width: 1100px;
    margin: 0 auto;
    font-weight: 400;
}

/* Feature Cards Grid */
.why-travel-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

.why-feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
}

.why-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(15, 13, 12, 0.3) 0%,
            rgba(15, 13, 12, 0.7) 50%,
            rgba(15, 13, 12, 0.95) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.why-feature-card:hover .why-feature-overlay {
    background: linear-gradient(180deg,
            rgba(15, 13, 12, 0.2) 0%,
            rgba(15, 13, 12, 0.6) 50%,
            rgba(212, 175, 55, 0.85) 100%);
}

.why-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
}

.why-feature-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Feature Number Badge */
.why-feature-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 800;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-number {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1614;
    transform: rotate(360deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Feature Title */
.why-feature-title {
    font-family: var(--font-montserrat);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-title {
    color: #ffffff;
    transform: translateY(-5px);
}

/* Feature Text */
.why-feature-text {
    font-family: var(--font-open-sans);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .why-travel-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-travel-section {
        padding: 80px 0;
    }

    .why-feature-card {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .why-travel-section {
        padding: 60px 0;
    }

    .why-travel-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature-card {
        height: 380px;
    }

    .why-feature-content {
        padding: 30px 25px;
    }

    .why-feature-number {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .why-feature-title {
        font-size: 22px;
    }

    .why-feature-text {
        font-size: 14px;
    }

    .why-travel-content {
        padding: 0 30px;
    }

    .why-travel-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature-card {
        padding: 35px 25px;
    }

    .why-travel-description {
        margin-bottom: 40px;
    }

    .why-travel-description p {
        font-size: 16px;
    }

    .why-travel-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .why-travel-content {
        padding: 0 20px;
    }

    .why-feature-card {
        padding: 30px 20px;
    }

    .why-feature-icon {
        width: 60px;
        height: 60px;
    }

    .why-feature-title {
        font-size: 18px;
    }

    .why-feature-text {
        font-size: 14px;
    }
}

/* =====================================
   SIGNATURE TOURS DECK
   ===================================== */

.signature-tours-section {
    position: relative;
    background: #121315;
    padding: 90px 0 100px;
    overflow: hidden;
}

.signature-tours-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(212, 63, 38, 0.2), transparent 35%),
        radial-gradient(circle at 90% 85%, rgba(212, 175, 55, 0.1), transparent 35%);
    pointer-events: none;
}

.signature-tours-header {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.signature-tours-subtitle {
    margin: 0 0 8px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d7c96e;
}

.signature-tours-title {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: clamp(44px, 5vw, 78px);
    color: #f2f2f2;
    line-height: 0.95;
    letter-spacing: 0.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.signature-tours-deck {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
}

.tour-accordion-card {
    position: relative;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    overflow: hidden;
    flex: 0.75 1 0%;
    transition: flex-grow 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s ease, filter 0.35s ease;
}

.tour-accordion-card.is-featured {
    flex-grow: 4.6;
}

.signature-tours-deck:hover .tour-accordion-card,
.signature-tours-deck:focus-within .tour-accordion-card {
    flex-grow: 0.7;
}

.signature-tours-deck:hover .tour-accordion-card:hover,
.signature-tours-deck:focus-within .tour-accordion-card:focus-within {
    flex-grow: 5;
    transform: translateY(-6px);
    filter: saturate(1.08);
}

.tour-active-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.2) 0%, rgba(8, 10, 14, 0.72) 100%);
    transition: background 0.35s ease;
}

.tour-accordion-card:hover .tour-active-overlay,
.tour-accordion-card.is-featured .tour-active-overlay {
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.18) 0%, rgba(8, 10, 14, 0.62) 55%, rgba(8, 10, 14, 0.8) 100%);
}

.tour-active-content {
    position: absolute;
    inset: auto 30px 36px 30px;
    text-align: center;
    color: #fff;
    transition: opacity 0.3s ease, transform 0.35s ease;
}

.tour-active-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-montserrat);
    font-size: 22px;
    margin-bottom: 18px;
}

.tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content h3,
.tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content p,
.tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content .tour-active-btn {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    visibility: hidden;
}

.tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content {
    inset: auto 8px 20px 8px;
}

.tour-accordion-card:not(:hover):not(.is-featured) .tour-active-number {
    margin-bottom: 0;
}

.signature-tours-deck:hover .tour-accordion-card:not(:hover) .tour-active-content h3,
.signature-tours-deck:hover .tour-accordion-card:not(:hover) .tour-active-content p,
.signature-tours-deck:hover .tour-accordion-card:not(:hover) .tour-active-content .tour-active-btn,
.signature-tours-deck:focus-within .tour-accordion-card:not(:focus-within) .tour-active-content h3,
.signature-tours-deck:focus-within .tour-accordion-card:not(:focus-within) .tour-active-content p,
.signature-tours-deck:focus-within .tour-accordion-card:not(:focus-within) .tour-active-content .tour-active-btn {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    visibility: hidden;
}

.signature-tours-deck:hover .tour-accordion-card:not(:hover) .tour-active-content,
.signature-tours-deck:focus-within .tour-accordion-card:not(:focus-within) .tour-active-content {
    inset: auto 8px 20px 8px;
}

.signature-tours-deck:hover .tour-accordion-card:not(:hover) .tour-active-number,
.signature-tours-deck:focus-within .tour-accordion-card:not(:focus-within) .tour-active-number {
    margin-bottom: 0;
}

.tour-active-content h3 {
    margin: 0 0 16px;
    font-family: var(--font-montserrat);
    font-size: clamp(28px, 3vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.tour-active-content p {
    margin: 0 auto 26px;
    max-width: 860px;
    font-family: var(--font-open-sans);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.tour-active-btn {
    display: inline-block;
    text-decoration: none;
    background: #c5442a;
    color: #fff;
    border: 1px solid #c5442a;
    border-radius: 10px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.25s ease;
}

.tour-active-btn:hover {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1199px) {
    .tour-accordion-card {
        min-height: 460px;
    }

    .tour-active-content h3 {
        font-size: clamp(30px, 2.5vw, 40px);
    }
}

@media (max-width: 991px) {
    .signature-tours-section {
        padding: 70px 0 80px;
    }

    .signature-tours-deck {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .tour-accordion-card,
    .tour-accordion-card.is-featured,
    .signature-tours-deck:hover .tour-accordion-card,
    .signature-tours-deck:hover .tour-accordion-card:hover {
        flex: initial;
        transform: none;
    }

    .tour-accordion-card {
        min-height: 470px;
        border-radius: 28px;
    }

    .tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content h3,
    .tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content p,
    .tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content .tour-active-btn {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        visibility: visible;
    }

    .tour-accordion-card:not(:hover):not(.is-featured) .tour-active-content {
        inset: auto 24px 24px 24px;
    }

    .tour-accordion-card:not(:hover):not(.is-featured) .tour-active-number {
        margin-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .signature-tours-subtitle {
        font-size: 12px;
    }

    .signature-tours-title {
        font-size: clamp(34px, 10vw, 54px);
    }

    .tour-accordion-card {
        min-height: 420px;
    }

    .tour-active-content {
        left: 18px;
        right: 18px;
        bottom: 22px;
    }

    .tour-active-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .tour-active-content h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .tour-active-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .tour-active-btn {
        width: 100%;
        text-align: center;
    }
}

/* =====================================
   SCROLL DOWN INDICATOR
   ===================================== */

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    animation: bounceIndicator 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-down-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
    animation-play-state: paused;
}

@keyframes bounceIndicator {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* Mouse Icon */
.scroll-down-mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.scroll-down-indicator:hover .scroll-down-mouse {
    border-color: #E42B16;
    background: rgba(228, 43, 22, 0.1);
}

/* Mouse Wheel */
.scroll-down-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-down-indicator:hover .scroll-down-wheel {
    background: #E42B16;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Scroll Text */
.scroll-down-text {
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.scroll-down-indicator:hover .scroll-down-text {
    color: #E42B16;
    text-shadow: 0 2px 15px rgba(228, 43, 22, 0.4);
}

/* Chevron Arrow */
.scroll-down-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    animation: arrowBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-down-indicator:hover .scroll-down-arrow {
    color: #E42B16;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .scroll-down-indicator {
        bottom: 30px;
    }

    .scroll-down-mouse {
        width: 26px;
        height: 45px;
    }

    .scroll-down-text {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .scroll-down-arrow {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .scroll-down-indicator {
        bottom: 25px;
    }

    .scroll-down-mouse {
        width: 24px;
        height: 40px;
        border-width: 2px;
    }

    .scroll-down-wheel {
        width: 3px;
        height: 8px;
    }

    .scroll-down-text {
        font-size: 9px;
    }
}

/* =====================================
   YOUR JOURNEY. OUR LEGACY SECTION
   Interactive Expanding Cards Design
   ===================================== */

/* =====================================
   YOUR JOURNEY. OUR LEGACY SECTION
   Interactive Expanding Cards Design
   ===================================== */

.legacy-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.legacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(228, 43, 22, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.legacy-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px 40px;
    position: relative;
}

/* ===== HEADER ===== */
.legacy-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.legacy-subtitle {
    font-family: var(--font-open-sans);
    font-size: 16px;
    font-weight: 600;
    color: #F39A3D;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.legacy-main-heading {
    font-family: var(--font-montserrat);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

/* ===== INTERACTIVE SAFARI CARDS ===== */
.safari-cards-container {
    display: flex;
    gap: 10px;
    height: 600px;
    width: 100%;
    align-items: stretch;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.safari-expand-card {
    position: relative;
    flex: 1;
    min-width: 116px;
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active/Expanded State */
.safari-expand-card.active,
.safari-expand-card:hover {
    flex: 2.35;
}

/* Background Image */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Dark Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.5s ease;
}

.safari-expand-card.active .card-overlay,
.safari-expand-card:hover .card-overlay {
    background: linear-gradient(to bottom,
            rgba(228, 43, 22, 0.2) 0%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* Card Content */
.card-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
}

/* Card Title */
.card-title {
    font-family: var(--font-montserrat);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expanded Content (Hidden by default) */
.card-expanded-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.safari-expand-card.active .card-expanded-content,
.safari-expand-card:hover .card-expanded-content {
    opacity: 1;
    max-height: 300px;
    transform: translateY(0);
}

/* Card Description */
.card-description {
    font-family: var(--font-open-sans);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* CTA Button */
.card-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F39A3D;
    color: #ffffff;
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-cta-button:hover {
    background: #c41e0f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(228, 43, 22, 0.5);
}

/* Collapsed State - Only show title */
.safari-expand-card:not(.active):not(:hover) .card-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0;
    position: static;
    line-height: 1.05;
    text-align: center;
}

.safari-expand-card:not(.active):not(:hover) .card-content-wrapper {
    justify-content: center;
    align-items: center;
    padding: 28px 12px;
}

/* ===== TRUST BADGES ROW ===== */
.legacy-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 44px 0 12px;
    margin-top: 44px;
    border-top: 2px solid rgba(32, 38, 43, 0.14);
    position: relative;
    z-index: 10;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
    min-height: 170px;
    padding: 30px 24px;
    background: #f2f4f7;
    border: 1px solid rgba(32, 38, 43, 0.14);
    border-radius: 18px;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.trust-badge-item:hover {
    background: #f6f8fb;
    border-color: rgba(243, 154, 61, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(20, 26, 34, 0.1);
}

.trust-badge-item i {
    font-size: 48px;
    color: #F39A3D;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(243, 154, 61, 0.22));
}

.trust-badge-item:hover i {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 14px rgba(243, 154, 61, 0.32));
}

.trust-badge-item span {
    font-family: var(--font-montserrat);
    font-size: clamp(15px, 1.05vw, 18px);
    font-weight: 700;
    color: #2b3239;
    line-height: 1.35;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .safari-cards-container {
        height: 500px;
    }

    .legacy-main-heading {
        font-size: clamp(32px, 4.5vw, 48px);
    }
}

@media (max-width: 991px) {
    .legacy-section {
        padding: 80px 0;
    }

    .legacy-container {
        padding: 0 30px;
    }

    .safari-cards-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .safari-expand-card {
        height: 350px;
        flex: none !important;
    }

    .safari-expand-card:not(.active):not(:hover) .card-title {
        writing-mode: horizontal-tb;
        transform: none;
        position: relative;
        bottom: auto;
        left: auto;
    }

    .safari-expand-card:not(.active):not(:hover) .card-content-wrapper {
        justify-content: flex-end;
        align-items: flex-start;
    }

    .card-expanded-content {
        opacity: 1;
        max-height: none;
        transform: translateY(0);
    }

    .legacy-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 36px 0 10px;
        margin-top: 36px;
    }

    .trust-badge-item {
        min-height: 150px;
        padding: 24px 18px;
    }

    .trust-badge-item i {
        font-size: 42px;
    }

    .trust-badge-item span {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .legacy-section {
        padding: 60px 0;
    }

    .legacy-container {
        padding: 0 20px;
    }

    .legacy-section-header {
        margin-bottom: 40px;
    }

    .legacy-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .legacy-main-heading {
        font-size: clamp(28px, 6vw, 36px);
    }

    .safari-expand-card {
        height: 400px;
    }

    .card-content-wrapper {
        padding: 30px 25px;
    }

    .card-title {
        font-size: clamp(20px, 4vw, 26px);
        margin-bottom: 15px;
    }

    .card-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .card-cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .legacy-trust-badges {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 30px 0 8px;
        margin-top: 30px;
    }

    .trust-badge-item {
        min-height: 130px;
        padding: 20px 16px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .trust-badge-item i {
        font-size: 34px;
    }

    .trust-badge-item span {
        font-size: 15px;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .safari-expand-card {
        height: 350px;
    }

    .card-content-wrapper {
        padding: 25px 20px;
    }

    .card-cta-button {
        width: 100%;
        justify-content: center;
    }
}

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

.cta-section {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(43, 43, 43, 0.98) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-text-side {
    position: relative;
}

.cta-label {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-montserrat);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-family: var(--font-open-sans);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-buttons-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 280px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 30px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-btn-primary {
    background: #FFD700;
    color: #1a1a1a;
    border: 2px solid #FFD700;
}

.cta-btn-primary:hover {
    background: transparent;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.cta-btn-primary:hover i {
    transform: translateX(5px);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.cta-btn-secondary:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-buttons-side {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons-side {
        width: 100%;
        min-width: auto;
    }

    .cta-btn {
        padding: 16px 25px;
        font-size: 13px;
    }
}

/* =====================================
   UI FINISH LAYER
   ===================================== */

:root {
    --ui-surface: #17191c;
    --ui-surface-soft: #1f2226;
    --ui-stroke: rgba(255, 255, 255, 0.1);
    --ui-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.site-header.scrolled {
    padding: 16px 60px;
    background: rgba(12, 13, 15, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 991px) {
    .site-header.scrolled {
        padding: 12px 20px;
    }
}

#signature-experiences,
#about,
#services,
#work,
#legacy,
#brands,
#popular-tours,
#contact {
    scroll-margin-top: 92px;
}

.signature-experiences-section,
.legacy-section,
.cta-section,
.why-travel-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.experience-card,
.brand-item,
.safari-expand-card,
.creation-item,
.tour-accordion-card,
.why-feature-card {
    border: 1px solid var(--ui-stroke);
    box-shadow: var(--ui-shadow);
}

/* Prevent double-layer look on the new 3D cards */
.experience-card.ac-3d-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.experience-card-content,
.brand-item,
.cta-content {
    backdrop-filter: blur(2px);
}

.site-title h2,
.legacy-main-heading,
.why-travel-title,
.signature-tours-title,
.cta-title {
    letter-spacing: -0.02em;
}

.filter-btn,
.card-cta-button,
.cta-btn,
.tour-active-btn {
    border-radius: 12px;
}

.filter-btn,
.card-cta-button,
.tour-active-btn {
    border-width: 1px;
}

.filter-btn:hover,
.card-cta-button:hover,
.tour-active-btn:hover {
    transform: translateY(-2px);
}

.footer-main,
.signature-tours-section,
.legacy-section,
.cta-section {
    background-blend-mode: normal;
}

.creation-item {
    border-radius: 14px;
}

.creation-item img {
    border-radius: 14px;
}

.safari-cards-container {
    border-radius: 18px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .safari-cards-container {
        padding: 0;
        background: transparent;
        border: none;
    }
}

/* Floating WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-fab i {
    font-size: 22px;
}

.whatsapp-fab:hover {
    color: #fff;
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

@media (max-width: 767px) {
    .whatsapp-fab {
        right: 14px;
        bottom: 14px;
        padding: 11px 13px;
    }

    .whatsapp-fab span {
        display: none;
    }
}

/* =====================================
   CLEAN LIGHT FINISH (BOTTOM SECTIONS)
   ===================================== */

.signature-tours-section {
    background: linear-gradient(180deg, #f7f4ed 0%, #f1ece2 100%);
}

.signature-tours-section::before {
    background:
        radial-gradient(circle at 12% 15%, rgba(243, 154, 61, 0.16), transparent 38%),
        radial-gradient(circle at 88% 85%, rgba(57, 181, 74, 0.12), transparent 34%);
}

.signature-tours-title {
    color: #242a2e;
}

.cta-section {
    background: linear-gradient(180deg, #f8f4ea 0%, #f3efe5 100%);
}

.cta-section::before {
    background: linear-gradient(90deg, transparent, rgba(243, 154, 61, 0.45), transparent);
}

.cta-title {
    color: #20262b;
}

.cta-subtitle {
    color: rgba(32, 38, 43, 0.72);
}

.cta-content {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(32, 38, 43, 0.1);
    border-radius: 16px;
    padding: 34px 36px;
}

.cta-btn-secondary {
    color: #20262b;
    border-color: rgba(32, 38, 43, 0.24);
}

.cta-btn-secondary:hover {
    border-color: rgba(32, 38, 43, 0.45);
    background: rgba(32, 38, 43, 0.05);
}

.why-travel-section {
    background: linear-gradient(180deg, #f6f2e9 0%, #f1ebe0 100%);
    min-height: auto;
}

.why-travel-section::before {
    background: linear-gradient(180deg, rgba(246, 242, 233, 0.86) 0%, rgba(241, 235, 224, 0.9) 100%);
}

.why-travel-title {
    color: #1f262c;
}

.why-travel-description p {
    color: rgba(31, 38, 44, 0.8);
}

.why-feature-card {
    border-color: rgba(32, 38, 43, 0.14);
    box-shadow: 0 16px 34px rgba(21, 25, 30, 0.12);
}

.why-feature-overlay {
    background: linear-gradient(180deg,
            rgba(249, 247, 241, 0.08) 0%,
            rgba(249, 247, 241, 0.42) 46%,
            rgba(249, 247, 241, 0.82) 100%);
}

.why-feature-card:hover .why-feature-overlay {
    background: linear-gradient(180deg,
            rgba(249, 247, 241, 0.16) 0%,
            rgba(249, 247, 241, 0.5) 44%,
            rgba(243, 154, 61, 0.54) 100%);
}

.why-feature-title,
.why-feature-text {
    color: #1f262c;
    text-shadow: none;
}

.modern-footer {
    background: #f9f6ee;
    border-top: 1px solid rgba(32, 38, 43, 0.12);
}

.footer-terrain-line path:first-child {
    fill: #f3ede1 !important;
}

.footer-terrain-line path:last-child {
    fill: rgba(243, 154, 61, 0.14) !important;
}

.footer-main {
    border-top: 1px solid rgba(32, 38, 43, 0.1);
}

.footer-grand-cta-bg {
    background:
        radial-gradient(ellipse 70% 120% at 20% 80%, rgba(243, 154, 61, 0.16), transparent),
        radial-gradient(ellipse 60% 100% at 85% 20%, rgba(57, 181, 74, 0.12), transparent),
        linear-gradient(180deg, #f6f2e8 0%, #f2ece0 100%);
}

.footer-grand-title,
.footer-brand,
.footer-heading,
.footer-links a,
.footer-contact li,
.footer-contact a,
.footer-copyright p,
.footer-legal a,
.footer-description {
    color: #222a31;
}

.footer-tagline {
    color: rgba(34, 42, 49, 0.72);
}

.footer-social a {
    background: rgba(34, 42, 49, 0.04);
    border-color: rgba(34, 42, 49, 0.12);
    color: rgba(34, 42, 49, 0.72);
}

.footer-social a:hover {
    background: rgba(243, 154, 61, 0.2);
    border-color: rgba(243, 154, 61, 0.34);
    color: #1f262c;
}

.footer-newsletter-form {
    border-color: rgba(34, 42, 49, 0.2);
}

.footer-newsletter-form input {
    background: rgba(34, 42, 49, 0.04);
    color: #1f262c;
}

.footer-newsletter-form input::placeholder {
    color: rgba(34, 42, 49, 0.45);
}

.footer-newsletter-form button {
    background: rgba(243, 154, 61, 0.22);
    border-left-color: rgba(243, 154, 61, 0.34);
    color: #1f262c;
}

.footer-bottom {
    background: rgba(34, 42, 49, 0.04);
    border-top: 1px solid rgba(34, 42, 49, 0.08);
}

.footer-back-top {
    background: rgba(34, 42, 49, 0.04);
    border-color: rgba(34, 42, 49, 0.16);
}

.footer-back-top i {
    color: #1f262c;
}

/* Services card pixel alignment */
#services .row.justify-content-center {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 22px;
    align-items: stretch;
}

#services .row.justify-content-center>[class*="col-"] {
    display: flex;
}

#services .col-cards {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

#services .flipContainer {
    height: 100%;
    min-height: 400px;
}

#services .front,
#services .back {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
}

#services .front .inner,
#services .back .inner {
    width: 100%;
}

#services .front h2,
#services .back h2 {
    margin-bottom: 12px;
}

#services .front ul,
#services .back ul {
    margin: 0;
}

#services .back ul {
    max-height: 196px;
    overflow: auto;
    padding-right: 8px;
}

@media (max-width: 991px) and (min-width: 768px) {
    #services .row.justify-content-center>.col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .cta-content {
        padding: 24px 18px;
        border-radius: 14px;
    }

    #services .flipContainer {
        min-height: 360px;
    }

    #services .front,
    #services .back {
        padding: 18px;
    }
}

/* =====================================
   FULL LIGHT MODE (UPPER + LOWER SECTIONS)
   ===================================== */

body {
    background-color: #f6f2e9;
    color: #20262b;
}

.bg-light-dark {
    background-color: #f5f1e7 !important;
}

#about,
#services,
#work,
#brands,
#legacy,
#popular-tours,
#contact,
.signature-experiences-section {
    background-color: #f6f2e9;
}

.legacy-section {
    background: linear-gradient(180deg, #f7f3ea 0%, #f1ebdf 100%) !important;
}

.legacy-section::before {
    background: radial-gradient(ellipse at top, rgba(243, 154, 61, 0.16) 0%, transparent 64%) !important;
}

.legacy-subtitle,
.legacy-main-heading {
    color: #20262b !important;
}

.safari-cards-container {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(32, 38, 43, 0.12);
}

.legacy-trust-badges {
    border-top-color: rgba(32, 38, 43, 0.14);
}

.trust-badge-item {
    background: #ffffff;
    border-color: rgba(32, 38, 43, 0.12);
}

.trust-badge-item span {
    color: #20262b;
}

/* =====================================
   FOOTER DARK RESTORE
   ===================================== */

.modern-footer {
    background: #111008 !important;
    border-top: none !important;
}

.footer-terrain-line path:first-child {
    fill: #111008 !important;
}

.footer-terrain-line path:last-child {
    fill: rgba(200, 170, 90, 0.07) !important;
}

.footer-grand-cta-bg {
    background:
        radial-gradient(ellipse 70% 120% at 20% 80%, rgba(200, 160, 50, 0.12), transparent),
        radial-gradient(ellipse 60% 100% at 85% 20%, rgba(228, 43, 22, 0.06), transparent),
        linear-gradient(180deg, #111008 0%, #0f0e06 100%) !important;
}

.footer-main {
    border-top: 1px solid rgba(200, 170, 90, 0.1) !important;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3) !important;
    border-top: 1px solid rgba(200, 170, 90, 0.06) !important;
}

.footer-grand-title,
.footer-brand,
.footer-heading {
    color: #fff !important;
}

.footer-tagline {
    color: rgba(200, 170, 90, 0.7) !important;
}

.footer-links a,
.footer-contact li,
.footer-contact a {
    color: rgba(255, 255, 255, 0.55) !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-copyright p,
.footer-legal a {
    color: rgba(255, 255, 255, 0.3) !important;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.45) !important;
}

.footer-social a:hover {
    background: rgba(200, 170, 90, 0.15) !important;
    border-color: rgba(200, 170, 90, 0.3) !important;
    color: #C8A85A !important;
}

.footer-newsletter-form {
    border-color: rgba(200, 170, 90, 0.2) !important;
}

.footer-newsletter-form input {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #fff !important;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.footer-newsletter-form button {
    background: rgba(200, 170, 90, 0.15) !important;
    border-left-color: rgba(200, 170, 90, 0.2) !important;
    color: #C8A85A !important;
}

.footer-back-top {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(200, 170, 90, 0.12) !important;
}

.footer-back-top i {
    color: rgba(200, 170, 90, 0.6) !important;
}

/* Global contrast fixes are defined below using dark text on light surfaces. */

#about .text-panel h2,
#about .text-panel h3,
#services .services-heading,
#work .site-title h2,
#brands .site-title h2,
#legacy .legacy-main-heading,
#legacy .legacy-subtitle,
#popular-tours .signature-tours-title,
#popular-tours .signature-tours-subtitle {
    color: #20262b !important;
}

#about .text-panel p,
#services .services-research-note,
#work .site-title p,
#brands .site-title p,
#brands .process-bottom p,
#brands .process-bottom h3 {
    color: rgba(32, 38, 43, 0.8) !important;
}

/* Keep horizontal scroll panel copy high-contrast over image backgrounds. */
#about .thecontainer .text-panel h2,
#about .thecontainer .text-panel h3,
#about .thecontainer .text-panel h4,
#about .thecontainer .text-panel p {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.92), 0 2px 10px rgba(0, 0, 0, 0.78) !important;
}

#services .col-cards .front::before,
#services .col-cards .back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 244, 236, 0.1) 0%, rgba(22, 26, 30, 0.42) 100%);
    z-index: 0;
}

#services .col-cards .inner {
    position: relative;
    z-index: 1;
}

#services .services-price-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 760px 360px;
    background-position: center, right top;
    border-color: rgba(32, 38, 43, 0.12);
    box-shadow: 0 14px 30px rgba(18, 22, 28, 0.1);
}

#services .services-price-card h3 {
    color: #20262b;
}

#services .services-price-card p {
    color: rgba(32, 38, 43, 0.76);
}

#services .services-inclusion-col {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 760px 360px;
    background-position: center, right top;
    border-color: rgba(32, 38, 43, 0.12);
}

#services .services-inclusion-col h4 {
    color: #20262b;
}

#services .services-inclusion-col li {
    color: rgba(32, 38, 43, 0.8);
}

/* Additional itinerary pages section */
.more-journeys-section {
    padding: 76px 0 82px;
    background: linear-gradient(180deg, #f4efe5 0%, #eee7db 100%);
}

.more-journeys-header {
    text-align: center;
    margin-bottom: 26px;
}

.more-journeys-header p {
    margin: 0 0 8px;
    font-family: var(--font-montserrat);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(32, 38, 43, 0.74);
}

.more-journeys-header h2 {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: clamp(30px, 4.2vw, 46px);
    color: #20262b;
    letter-spacing: -0.02em;
}

.more-journeys-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.more-journey-card {
    background: #fff;
    border: 1px solid rgba(32, 38, 43, 0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(22, 26, 31, 0.1);
    display: flex;
    flex-direction: column;
}

.more-journey-media {
    min-height: 184px;
    background-size: cover;
    background-position: center;
}

.more-journey-body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.more-journey-body h3 {
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: 20px;
    color: #20262b;
    line-height: 1.2;
}

.more-journey-body p {
    margin: 0;
    font-family: var(--font-open-sans);
    font-size: 14px;
    color: rgba(32, 38, 43, 0.78);
    line-height: 1.65;
}

.more-journey-body .tour-active-btn {
    justify-self: start;
}

@media (max-width: 1199px) {
    .more-journeys-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .more-journeys-section {
        padding: 58px 0 62px;
    }

    .more-journeys-grid {
        grid-template-columns: 1fr;
    }
}

/* Performance note: content-visibility was removed because it caused
   blank sections while fast scrolling on some devices. */

/* =====================================
   LEGACY SECTION CLEANUP + CTA VISIBILITY
   ===================================== */

/* Make "View Popular Tours" clearly visible on light work section backgrounds. */
#work .filter-btn {
    background: #f39a3d;
    color: #ffffff !important;
    border-color: #f39a3d;
    box-shadow: 0 10px 24px rgba(243, 154, 61, 0.28);
}

#work .filter-btn:hover {
    background: #cf7f25;
    color: #ffffff !important;
    border-color: #cf7f25;
}

/* Remove the visible white wrapper around the Legacy safari cards. */
#legacy .safari-cards-container {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Remove white outlines on cards in this section to keep it clean. */
#legacy .safari-expand-card {
    border: none !important;
    box-shadow: none !important;
}

/* =====================================
   SAFARI PATTERN CANVAS (LIGHT THEME)
   ===================================== */

:root {
    --safari-canvas-base: #f6f0e4;
    --safari-canvas-surface: #f8f2e7;
    --safari-canvas-accent: #eee3cf;
    --awf-topo-pattern: url("images/patterns/awf-topo2-transparent.png");
    --safari-canvas-image: url("images/safari-premium-canvas.webp");
}

body {
    background-color: var(--safari-canvas-base) !important;
    background-image:
        var(--awf-topo-pattern),
        linear-gradient(180deg, rgba(250, 246, 238, 0.9) 0%, rgba(244, 238, 228, 0.86) 100%),
        radial-gradient(circle at 18% 12%, rgba(214, 176, 110, 0.12), transparent 42%),
        radial-gradient(circle at 86% 84%, rgba(111, 142, 121, 0.07), transparent 44%),
        var(--safari-canvas-image) !important;
    background-size: 1000px 500px, auto, auto, auto, cover !important;
    background-position: right top, center, center, center, center top !important;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat !important;
    background-attachment: fixed, fixed, fixed, fixed, fixed !important;
}

#about,
#services,
#work,
#brands,
#legacy,
#popular-tours,
#contact,
.signature-experiences-section,
.more-journeys-section,
.why-travel-section {
    background-color: rgba(248, 242, 231, 0.8) !important;
}

.legacy-section {
    background: linear-gradient(180deg, rgba(249, 244, 236, 0.92) 0%, rgba(242, 236, 224, 0.86) 100%) !important;
}

.more-journeys-section {
    background: linear-gradient(180deg, rgba(246, 241, 232, 0.92) 0%, rgba(239, 232, 220, 0.86) 100%) !important;
}

@media (max-width: 991px) {
    body {
        background-attachment: scroll, scroll, scroll, scroll, scroll !important;
        background-size: 820px 420px, auto, auto, auto, cover !important;
        background-position: right -120px top, center, center, center, center top !important;
    }
}

/* Hero text keyword style (for non-H1 slide text) */
.hero-text-keyword {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.5rem, 11vw, 9rem);
    font-weight: 950;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

/* ========================================
   FAQ Section - AEO Optimized
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1b171c 0%, #231f24 100%);
}

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

.faq-subtitle {
    font-family: var(--font-baskervville);
    font-style: italic;
    color: var(--color-red);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-title {
    font-family: var(--font-montserrat);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(243, 154, 61, 0.4);
}

.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-montserrat);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-family: var(--font-open-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.faq-answer strong {
    color: var(--color-red);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.93rem;
    }

    .faq-answer {
        padding: 0 18px 16px;
    }
}

/* ========================================
   Performance: content-visibility for
   below-fold sections (skip rendering
   until near viewport)
   ======================================== */
#services,
#work,
#featured-reel,
#brands,
#popular-tours,
.more-journeys-section,
.why-travel-section,
.faq-section,
.modern-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* Visually hidden helper (SEO-friendly screen-reader text) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Curated Safari Trips Section (Magazine Style)
   ======================================== */
/* ========================================
   Curated Safari Trips Section (Premium Redesign)
   ======================================== */
.curated-trips-section {
    padding: 120px 0;
    background: #0f0d0e;
    position: relative;
    overflow: hidden;
}

.curated-trips-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(243, 154, 61, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(243, 154, 61, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.curated-trips-header {
    margin-bottom: 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.curated-trips-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.curated-trips-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.curated-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.curated-trip-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #1a1819;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
    text-decoration: none !important;
}

.curated-trip-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.curated-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.curated-trip-card:hover .curated-card-bg {
    transform: scale(1.1);
}

.curated-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 13, 14, 0.95) 0%,
            rgba(15, 13, 14, 0.4) 40%,
            rgba(15, 13, 14, 0) 70%,
            rgba(15, 13, 14, 0.2) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.curated-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.curated-card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.curated-card-tag.highlight-tag {
    background: rgba(243, 154, 61, 0.9);
    color: #000;
    border-color: rgba(243, 154, 61, 1);
}

.curated-card-title {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.curated-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.curated-card-duration {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #F39A3D;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.curated-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.curated-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 30px;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curated-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
}

.curated-card-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.curated-card-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.curated-trip-card:hover .curated-card-btn {
    color: #F39A3D;
    gap: 15px;
}

.curated-trip-card:hover .curated-card-btn i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .curated-trips-section {
        padding: 80px 0;
    }

    .curated-trip-card {
        height: 480px;
    }

    .curated-card-content {
        padding: 30px;
    }
}

/* ═══════════════════════════════════════════════════════════
   TROPIC EXPERIENCE SECTION
   ═══════════════════════════════════════════════════════════ */

.tropic-experience-section {
    background-color: #0e0a0b;
    overflow: hidden;
}

/* ── Marquee Ticker ── */
.experience-ticker {
    background: #F39A3D;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1008;
}

.ticker-dot {
    font-size: 10px !important;
    opacity: 0.55;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.experience-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* ═══════════════════════════════════════════════════════════
   SAFARI FINDER FORM
   ═══════════════════════════════════════════════════════════ */

.safari-finder {
    position: relative;
    background: #0c0809;
    padding: 80px 48px 60px;
    overflow: hidden;
}

/* Ambient background glow */
.safari-finder::before {
    content: '';
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(243, 154, 61, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle top border accent */
.safari-finder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 154, 61, 0.35), transparent);
}

/* ── Header ── */
.sf-header {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.sf-eyebrow {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.26em;
    color: #F39A3D;
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(243, 154, 61, 0.25);
    border-radius: 100px;
    background: rgba(243, 154, 61, 0.06);
}

.sf-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    color: #f5f0eb;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.sf-title em {
    font-style: italic;
    color: #F39A3D;
}

.sf-subtitle {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    color: rgba(245, 240, 235, 0.48);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Category Pills ── */
.sf-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.sf-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 240, 235, 0.60);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    -webkit-appearance: none;
}

.sf-cat:hover {
    border-color: rgba(243, 154, 61, 0.45);
    color: #f5f0eb;
    background: rgba(243, 154, 61, 0.08);
}

.sf-cat.active {
    border-color: #F39A3D;
    background: rgba(243, 154, 61, 0.15);
    color: #F39A3D;
}

.sf-cat-icon {
    font-size: 15px;
    line-height: 1;
}

/* ── Main Search Form Bar ── */
.sf-form {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sf-form:focus-within {
    border-color: rgba(243, 154, 61, 0.40);
    box-shadow: 0 0 0 4px rgba(243, 154, 61, 0.07), 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ── Each Field ── */
.sf-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    flex: 1;
    min-width: 0;
    position: relative;
    cursor: text;
}

.sf-field--keyword {
    flex: 1.4;
}

.sf-field--select {
    flex: 1;
    cursor: pointer;
}

.sf-field-icon {
    color: rgba(243, 154, 61, 0.65);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sf-field-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
    padding: 18px 0;
}

.sf-label {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(243, 154, 61, 0.80);
    display: block;
    pointer-events: none;
}

.sf-input {
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: 500;
    color: #f5f0eb;
    width: 100%;
    padding: 0;
    -webkit-appearance: none;
}

.sf-input::placeholder {
    color: rgba(245, 240, 235, 0.30);
}

.sf-input::-webkit-search-cancel-button,
.sf-input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.sf-select {
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: 500;
    color: #f5f0eb;
    width: 100%;
    padding: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.sf-select option,
.sf-select optgroup {
    background: #1a1008;
    color: #f5f0eb;
}

.sf-select-arrow {
    color: rgba(245, 240, 235, 0.35);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.sf-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.09);
    flex-shrink: 0;
    align-self: center;
}

/* ── Submit CTA ── */
.sf-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    background: #F39A3D;
    color: #1a0a00;
    border: none;
    border-radius: 0 18px 18px 0;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
    min-height: 68px;
    position: relative;
    overflow: hidden;
}

.sf-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sf-submit:hover::before {
    opacity: 1;
}

.sf-submit:hover {
    background: #e8832a;
    box-shadow: 0 8px 30px rgba(243, 154, 61, 0.45);
}

.sf-submit:active {
    transform: scale(0.98);
}

.sf-submit-icon {
    display: flex;
    align-items: center;
    transition: transform 0.25s ease;
}

.sf-submit:hover .sf-submit-icon {
    transform: translateX(3px);
}

/* ── Trending chips ── */
.sf-trending {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.sf-trending-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-primary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(245, 240, 235, 0.38);
    text-transform: uppercase;
}

.sf-trend-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(245, 240, 235, 0.55);
    font-family: var(--font-primary);
    font-size: 12.5px;
    text-decoration: none;
    transition: all 0.22s ease;
}

.sf-trend-chip:hover {
    border-color: rgba(243, 154, 61, 0.40);
    color: #F39A3D;
    background: rgba(243, 154, 61, 0.07);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sf-form {
        flex-wrap: wrap;
        border-radius: 16px;
    }

    .sf-field {
        flex: 1 1 calc(50% - 1px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .sf-field--keyword {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .sf-divider {
        display: none;
    }

    .sf-submit {
        flex: 1 1 100%;
        border-radius: 0 0 14px 14px;
        justify-content: center;
        min-height: 58px;
    }
}

@media (max-width: 768px) {
    .safari-finder {
        padding: 60px 20px 44px;
    }

    .sf-field {
        flex: 1 1 100%;
    }

    .sf-categories {
        gap: 8px;
    }

    .sf-cat {
        padding: 8px 14px;
        font-size: 12px;
    }

    .sf-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sf-trending {
        gap: 8px;
    }

    .sf-trend-chip {
        font-size: 11.5px;
        padding: 5px 12px;
    }
}

/* =====================================
   LOWER PAGE REDESIGN (FAQ -> FOOTER)
   ===================================== */
:root {
    --lp-bg: #f6f1e7;
    --lp-surface: #fffdf8;
    --lp-surface-soft: #f9f3e7;
    --lp-border: rgba(70, 55, 35, 0.14);
    --lp-text: #251f17;
    --lp-muted: #5c5348;
    --lp-accent: #f39a3d;
    --lp-accent-dark: #b5681f;
    --lp-footer-bg: #120f0b;
    --lp-footer-surface: #1a1510;
    --lp-footer-border: rgba(243, 154, 61, 0.22);
    --lp-footer-text: rgba(251, 245, 232, 0.88);
    --lp-footer-muted: rgba(251, 245, 232, 0.62);
}

.faq-section,
.holiday-style-section,
.reviews-showcase-section,
.trust-payments-section {
    position: relative;
    overflow: clip;
    isolation: isolate;
}

.faq-section>*,
.holiday-style-section>*,
.reviews-showcase-section>*,
.trust-payments-section>* {
    position: relative;
    z-index: 1;
}

.faq-section::before,
.holiday-style-section::before,
.reviews-showcase-section::before,
.trust-payments-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--awf-topo-pattern);
    background-repeat: no-repeat;
    background-size: 1000px 500px;
    opacity: 0.13;
}

.faq-section::before {
    background-position: right top;
}

.holiday-style-section::before {
    background-position: left -160px top 30px;
    opacity: 0.11;
}

.reviews-showcase-section::before {
    background-position: right -100px top 26px;
    opacity: 0.1;
}

.trust-payments-section::before {
    background-position: left -180px top;
    opacity: 0.12;
}

.faq-section {
    padding: 88px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(243, 154, 61, 0.12), transparent 46%),
        radial-gradient(circle at 85% 90%, rgba(161, 120, 62, 0.08), transparent 40%),
        linear-gradient(180deg, #f8f3ea 0%, #f4eee2 100%);
    border-top: 1px solid rgba(120, 94, 55, 0.12);
    border-bottom: 1px solid rgba(120, 94, 55, 0.1);
}

.faq-header {
    max-width: 920px;
    margin: 0 auto 36px;
}

.faq-subtitle {
    margin-bottom: 12px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(37, 31, 23, 0.62);
    font-style: normal;
}

.faq-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--lp-text);
}

.faq-grid {
    max-width: 1180px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid var(--lp-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 760px 360px;
    background-position: center, right top;
    box-shadow: 0 12px 28px rgba(43, 35, 24, 0.08);
    backdrop-filter: blur(2px);
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(243, 154, 61, 0.45);
    box-shadow: 0 14px 34px rgba(100, 73, 36, 0.14);
}

.faq-item summary {
    padding: 18px 22px;
    font-size: 1.02rem;
    font-weight: 650;
    color: var(--lp-text);
}

.faq-item summary::after {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    box-shadow: 0 6px 16px rgba(179, 108, 30, 0.28);
    transition: transform 0.25s ease;
}

.faq-answer {
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 0.96rem;
    line-height: 1.72;
    color: var(--lp-muted);
}

.faq-answer strong {
    color: #8f5219;
    font-weight: 700;
}

.holiday-style-section {
    padding: 84px 0 90px;
    background:
        linear-gradient(180deg, #f4eee2 0%, #f8f4eb 100%);
    border-top: 1px solid rgba(120, 94, 55, 0.1);
    border-bottom: 1px solid rgba(120, 94, 55, 0.08);
}

.holiday-style-head {
    max-width: 880px;
    padding-bottom: 28px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(120, 94, 55, 0.14);
}

.holiday-style-kicker {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(37, 31, 23, 0.62);
}

.holiday-style-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--lp-text);
}

.holiday-style-title span {
    color: #8f5219;
    font-weight: 700;
}

.holiday-style-title span::after {
    bottom: 5px;
    height: 10px;
    background: rgba(243, 154, 61, 0.2);
}

.holiday-style-copy {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--lp-muted);
}

.holiday-style-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.holiday-style-item {
    padding: 26px 18px;
    border-radius: 16px;
    border: 1px solid var(--lp-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 760px 360px;
    background-position: center, right top;
    box-shadow: 0 10px 28px rgba(43, 35, 24, 0.08);
}

.holiday-style-item:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 154, 61, 0.38);
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 249, 239, 0.9) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 760px 360px;
    background-position: center, right top;
    box-shadow: 0 16px 34px rgba(90, 63, 26, 0.14);
}

.holiday-style-icon i {
    font-size: 34px;
    color: #a15f1f;
}

.holiday-style-small {
    font-size: 0.69rem;
    letter-spacing: 0.13em;
    color: rgba(37, 31, 23, 0.58);
}

.holiday-style-main {
    font-size: clamp(1.55rem, 2.1vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--lp-text);
}

.holiday-style-item:hover .holiday-style-main {
    color: #8f5219;
}

.holiday-style-button {
    min-width: 250px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dark));
    color: #fff;
    box-shadow: 0 10px 24px rgba(179, 108, 30, 0.26);
}

.holiday-style-button:hover {
    background: linear-gradient(135deg, #f7ab59, #be7128);
    box-shadow: 0 14px 28px rgba(179, 108, 30, 0.3);
}

.reviews-showcase-section {
    padding: 84px 0;
    background:
        radial-gradient(circle at 18% 14%, rgba(243, 154, 61, 0.08), transparent 44%),
        linear-gradient(180deg, #f8f4eb 0%, #f5efdf 100%);
    border-top: 1px solid rgba(120, 94, 55, 0.1);
    border-bottom: 1px solid rgba(120, 94, 55, 0.08);
}

.reviews-header {
    margin-bottom: 26px;
}

.reviews-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.15rem, 4.2vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--lp-text);
}

.reviews-title span::after {
    left: -2px;
    right: -2px;
    bottom: 3px;
    height: 9px;
    background: rgba(243, 154, 61, 0.22);
}

.reviews-subtitle {
    margin-top: 10px;
    font-size: 1.03rem;
    color: var(--lp-muted);
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.ac-card-spotlight {
    border-radius: 16px;
    border: 1px solid var(--lp-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 760px 360px;
    background-position: center, right top;
    box-shadow: 0 10px 24px rgba(43, 35, 24, 0.08);
}

.ac-card-spotlight:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 154, 61, 0.38);
    box-shadow: 0 16px 32px rgba(86, 61, 28, 0.14);
}

.ac-card-spotlight::before {
    background: radial-gradient(280px circle at var(--spotlight-x) var(--spotlight-y),
            rgba(243, 154, 61, 0.22) 0%,
            rgba(243, 154, 61, 0.08) 23%,
            transparent 52%);
}

.review-card-inner {
    padding: 18px 18px 19px;
}

.reviews-summary-card .review-card-inner {
    gap: 8px;
}

.reviews-brand-logo {
    width: 86px;
}

.reviews-brand-name {
    font-size: 1.35rem;
    color: var(--lp-text);
}

.reviews-count {
    font-size: 0.94rem;
    color: var(--lp-muted);
}

.review-write-btn {
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border-color: rgba(70, 55, 35, 0.26);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-text);
}

.review-write-btn:hover {
    background: #2a2117;
    border-color: #2a2117;
}

.review-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
}

.reviewer-name {
    font-size: 1.04rem;
    line-height: 1.2;
    color: var(--lp-text);
}

.review-time {
    font-size: 0.82rem;
    color: rgba(92, 83, 72, 0.88);
}

.review-google-icon {
    font-size: 1rem;
}

.review-stars-row span {
    font-size: 0.92rem;
    letter-spacing: 1.2px;
}

.review-stars-row i {
    font-size: 0.82rem;
    color: #2267c8;
}

.review-copy {
    font-size: 0.92rem;
    line-height: 1.62;
    color: #3d3429;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.review-read-more {
    padding-top: 12px;
    font-size: 0.82rem;
    color: #7a6e61;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.review-read-more:hover {
    color: #8f5219;
}

.reviews-verified {
    margin-top: 12px;
    color: #3b6b3f;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.trust-payments-section {
    padding: 84px 0 92px;
    background:
        radial-gradient(circle at 84% 12%, rgba(243, 154, 61, 0.08), transparent 42%),
        linear-gradient(180deg, #f5efdf 0%, #f9f5eb 100%);
    border-top: 1px solid rgba(120, 94, 55, 0.1);
    border-bottom: 1px solid rgba(120, 94, 55, 0.12);
}

.trust-payments-header {
    margin-bottom: 24px;
}

.trust-payments-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    color: rgba(37, 31, 23, 0.62);
}

.trust-payments-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 700;
    line-height: 1.16;
    color: var(--lp-text);
}

.trust-payments-copy {
    font-size: 1.03rem;
    line-height: 1.7;
    color: var(--lp-muted);
}

.trust-payments-grid {
    gap: 16px;
}

.trust-payments-card {
    border-radius: 16px;
    border: 1px solid var(--lp-border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 760px 360px;
    background-position: center, right top;
    box-shadow: 0 10px 24px rgba(43, 35, 24, 0.08);
}

.trust-payments-card:hover {
    border-color: rgba(243, 154, 61, 0.35);
    box-shadow: 0 16px 34px rgba(90, 63, 26, 0.13);
}

.trust-payments-card-title {
    margin-bottom: 18px;
    font-size: 1.28rem;
    color: var(--lp-text);
}

.trust-logo-card {
    border-radius: 12px;
    border-color: rgba(120, 94, 55, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.95) 0%, rgba(255, 248, 238, 0.9) 100%),
        var(--awf-topo-pattern);
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 700px 330px;
    background-position: center, right top;
}

.trust-logo-card:hover {
    border-color: rgba(243, 154, 61, 0.34);
    box-shadow: 0 8px 18px rgba(90, 63, 26, 0.1);
}

.modern-footer {
    background: linear-gradient(180deg, #17120e 0%, #100c08 100%) !important;
    border-top: 1px solid var(--lp-footer-border) !important;
    color: var(--lp-footer-text);
}

.footer-terrain-line {
    display: none !important;
}

.footer-terrain-line path:first-child {
    fill: #17120e !important;
}

.footer-terrain-line path:last-child {
    fill: rgba(243, 154, 61, 0.14) !important;
}

.footer-cta-immersive {
    padding: 78px 0 62px;
    background:
        radial-gradient(ellipse 70% 110% at 50% 100%, rgba(243, 154, 61, 0.16), transparent 66%),
        radial-gradient(ellipse 55% 80% at 18% 20%, rgba(243, 154, 61, 0.1), transparent 70%),
        linear-gradient(180deg, #18130e 0%, #14100c 100%);
}

.footer-cta-wrap {
    gap: 28px;
}

.footer-cta-eyebrow {
    margin-bottom: 14px;
    font-size: 0.68rem;
    font-style: normal;
    letter-spacing: 0.18em;
    color: rgba(251, 245, 232, 0.72);
}

.ft-eyebrow-line {
    width: 24px;
    background: rgba(243, 154, 61, 0.48);
}

.footer-cta-headline {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.015em;
    color: #fff;
}

.footer-cta-headline em {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, #ffcf8d 0%, #f39a3d 45%, #d18228 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.footer-cta-sub {
    font-size: 0.96rem;
    line-height: 1.76;
    color: var(--lp-footer-muted);
}

.footer-cta-btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    color: #1e140a;
    background: linear-gradient(135deg, #f8bf77, #f39a3d);
    box-shadow: 0 12px 24px rgba(165, 94, 18, 0.3);
}

.footer-cta-btn:hover {
    color: #1e140a;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(165, 94, 18, 0.34);
}

.ft-btn-icon {
    width: 24px;
    height: 24px;
}

.footer-pulse {
    padding: 26px 0;
    border-top: 1px solid rgba(243, 154, 61, 0.16);
    border-bottom: 1px solid rgba(243, 154, 61, 0.12);
    background: rgba(243, 154, 61, 0.06);
}

.footer-pulse-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.ft-pulse-item {
    padding: 6px 10px;
}

.ft-pulse-number {
    font-size: 1.45rem;
    color: #ffcb8a;
}

.ft-pulse-label {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    color: rgba(251, 245, 232, 0.66);
}

.ft-pulse-divider {
    display: none;
}

.footer-main {
    padding: 62px 0 0;
    border-top: 1px solid rgba(243, 154, 61, 0.12);
}

.footer-grid {
    gap: 42px;
}

.footer-brand-img {
    width: 210px;
}

.footer-tagline {
    margin-top: 10px;
    font-style: normal;
    letter-spacing: 0.13em;
    font-size: 0.68rem;
    color: rgba(251, 245, 232, 0.7);
}

.footer-description {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--lp-footer-muted);
    margin-bottom: 24px;
}

.footer-heading {
    margin-bottom: 18px;
    padding-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: rgba(251, 245, 232, 0.7);
}

.footer-heading::after {
    width: 34px;
    background: linear-gradient(90deg, #f39a3d, rgba(243, 154, 61, 0));
}

.footer-links a,
.footer-contact li,
.footer-contact a {
    color: var(--lp-footer-muted);
}

.footer-links a {
    font-size: 0.88rem;
    padding: 7px 0;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    gap: 11px;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.ft-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.ft-contact-icon i {
    font-size: 0.74rem;
}

.accreditation-badge {
    height: 52px;
}

.footer-newsletter-row {
    margin-top: 46px;
    padding: 24px 26px;
    border-radius: 14px;
    border: 1px solid rgba(243, 154, 61, 0.24);
    background: rgba(243, 154, 61, 0.07);
}

.ft-newsletter-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.ft-newsletter-icon i {
    font-size: 1rem;
}

.ft-newsletter-text h4 {
    font-size: 1rem;
    color: #fff;
}

.ft-newsletter-text p {
    font-size: 0.84rem;
    color: var(--lp-footer-muted);
}

.footer-newsletter-form {
    min-width: 320px;
    border-color: rgba(243, 154, 61, 0.26);
    background: rgba(13, 10, 7, 0.56);
}

.footer-newsletter-form input {
    font-size: 0.84rem;
    color: #fff;
}

.footer-newsletter-form button {
    padding: 13px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-bottom {
    margin-top: 44px;
    padding: 20px 0;
    border-top: 1px solid rgba(243, 154, 61, 0.16);
    background: rgba(0, 0, 0, 0.22);
}

.footer-copyright p,
.footer-legal a {
    font-size: 0.74rem;
    color: rgba(251, 245, 232, 0.62);
}

.footer-legal a:hover {
    color: #fff;
}

.footer-back-top {
    width: 38px;
    height: 38px;
    border-color: rgba(243, 154, 61, 0.28);
}

.footer-back-top i {
    font-size: 0.78rem;
    color: rgba(255, 207, 141, 0.82);
}

@media (max-width: 1199px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .holiday-style-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-newsletter-row {
        gap: 20px;
    }
}

@media (max-width: 991px) {

    .faq-section,
    .holiday-style-section,
    .reviews-showcase-section,
    .trust-payments-section {
        padding-top: 66px;
        padding-bottom: 72px;
    }

    .holiday-style-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-pulse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 767px) {

    .faq-section,
    .holiday-style-section,
    .reviews-showcase-section,
    .trust-payments-section {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .faq-header,
    .holiday-style-head,
    .trust-payments-header {
        margin-bottom: 24px;
    }

    .faq-item summary {
        padding: 15px 16px;
        font-size: 0.93rem;
    }

    .faq-answer {
        padding: 0 16px 14px;
    }

    .holiday-style-grid {
        grid-template-columns: 1fr;
    }

    .holiday-style-button {
        width: 100%;
        max-width: 340px;
    }

    .review-card-inner {
        padding: 15px 15px 16px;
    }

    .trust-payments-grid,
    .trust-logo-grid {
        grid-template-columns: 1fr;
    }

    .trust-payments-card {
        padding: 22px 18px;
    }

    .footer-cta-immersive {
        padding: 56px 0 44px;
    }

    .footer-main {
        padding-top: 46px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-newsletter-row {
        padding: 20px 16px;
        margin-top: 36px;
    }

    .footer-newsletter-form {
        min-width: 0;
        width: 100%;
    }

    .footer-newsletter-form button {
        width: 100%;
        border-radius: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
/* ═══════════════════════════════════════════
   SPECIAL OFFERS — REDESIGNED
   ═══════════════════════════════════════════ */
.special-offers-section {
    padding: 100px 0 90px;
    background: linear-gradient(160deg, #130e08 0%, #1a1108 45%, #0f0c05 100%);
    position: relative;
    overflow: hidden;
}
/* large warm glow left */
.special-offers-section::before {
    content: '';
    position: absolute;
    top: -80px; left: -160px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(220,130,30,0.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
/* subtle amber right */
.special-offers-section::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -100px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(243,154,61,0.10) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.so-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ── HEADER ── */
.so-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.so-header-left {}
.so-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f39a3d;
    margin-bottom: 14px;
}
.so-eyebrow-line {
    display: inline-block;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, #f39a3d, transparent);
    border-radius: 2px;
}
.so-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #f39a3d;
    box-shadow: 0 0 0 3px rgba(243,154,61,0.25);
    animation: soFlash 1.8s ease-in-out infinite;
}
@keyframes soFlash {
    0%,100%{ box-shadow:0 0 0 3px rgba(243,154,61,0.25); }
    50%{ box-shadow:0 0 0 7px rgba(243,154,61,0.06); }
}
.so-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}
.so-title em {
    font-style: italic;
    background: linear-gradient(135deg, #ffd28c 0%, #f39a3d 55%, #d87020 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.so-header-note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    max-width: 280px;
    text-align: right;
}
.so-header-note strong {
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

/* ── GRID — 5-card magazine layout ── */
/*  Row 1: 3 cols (Mara | Amboseli | Tsavo)
    Row 2: 2 cols (BushBeach wide | OlPejeta)  */
.so-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 18px;
}
.so-card--wide {
    grid-column: span 2;
}
@media (max-width: 960px) {
    .so-grid { grid-template-columns: repeat(2, 1fr); }
    .so-card--wide { grid-column: span 2; }
}
@media (max-width: 580px) {
    .so-grid { grid-template-columns: 1fr; }
    .so-card--wide { grid-column: span 1; }
}

/* ── CARD ── */
.so-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    /* card is purely the image — content floats over */
    height: 420px;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94),
                box-shadow 0.4s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.so-card--wide { height: 420px; }
.so-card:hover {
    transform: translateY(-6px) scale(1.012);
    box-shadow: 0 28px 64px rgba(0,0,0,0.65), 0 0 0 2px rgba(243,154,61,0.45);
    text-decoration: none;
    color: #fff;
}
/* background image fills card */
.so-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}
.so-card:hover .so-card-bg {
    transform: scale(1.08);
}
/* rich gradient overlay — stronger at bottom */
.so-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.06) 0%,
        rgba(0,0,0,0.18) 35%,
        rgba(0,0,0,0.70) 70%,
        rgba(0,0,0,0.90) 100%
    );
}
/* warm amber tint overlay on hover */
.so-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220,130,30,0.20) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.so-card:hover::after {
    opacity: 1;
}

/* ── BADGE top-left ── */
.so-badge {
    position: absolute;
    top: 18px; left: 18px;
    z-index: 4;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.so-badge--hot {
    background: linear-gradient(135deg, #f39a3d, #e0601a);
    color: #fff;
    box-shadow: 0 4px 14px rgba(243,154,61,0.55);
}
.so-badge--popular {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.so-badge--rhino {
    background: rgba(60,180,90,0.25);
    border: 1px solid rgba(60,220,100,0.4);
    color: #a3f0ba;
}

/* ── CONTENT floats at card bottom ── */
.so-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 4;
    padding: 22px 22px 22px;
}
.so-card-park {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffc87a;
    margin: 0 0 4px;
    opacity: 0.9;
}
.so-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.so-card--wide .so-card-title {
    font-size: 1.35rem;
}

/* ── FOOTER row: price + cta ── */
.so-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Price chip — stands out as a price tag */
.so-price-chip {
    display: flex;
    align-items: baseline;
    gap: 0;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 8px 14px;
    line-height: 1;
}
.so-price-from {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    margin-right: 6px;
    align-self: center;
}
.so-price-amount {
    font-size: 1.45rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: #fff;
    letter-spacing: -0.02em;
}
.so-price-pps {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
    align-self: flex-end;
    padding-bottom: 2px;
}
/* duration pill */
.so-duration-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.so-duration-pill i { font-size: 0.6rem; opacity: 0.7; }

/* Book Now arrow button */
.so-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #f39a3d;
    color: #1a0e05;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 18px rgba(243,154,61,0.45);
}
.so-card:hover .so-book-btn {
    background: #ffd28c;
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(243,154,61,0.6);
}

/* ── VIEW ALL ── */
.so-viewall {
    text-align: center;
    margin-top: 44px;
}
.so-viewall-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 28px;
    border-radius: 999px;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.so-viewall-link:hover {
    color: #fff;
    border-color: rgba(243,154,61,0.55);
    background: rgba(243,154,61,0.08);
    text-decoration: none;
}


