/* Corbett Jungle — static site stylesheet.
   Colours, fonts and spacing are taken from the original Elementor design. */

@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-latin.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Karla'; src: url('../fonts/karla-latin.woff2') format('woff2'); font-weight: 200 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('../fonts/lato-700.woff2') format('woff2'); font-weight: 600 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/roboto-latin.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }

:root {
  --green: #389B87;
  --gold: #FBAD15;
  --grey: #868686;
  --ink: #292929;
  --slate: #1E293B;
  --light: #F3F3F3;
  --white: #FFFFFF;
  --shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.1);
  --font: 'Archivo', sans-serif;
  --font-alt: 'Karla', sans-serif;
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--grey); background: var(--white); overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
img, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--green); }
h1, h2, h3, h4, h5, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font: inherit; }

.icon { width: 1em; height: 1em; fill: currentColor; flex: none; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; padding: 10px 16px; background: var(--white); color: var(--ink); border-radius: 3px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

/* ---------- Buttons and shared text styles ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; border: 0; border-radius: 3px; background: var(--green); color: var(--white); font-family: var(--font); font-size: 15px; font-weight: 600; line-height: 1; text-decoration: none; cursor: pointer; transition: background-color 0.3s; }
.btn:hover, .btn:focus-visible { background: var(--gold); color: var(--white); }
.btn--block { width: 100%; }
.btn .icon { font-size: 15px; }

.eyebrow { font-size: 16px; font-weight: 600; line-height: 1.2; text-transform: uppercase; color: var(--gold); }
.title { font-size: 43.95px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.title--semi { font-weight: 600; }
.text p + p { margin-top: 1em; }

/* Masked image shapes (same artwork as the original site) */
.mask-blob { -webkit-mask: url('../img/mask-blob.svg') center / contain no-repeat; mask: url('../img/mask-blob.svg') center / contain no-repeat; }
.mask-torn { -webkit-mask: url('../img/masking_2.png') center / contain no-repeat; mask: url('../img/masking_2.png') center / contain no-repeat; }
.mask-brush { -webkit-mask: url('../img/masking_1.png') center / cover no-repeat; mask: url('../img/masking_1.png') center / cover no-repeat; }

/* Icon box: square green icon + title + description */
.icon-box { display: flex; align-items: flex-start; gap: 14px; padding-right: 5%; }
.icon-box__icon { flex: none; display: grid; place-items: center; width: 70px; height: 70px; border-radius: 3px; background: var(--green); color: var(--white); }
.icon-box__icon img { width: 35px; height: 35px; object-fit: contain; }
.icon-box__icon .icon { font-size: 35px; }
.icon-box h3 { font-size: 22.5px; font-weight: 700; line-height: 1.4; color: var(--ink); }
.icon-box p { color: var(--grey); }
.icon-box a { color: inherit; text-decoration: none; }
.icon-box a:hover { color: var(--green); }

/* Scroll-in animations (only when JavaScript is running) */
.js [data-reveal] { opacity: 0; transition: opacity 0.9s ease, transform 0.9s ease; }
.js [data-reveal="left"] { transform: translateX(-60px); }
.js [data-reveal="right"] { transform: translateX(60px); }
.js [data-reveal="up"] { transform: translateY(60px); }
.js [data-reveal="down"] { transform: translateY(-60px); }
.js [data-reveal="zoom"] { transform: scale(0.6); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header { position: absolute; inset: 0 0 auto; z-index: 50; background: rgba(0, 0, 0, 0.56); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; }
.brand img { width: 151px; }
.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.menu { display: flex; align-items: center; }
.menu > li > a, .submenu-toggle { display: flex; align-items: center; gap: 5px; height: 80px; padding: 0 15px; border: 0; background: none; color: var(--white); font-family: var(--font-system); font-size: 15px; font-weight: 700; line-height: 1; text-decoration: none; cursor: pointer; transition: color 0.3s; }
.submenu-toggle .icon { font-size: 16px; transition: transform 0.3s; }
.menu > li > a:hover, .submenu-toggle:hover, .menu a[aria-current="page"], [data-current] > .submenu-toggle { color: var(--green); }
.has-submenu { position: relative; }
.submenu { position: absolute; top: 100%; left: 0; z-index: 5; min-width: 220px; padding: 0; border-radius: 5px; background: #F4F4F4; box-shadow: 0 10px 30px rgba(45, 45, 45, 0.2); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s, visibility 0.3s; }
.submenu a { display: block; padding: 15px; color: var(--ink); font-family: var(--font-system); font-size: 14px; line-height: 1.4; text-decoration: none; transition: background-color 0.3s, color 0.3s; }
.submenu li:first-child a { border-radius: 5px 5px 0 0; }
.submenu li:last-child a { border-radius: 0 0 5px 5px; }
.submenu a:hover, .submenu a[aria-current="page"] { background: var(--green); color: var(--white); }
.submenu-toggle[aria-expanded="true"] + .submenu { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1025px) {
  .has-submenu:hover > .submenu, .has-submenu:focus-within > .submenu { opacity: 1; visibility: visible; transform: none; }
}
.header-btn { font-family: 'Roboto', sans-serif; font-weight: 500; }
.nav-toggle, .nav-panel-head, .nav-overlay { display: none; }
.nav-toggle { width: 45px; height: 45px; padding: 8px; border: 0; border-radius: 3px; background: transparent; color: var(--white); cursor: pointer; }
.nav-toggle .icon { font-size: 29px; }
.nav-toggle:hover { color: var(--green); }

@media (max-width: 1024px) {
  .nav-toggle { display: grid; place-items: center; order: 2; }
  .header-btn { order: 1; }
  .nav-overlay:not([hidden]) { display: block; position: fixed; inset: 0; z-index: 55; background: rgba(0, 0, 0, 0.5); }
  .site-nav { position: fixed; inset: 0 auto 0 0; z-index: 60; width: min(350px, 86vw); overflow-y: auto; background: var(--white); transform: translateX(-100%); visibility: hidden; transition: transform 0.35s ease, visibility 0.35s; }
  .site-nav.is-open { transform: none; visibility: visible; }
  .nav-panel-head { display: flex; justify-content: flex-end; padding: 10px 0; }
  .nav-close { display: grid; place-items: center; width: 45px; height: 45px; margin: 12px; padding: 8px; border: 1px solid #DCDCDE; border-radius: 3px; background: transparent; color: var(--ink); cursor: pointer; }
  .nav-close .icon { font-size: 22px; }
  .nav-close:hover { color: var(--gold); }
  .menu { flex-direction: column; align-items: stretch; }
  .menu > li > a, .submenu-toggle { width: 100%; height: auto; justify-content: space-between; padding: 10px 15px; color: #000; text-align: left; }
  .submenu { position: static; display: none; min-width: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
  .submenu-toggle[aria-expanded="true"] + .submenu { display: block; }
  .submenu-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
  .submenu li a { border-radius: 0 !important; }
}
@media (max-width: 767px) {
  .site-header__inner { min-height: 74px; }
  .container.site-header__inner { width: calc(100% - 32px); }
  .header-btn { display: none; }
}

/* ---------- Home hero ---------- */
.home-hero { position: relative; display: flex; align-items: center; min-height: 806px; overflow: hidden; background: #1B2A1F; }
.hero-slide { position: absolute; inset: 0; background: center bottom / cover no-repeat; opacity: 0; transition: opacity 0.5s ease; }
.hero-slide.is-active { opacity: 1; }
.home-hero__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 34px; padding-top: 40px; }
.home-hero h1 { max-width: 53%; font-size: 54px; font-weight: 900; line-height: 1; text-transform: uppercase; color: var(--white); }
.home-hero p { max-width: 42%; color: var(--white); }

/* ---------- Inner page banner ---------- */
.page-hero { display: flex; align-items: center; justify-content: center; min-height: 708px; padding: 80px 20px 40px; background: center bottom / cover no-repeat #1B2A1F; text-align: center; }
.page-hero__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; width: min(var(--container), 100%); }
.page-hero__icon { width: 50px; height: 44px; }
.page-hero h1 { max-width: 1000px; font-size: 54px; font-weight: 900; line-height: 1; text-transform: uppercase; color: var(--white); }
.page-hero p { color: var(--white); }
.page-jeep-safari .page-hero { min-height: 694px; }

/* ---------- Two-column split (text + image) ---------- */
.split { display: flex; align-items: stretch; gap: 25px; }
.split--flush { gap: 0; }
.split--reverse { flex-direction: row-reverse; }
.split > * { flex: 1 1 0; min-width: 0; padding: 10px; }
.split__text { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 20px; }
.split__text--top { justify-content: flex-start; }
.split__text--tight { gap: 4px; }
.split__text--tight > .title { margin-bottom: 4px; }
.split__text--tight > .text { margin-bottom: 5px; }
.split__media { display: flex; flex-direction: column; justify-content: flex-start; }
.split__media img { width: 100%; }

.intro { padding: 5% 0; }
.intro .title { font-size: 46px; font-weight: 800; letter-spacing: 0.5px; text-transform: capitalize; }
.intro__media { position: relative; }
.counter-badge { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; align-self: flex-start; width: 178px; height: 142px; margin: 10px 0 0 10px; padding: 20px 20px 20px 25px; border-radius: 50%; background: var(--green); color: var(--white); text-align: center; }
.counter-badge__title { font-size: 14px; font-weight: 700; line-height: 19px; }
.counter-badge__number { font-size: 36px; font-weight: 800; line-height: 1; }
.intro__media .mask-brush { height: 500px; object-fit: cover; margin-top: -76px; }

.story { padding: 0; }
.story--tinted { background: rgba(243, 243, 243, 0.28); padding-top: 3%; }

/* ---------- Video banner ---------- */
.video-banner { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; min-height: 595px; padding: 40px 20px; background: center / cover no-repeat; text-align: center; }
.video-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.48); }
.video-banner > * { position: relative; }
.video-banner h2 { max-width: 78%; font-size: 43.95px; font-weight: 600; line-height: 1.3; color: var(--white); }
.video-banner p { max-width: 59%; font-family: var(--font-alt); line-height: 1.5; color: var(--white); }
.play-btn { position: relative; display: grid; place-items: center; width: 100px; height: 100px; margin: 22px; border: 1px solid var(--green); border-radius: 50%; background: var(--white); color: var(--green); font-size: 36px; transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
.play-btn::before, .play-btn::after { content: ''; position: absolute; inset: -1px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(206, 207, 213, 0.7); animation: ripple 2.4s ease-out infinite; }
.play-btn::after { animation-delay: 1.2s; }
.play-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
@keyframes ripple { to { box-shadow: 0 0 0 30px rgba(206, 207, 213, 0); } }
@media (prefers-reduced-motion: reduce) { .play-btn::before, .play-btn::after { animation: none; } }

/* ---------- Centred section heading ---------- */
.section-head { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 28px 20px 0; text-align: center; }
.section-head .title { font-weight: 600; }
.section-head p { max-width: 576px; font-family: var(--font-alt); line-height: 1.5; color: var(--grey); }
.section-head--wide .title { max-width: 960px; }
.section-head--wide p { max-width: 1113px; }
.section-head--spaced { padding-top: 86px; }

/* ---------- Experience cards (image with overlapping white card) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 10px 0; }
.card-grid--two { grid-template-columns: repeat(2, minmax(0, 415px)); justify-content: center; }
.exp-card { padding: 10px; }
.exp-card__img { min-height: 400px; border-radius: 3px; background: center / cover no-repeat; }
.exp-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; margin: -94px 14px 0; padding: 32px; border-radius: 3px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.exp-card__body h3 { font-family: 'Lato', sans-serif; font-size: 24px; font-weight: 600; line-height: 1.3; color: var(--green); }
.exp-card__body p { font-size: 14px; line-height: 1.65; color: var(--grey); }
.exp-card__body a { color: inherit; text-decoration: none; }

.why { margin-top: 30px; padding-bottom: 3%; }
.why--dhikala { margin-top: 47px; padding: 2% 0 6%; }

/* ---------- Photo strip ---------- */
.gallery-strip { padding: 10px; }
.carousel { overflow: hidden; }
.carousel__track { display: flex; gap: 10px; will-change: transform; }
.carousel__item { flex: 0 0 calc((100% - 30px) / 4); }
.carousel__item a { display: block; }
.carousel__item img { width: 100%; height: 231px; object-fit: cover; }

/* ---------- Call-to-action banner and cards ---------- */
.cta-banner { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; min-height: 469px; padding: 40px 20px 120px; background: center / cover no-repeat; text-align: center; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(56, 155, 135, 0.64); }
.cta-banner > * { position: relative; }
.cta-banner .title, .cta-banner p { color: var(--white); }
.cta-cards { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: -128px; padding-bottom: 48px; }
.cta-card { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 2em; border: 1px solid #DCDCDE; border-radius: 3px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.cta-card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 3px; background: var(--green); color: var(--white); font-size: 28px; }
.cta-card h3 { margin-top: -10px; font-size: 25px; font-weight: 700; line-height: 1.4; color: var(--ink); }
.cta-card p { margin-top: -12px; font-family: var(--font-alt); line-height: 1.5; color: var(--grey); }
.cta-card .btn { font-weight: 500; }

/* ---------- Corbett online booking, zones and timings ---------- */
.online-booking { padding: 40px; }
.online-booking__inner { display: flex; }
.online-booking__inner > * { flex: 1 1 0; min-width: 0; }
.online-booking .title { padding-bottom: 20px; font-weight: 600; color: var(--slate); }
.link-list li + li { border-top: 1px solid #DDD; }
.link-list a { display: flex; align-items: center; gap: 8px; padding: 9px 0; color: var(--grey); font-size: 18px; text-decoration: none; transition: color 0.3s; }
.link-list a:hover { color: var(--green); }
.link-list .icon { font-size: 14px; color: var(--green); }
.info-cols { display: flex; gap: 20px; padding-top: 40px; }
.info-col { flex: 1 1 0; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 10px; }
.framed-icon { display: grid; place-items: center; width: 66px; height: 66px; border: 3px solid var(--green); border-radius: 50%; color: var(--green); font-size: 30px; }
.info-col h3 { margin-top: -10px; font-size: 24px; font-weight: 600; line-height: 1.3; color: var(--green); }
.check-list li { display: flex; align-items: center; gap: 8px; padding: 4.5px 0; color: var(--grey); }
.check-list .icon { font-size: 20px; color: var(--green); }

/* ---------- Booking form + "How to get away" ---------- */
.booking { padding: 5% 0; background: var(--light); }
.booking__inner { display: flex; align-items: stretch; gap: 108px; }
.booking__card { flex: 0 0 49.4%; display: flex; flex-direction: column; justify-content: center; gap: 20px; min-height: 548px; padding: 50px 80px; border-radius: 2px; background: var(--white); box-shadow: var(--shadow); }
.booking__info { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.booking--white { background: var(--white); }
.booking__card--right { order: 2; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; }
.field { margin-bottom: 20px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 5px; font-size: 14px; font-weight: 700; line-height: 1.5; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); }
.req { color: #F56C6C; }
.field input, .field textarea { display: block; width: 100%; min-height: 40px; padding: 11px 15px; border: 1px solid #DADBDD; border-radius: 7px; background: var(--white); color: #606266; font-family: var(--font-system); font-size: 16px; line-height: 1; transition: border-color 0.2s; }
.field textarea { min-height: 105px; line-height: 1.5; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #A8ABB2; }
.field input:focus, .field textarea:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(56, 155, 135, 0.2); }
.site-form .btn { padding: 12px 20px; border-radius: 7px; font-size: 16px; font-weight: 500; }
.form-status { margin-top: 12px; font-size: 15px; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status.is-success { padding: 14px 16px; border-radius: 7px; background: #E8F5F1; color: #1F6B5C; }
.form-status.is-error { padding: 14px 16px; border-radius: 7px; background: #FDECEC; color: #B42318; }
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Full-width feature band (river rafting, holiday package) ---------- */
.feature-band { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; min-height: 679px; padding: 60px 4% 60px 5%; background: center / cover no-repeat fixed; text-align: center; }
.feature-band::before { content: ''; position: absolute; inset: 0; background: rgba(41, 41, 41, 0.82); }
.feature-band--package { min-height: 749px; }
.feature-band--package::before { background: rgba(41, 41, 41, 0.64); }
.feature-band > * { position: relative; max-width: var(--container); }
.feature-band .title { color: var(--white); }
.feature-band p { color: var(--white); }
@media (hover: none) { .feature-band { background-attachment: scroll; } }

/* ---------- Dhikala package intro ---------- */
.package-intro { display: flex; padding: 0 10px; }
.package-intro > * { flex: 1 1 0; display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 10px; }

/* ---------- Contact page ---------- */
.contact-intro { align-items: center; }
.contact-intro .split__text { justify-content: flex-start; gap: 15px; }
.icon-box--capitalize p { text-transform: capitalize; }
.divider { width: 75%; height: 1px; margin: 15px 0; border: 0; background: #D3D1D1; }
.social-title { font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.social-icons--large { display: flex; gap: 5px; }
.social-icons--large .social-icon { width: 50px; height: 50px; border-radius: 10%; background: var(--green); color: var(--white); }
.social-icons--large .social-icon .icon { font-size: 25px; }
.map { padding: 10px; }
.map iframe { display: block; width: 100%; height: 450px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--white); }
.site-footer__cols { display: flex; padding: 4vw 0; }
.footer-col { flex: 1 1 0; display: flex; flex-direction: column; gap: 20px; padding: 10px; }
.footer-col--links, .footer-col--contact { align-items: center; }
.footer-col--contact > .footer-contact { align-self: stretch; }
.footer-col--brand p { color: var(--white); }
.footer-col h5 { font-size: 25px; font-weight: 600; line-height: 1.2; color: var(--white); }
.social-icons { display: flex; gap: 6px; }
.social-icon { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 10%; background: var(--white); color: var(--gold); }
.social-icon .icon { font-size: 17px; }
.footer-links li { padding: 2.5px 0; }
.footer-links a, .footer-links span { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 14px; line-height: 1.8; text-decoration: none; transition: color 0.3s; }
.footer-links .icon { font-size: 14px; transition: color 0.3s; }
.footer-links a:hover, .footer-links a:hover .icon { color: var(--gold); }
.footer-contact { display: flex; align-items: flex-start; gap: 14px; }
.footer-contact__icon { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 3px; background: var(--white); color: var(--gold); font-size: 17px; }
.footer-contact h3 { font-size: 14px; font-weight: 600; line-height: 1.4; text-transform: uppercase; color: var(--white); }
.footer-contact p { font-size: 14px; line-height: 1.65; color: var(--white); }
.footer-contact a { color: var(--white); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.site-footer__bar { padding: 6px 0; border-top: 1px solid var(--grey); }
.site-footer__bar-inner { display: flex; justify-content: space-between; gap: 20px; }
.site-footer__bar p { padding: 10px; color: var(--grey); }
.site-footer__bar p:last-child { text-align: right; }
.site-footer__bar a { color: var(--white); text-decoration: none; }
.site-footer__bar a:hover { color: var(--gold); }

.scroll-top { position: fixed; right: 30px; bottom: 30px; z-index: 40; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 2px; background: var(--green); color: var(--white); font-size: 20px; }
.scroll-top[hidden] { display: none; }
.scroll-top:hover { background: var(--gold); }

/* ---------- Lightbox and video popup ---------- */
.lightbox, .video-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 50px 60px; background: rgba(11, 11, 11, 0.9); }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }
.lightbox button, .video-modal__close { position: absolute; display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, 0.35); color: var(--white); font-size: 26px; cursor: pointer; }
.lightbox button:hover, .video-modal__close:hover { background: #000; }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 10px; top: 50%; transform: translateY(-50%); }
.video-modal__box { position: relative; width: min(900px, 100%); }
.video-modal video { display: block; width: 100%; max-height: 80vh; background: #000; }
.video-modal__close { top: -48px; right: 0; }

/* ---------- 404 ---------- */
.not-found { padding: 80px 20px 100px; text-align: center; }
.not-found .title { margin-bottom: 16px; }
.not-found p { margin-bottom: 28px; }

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .home-hero { min-height: 700px; }
  .home-hero h1 { max-width: 80%; }
  .home-hero p { max-width: 70%; }
  .title { font-size: 36px; }
  .intro .title { font-size: 38px; }
  .booking__inner { gap: 40px; }
  .booking__card { padding: 40px; }
  .card-grid { gap: 10px; }
  .exp-card__body { padding: 24px; }
  .online-booking__inner { flex-direction: column; gap: 20px; }
  .cta-cards { grid-template-columns: 1fr; margin-top: -100px; max-width: 520px; }
  .feature-band { min-height: 520px; }
}

/* ---------- Phones ---------- */
@media (max-width: 767px) {
  .container { width: calc(100% - 32px); }
  .home-hero { min-height: 525px; }
  .home-hero__content { align-items: center; gap: 14px; text-align: center; }
  .home-hero h1 { max-width: 400px; font-size: 32px; }
  .home-hero p { max-width: 400px; }
  .home-hero .btn { padding: 14px 36%; }

  .page-hero, .page-jeep-safari .page-hero { min-height: 462px; padding-top: 90px; }
  .page-hero h1 { max-width: 400px; font-size: 32px; }

  .title, .intro .title { font-size: 28px; }
  .eyebrow { font-size: 14px; }
  .split, .split--reverse { flex-direction: column-reverse; gap: 10px; }
  .split > * { padding: 0 4px; }
  .split__text .btn { align-self: stretch; }
  .intro, .why { padding: 20px 0; }
  .why .split__media, .hide-mobile { display: none; }
  .icon-box { padding-right: 0; }
  .icon-box__icon { width: 56px; height: 56px; }
  .icon-box__icon img, .icon-box__icon .icon { width: 28px; height: 28px; font-size: 28px; }
  .icon-box h3 { font-size: 16px; }
  .icon-box p { font-size: 14px; }
  .counter-badge { width: 159px; height: 135px; padding: 28px; }
  .counter-badge__title { font-size: 11px; line-height: 1.3; }
  .counter-badge__number { font-size: 23px; }
  .intro__media .mask-brush { height: 308px; }

  .video-banner { min-height: 460px; }
  .video-banner h2 { max-width: 419px; font-size: 29px; }
  .video-banner p { max-width: 446px; }
  .play-btn { width: 70px; height: 70px; font-size: 21px; }

  .section-head .title { font-size: 29px; }
  .section-head p { max-width: 387px; }

  .card-grid, .card-grid--two { grid-template-columns: 1fr; gap: 0; }
  .exp-card { padding: 10px 0; }
  .exp-card__img { min-height: 333px; }
  .exp-card__body { margin: -70px 10px 0; padding: 21px; }
  .exp-card__body h3 { font-size: 16px; }
  .exp-card__body p { font-size: 12px; }

  .carousel__item { flex-basis: 100%; }

  .cta-banner { min-height: 420px; }
  .cta-cards { margin-top: -80px; }

  .online-booking { padding: 30px 0; }
  .online-booking .container { width: calc(100% - 32px); }
  .info-cols { padding-top: 10px; }

  .booking { padding: 40px 0; }
  .booking__inner { flex-direction: column; gap: 40px; }
  .booking__card { flex-basis: auto; min-height: 0; padding: 30px 20px; }
  .booking__card--right { order: 0; }
  .form-grid { grid-template-columns: 1fr; }

  .feature-band { min-height: 0; padding: 60px 20px; }
  .package-intro { flex-direction: column; padding: 0; }
  .section-head--spaced { padding-top: 40px; }

  .site-footer__cols { flex-direction: column; padding: 40px 0 20px; }
  .footer-col--links, .footer-col--contact { align-items: flex-start; }
  .site-footer__bar-inner { flex-direction: column; gap: 0; }
  .site-footer__bar p, .site-footer__bar p:last-child { padding: 6px 10px; font-size: 13px; text-align: center; }
  .scroll-top { right: 16px; bottom: 16px; }
  .lightbox, .video-modal { padding: 60px 12px; }
}
