/* ================================================================
   NINA SAFARIS — MAIN STYLESHEET  v1.0
   Brand colors & font are CSS variables injected by PHP from DB.
   ================================================================ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --brand:      #D4AF37;
  --brand-dark: #b8962e;
  --dark:       #0E0D0B;
  --charcoal:   #1C1A17;
  --earth:      #3D2B1F;
  --ivory:      #FAF8F3;
  --ivory-2:    #F2EEE5;
  --sand:       #E8DCC8;
  --muted:      #7A7060;
  --white:      #FFFFFF;
  --text:       #2A2520;
  --text-light: #6B6355;
  --container:  1320px;
  --radius:     6px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--brand-font,'Segoe UI',Tahoma,sans-serif); background: var(--white); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ── */
.heading-xl  { font-size: clamp(2.4rem,5vw,4.2rem); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
.heading-lg  { font-size: clamp(1.9rem,3.5vw,3rem);  line-height: 1.18; font-weight: 700; letter-spacing: -.015em; }
.heading-md  { font-size: clamp(1.5rem,2.5vw,2.1rem); line-height: 1.25; font-weight: 600; }
.heading-sm  { font-size: clamp(1.15rem,2vw,1.5rem); line-height: 1.3; font-weight: 600; }
.eyebrow     { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--brand); display: block; margin-bottom: .75rem; }
.lead        { font-size: 1.1rem; line-height: 1.75; color: var(--text-light); }

/* ── LAYOUT ── */
.container   { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-header p { margin-top: 16px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-size: .88rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--brand); color: var(--dark); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--text); border-color: var(--sand); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-ghost { background: transparent; color: var(--brand); border-color: transparent; padding: 0; text-transform: none; font-size: .95rem; }
.btn-ghost:hover { color: var(--brand-dark); gap: 14px; }
.btn i { font-size: 1rem; }

/* ── BADGE ── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.badge-brand  { background: rgba(212,175,55,.15); color: #a0831a; }
.badge-budget { background: #e8f5e9; color: #2e7d32; }
.badge-mid    { background: #e3f2fd; color: #1565c0; }
.badge-luxury { background: #fce4ec; color: #ad1457; }
.badge-ultra  { background: #f3e5f5; color: #6a1b9a; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; transition: background var(--transition),box-shadow var(--transition); }
#navbar.transparent { background: transparent; }
#navbar.scrolled    { background: var(--dark); box-shadow: 0 2px 24px rgba(0,0,0,.4); }
.nav-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; transition: height var(--transition); }
#navbar.scrolled .nav-inner { height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; object-fit: contain; }
.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: .04em; text-transform: uppercase; }
.nav-logo-text span { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 8px 14px; border-radius: 4px; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform .3s ease; transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px); background: var(--dark); border-radius: var(--radius-lg); min-width: 200px; padding: 8px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: var(--transition); border: 1px solid rgba(255,255,255,.07); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 10px 16px; border-radius: var(--radius); color: rgba(255,255,255,.75)!important; font-size: .82rem!important; letter-spacing: .03em!important; }
.dropdown-menu a::after { display: none!important; }
.dropdown-menu a:hover { background: rgba(255,255,255,.06); color: var(--brand)!important; }
.nav-cta { margin-left: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile { display: none; position: fixed; inset: 0; z-index: 999; background: var(--dark); overflow-y: auto; padding: 100px 28px 48px; opacity: 0; pointer-events: none; transform: translateX(100%); transition: opacity .35s ease, transform .35s ease; }
.nav-mobile.open { display: block; opacity: 1; pointer-events: all; transform: none; }
.nav-mobile a { 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; /* Groups items on the left */
    gap: 16px; /* Adds nice spacing between icon and text */
    color: rgba(255,255,255,.8); 
    font-size: 1.15rem; 
    font-weight: 600; 
    padding: 18px 0; 
    border-bottom: 1px solid rgba(255,255,255,.07); 
}

.nav-mobile a i {
    color: var(--brand); /* Makes the icons gold */
    width: 24px; /* Ensures all text aligns perfectly vertically */
    text-align: center;
    font-size: 1.1rem;
}

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; display: flex; align-items: center; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  object-position: center 30%; /* Focuses on the upper part of the image (sky/wildlife) */
}

.hero-slide.active img { 
  animation: kenBurns 14s ease-in-out infinite alternate; 
}

@keyframes kenBurns { 
  from { transform: scale(1.02); } 
  to { transform: scale(1); } 
}

/* Ensure text stays readable over images */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(14,13,11,0.85) 0%, rgba(14,13,11,0.45) 55%, transparent 100%);
}

/* Adjust text position on mobile if needed */
@media (max-width:768px) {
  .hero-content {
    padding-top: 60px;
  }
  
  .hero-overlay {
    background: linear-gradient(125deg, rgba(14,13,11,0.9) 0%, rgba(14,13,11,0.5) 60%, transparent 100%);
  }
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(14,13,11,.82) 0%, rgba(14,13,11,.35) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 24px; padding-top: 80px; }
.hero-content .eyebrow { font-size: .78rem; }
.hero-title { color: var(--white); margin-bottom: 20px; max-width: 720px; }
.hero-title span { color: var(--brand); }
.hero-sub { color: rgba(255,255,255,.78); max-width: 560px; font-size: 1.1rem; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); display: flex; z-index: 2; background: rgba(14,13,11,.72); backdrop-filter: blur(14px); border-radius: var(--radius-lg); border: 1px solid rgba(212,175,55,.18); overflow: hidden; white-space: nowrap; }
.hero-stat { padding: 18px 32px; text-align: center; border-right: 1px solid rgba(212,175,55,.12); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--brand); line-height: 1; }
.hero-stat .lbl { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }
.hero-dots { position: absolute; bottom: 160px; right: 44px; z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; transition: var(--transition); padding: 0; }
.hero-dot.active { background: var(--brand); transform: scale(1.5); }
.hero-scroll { position: absolute; bottom: 44px; left: 44px; z-index: 2; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,.3); }

/* ── INTRO ── */
.intro { background: var(--dark); padding: 88px 0; }
.intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.2); border-radius: 30px; padding: 6px 16px 6px 10px; margin-bottom: 24px; }
.intro-badge i { color: var(--brand); font-size: .85rem; }
.intro-badge span { font-size: .72rem; font-weight: 700; color: var(--brand); letter-spacing: .1em; text-transform: uppercase; }
.intro h2 { color: var(--white); margin-bottom: 20px; }
.intro p  { color: rgba(255,255,255,.6); line-height: 1.82; margin-bottom: 14px; font-size: .95rem; }
.intro-features { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.intro-feature { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: .9rem; }
.intro-feature i { color: var(--brand); width: 18px; flex-shrink: 0; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro-cert { position: absolute; bottom: -16px; left: -16px; background: var(--brand); color: var(--dark); border-radius: var(--radius-lg); padding: 18px 22px; font-weight: 800; text-align: center; box-shadow: var(--shadow-md); }
.intro-cert .num { font-size: 2rem; line-height: 1; display: block; }
.intro-cert .txt { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

/* ── CATEGORIES MOSAIC ── */
.categories { background: var(--ivory); }
.mosaic { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 240px 240px 200px; gap: 14px; }
.mosaic-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.mosaic-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic-item:nth-child(6) { grid-column: span 2; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.mosaic-item:hover img { transform: scale(1.07); }
.mosaic-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,13,11,.85) 0%, rgba(14,13,11,.08) 55%, transparent 100%); transition: var(--transition); }
.mosaic-item:hover .mosaic-overlay { background: linear-gradient(to top, rgba(14,13,11,.92) 0%, rgba(14,13,11,.25) 55%, transparent 100%); }
.mosaic-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; }
.mosaic-title { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 3px; line-height: 1.3; }
.mosaic-item:nth-child(1) .mosaic-title { font-size: 1.5rem; margin-bottom: 6px; }
.mosaic-count { color: rgba(255,255,255,.6); font-size: .76rem; }
.mosaic-arrow { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: var(--dark); font-size: .85rem; margin-top: 10px; opacity: 0; transform: translateY(8px); transition: var(--transition); }
.mosaic-item:hover .mosaic-arrow { opacity: 1; transform: translateY(0); }
.mosaic-no-img { background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth) 100%); display: flex; align-items: center; justify-content: center; }
.mosaic-no-img .mosaic-overlay { background: none; }
.mosaic-no-img i { font-size: 2.5rem; color: rgba(212,175,55,.25); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* ── PACKAGES ── */
.packages { background: var(--white); }
.pkg-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.pkg-tab { padding: 9px 22px; border-radius: 30px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--ivory-2); color: var(--text-light); border: 2px solid transparent; transition: var(--transition); }
.pkg-tab:hover, .pkg-tab.active { background: var(--brand); color: var(--dark); border-color: var(--brand); }
.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.pkg-grid .pkg-card { display: none; }
.pkg-grid .pkg-card.visible { display: flex; flex-direction: column; }
.pkg-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pkg-card .card-img { position: relative; overflow: hidden; }
.pkg-card .card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s ease; }
.pkg-card:hover .card-img img { transform: scale(1.06); }
.pkg-badge { position: absolute; top: 12px; left: 12px; }
.pkg-duration { position: absolute; top: 12px; right: 12px; background: rgba(14,13,11,.72); backdrop-filter: blur(8px); color: var(--white); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
.pkg-body { padding: 20px 22px; flex: 1; }
.pkg-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.pkg-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: .78rem; color: var(--text-light); margin-bottom: 10px; }
.pkg-meta i { color: var(--brand); }
.pkg-text { font-size: .88rem; color: var(--text-light); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pkg-footer { padding: 0 22px 20px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--ivory-2); margin-top: auto; padding-top: 16px; }
.pkg-price { font-size: 1.3rem; font-weight: 800; color: var(--brand); }
.pkg-price span { font-size: .78rem; font-weight: 400; color: var(--text-light); }

/* ── WHY CHOOSE US ── */
.why { background: var(--charcoal); position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; }
.why-card { padding: 38px 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); transition: var(--transition); }
.why-card:hover { background: rgba(212,175,55,.06); border-color: rgba(212,175,55,.2); transform: translateY(-4px); }
.why-icon { width: 58px; height: 58px; border-radius: 14px; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.18); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: var(--transition); }
.why-icon i { font-size: 1.4rem; color: var(--brand); transition: var(--transition); }
.why-card:hover .why-icon { background: var(--brand); border-color: var(--brand); }
.why-card:hover .why-icon i { color: var(--dark); }
.why-title { color: var(--white); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.why-text  { color: rgba(255,255,255,.52); font-size: .88rem; line-height: 1.78; }

/* ── HOTELS ── */
.hotels { background: var(--ivory-2); }
.hotels-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.hotel-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.hotel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.hotel-card .card-img { position: relative; overflow: hidden; }
.hotel-card .card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s ease; }
.hotel-card:hover .card-img img { transform: scale(1.06); }
.tier-strip { display: flex; align-items: center; gap: 8px; padding: 7px 14px; background: var(--ivory); border-bottom: 1px solid var(--sand); }
.tier-stars { color: var(--brand); font-size: .78rem; letter-spacing: 2px; }
.tier-label { font-size: .68rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-left: auto; }
.hotel-body { padding: 16px 18px 20px; }
.hotel-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.hotel-loc  { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.hotel-loc i { color: var(--brand); font-size: .75rem; }
.hotel-rate { font-size: 1.1rem; font-weight: 800; color: var(--brand); }
.hotel-rate span { font-size: .75rem; font-weight: 400; color: var(--text-light); }
.hotel-footer { padding: 0 18px 18px; display: flex; gap: 8px; }

/* ── REVIEWS ── */
.reviews { background: var(--dark); overflow: hidden; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 30px; transition: var(--transition); }
.review-card:hover { background: rgba(212,175,55,.07); border-color: rgba(212,175,55,.2); transform: translateY(-4px); }
.review-stars { color: var(--brand); font-size: .95rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-text { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.82; margin-bottom: 22px; font-style: italic; position: relative; padding-top: 8px; }
.review-text::before { content: '\201C'; font-size: 3.5rem; color: rgba(212,175,55,.12); position: absolute; top: -14px; left: -6px; line-height: 1; font-family: Georgia,serif; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(212,175,55,.12); border: 2px solid rgba(212,175,55,.25); display: flex; align-items: center; justify-content: center; color: var(--brand); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.review-name    { color: var(--white); font-weight: 700; font-size: .88rem; }
.review-country { color: rgba(255,255,255,.4); font-size: .76rem; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.review-platform { margin-left: auto; opacity: .35; font-size: 1.1rem; color: var(--white); }

/* ── BLOG ── */
.blogs { background: var(--ivory); }
.blog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.blog-card .card-img { position: relative; overflow: hidden; }
.blog-card .card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .card-img img { transform: scale(1.06); }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--brand); color: var(--dark); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 20px; }
.blog-body { padding: 18px 20px 22px; }
.blog-date { font-size: .76rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.blog-date i { color: var(--brand); }
.blog-title { font-size: .98rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-excerpt { font-size: .84rem; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--sand); border-radius: var(--radius-lg); margin-bottom: 10px; overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item.open { border-color: rgba(212,175,55,.35); box-shadow: 0 4px 20px rgba(212,175,55,.08); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; background: none; border: none; text-align: left; font-size: .98rem; font-weight: 600; color: var(--text); gap: 16px; font-family: inherit; transition: color var(--transition); }
.faq-question:hover { color: var(--brand); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--ivory-2); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: .8rem; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--brand); color: var(--dark); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 800px; padding: 0 22px 22px; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand-text span { color: var(--brand); }
.footer-brand-logo { height: 50px; margin-bottom: 16px; object-fit: contain; }
.footer-desc { color: rgba(255,255,255,.45); font-size: .86rem; line-height: 1.8; max-width: 280px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .9rem; transition: var(--transition); }
.social-btn:hover { background: var(--brand); border-color: var(--brand); color: var(--dark); }
.footer-col-title { color: var(--brand); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .86rem; transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a i { color: var(--brand); font-size: .7rem; flex-shrink: 0; }
.footer-links a:hover { color: var(--brand); }
.footer-mini-list { display: flex; flex-direction: column; gap: 12px; }
.footer-mini-item { display: flex; gap: 11px; align-items: center; }
.footer-mini-img { width: 54px; height: 46px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.footer-mini-name { color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.35; }
.footer-mini-sub  { color: var(--brand); font-size: .74rem; font-weight: 700; margin-top: 2px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.3); font-size: .78rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--brand); }
.footer-designed { color: rgba(255,255,255,.25); font-size: .76rem; }
.footer-designed a { color: #25D366; }

/* ── ENQUIRY MODAL ── */
.modal-backdrop { position: fixed; inset: 0; background: rgba(14,13,11,.75); backdrop-filter: blur(6px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 580px; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: modalIn .35s cubic-bezier(.34,1.4,.64,1); }
@keyframes modalIn { from { transform: scale(.9) translateY(24px); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header { padding: 28px 30px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-header-text h3 { font-size: 1.25rem; font-weight: 700; }
.modal-header-text p  { color: var(--text-light); font-size: .85rem; margin-top: 4px; }
.modal-close { background: var(--ivory-2); border: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--text); flex-shrink: 0; transition: var(--transition); }
.modal-close:hover { background: var(--dark); color: var(--white); }
.modal-body { padding: 24px 30px 32px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid-2 .full { grid-column: 1/-1; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); }
.fg input,.fg select,.fg textarea { padding: 10px 13px; border: 1.5px solid var(--sand); border-radius: var(--radius); font-size: .9rem; font-family: inherit; color: var(--text); transition: border-color var(--transition); width: 100%; background: var(--white); }
.fg input:focus,.fg select:focus,.fg textarea:focus { outline: none; border-color: var(--brand); }
.fg textarea { resize: vertical; min-height: 80px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(16,185,129,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success .success-icon i { font-size: 2rem; color: #10b981; }
.form-success h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.form-success p  { color: var(--text-light); }

/* ── PAGE HERO ── */
.page-hero { height: 380px; position: relative; display: flex; align-items: flex-end; padding-bottom: 60px; background: var(--charcoal); }
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,13,11,.88) 0%, rgba(14,13,11,.3) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.breadcrumb { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 10px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb i { font-size: .65rem; }

/* ── LISTING FILTER BAR ── */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--sand); padding: 16px 0; margin-bottom: 48px; position: sticky; top: 64px; z-index: 100; }
.filter-bar-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-pill { padding: 7px 18px; border-radius: 24px; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; background: var(--ivory-2); color: var(--text-light); border: 1.5px solid transparent; transition: var(--transition); }
.filter-pill:hover, .filter-pill.active { background: var(--brand); color: var(--dark); }
.filter-bar-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.filter-select-sm { padding: 8px 12px; border: 1.5px solid var(--sand); border-radius: var(--radius); font-size: .82rem; font-family: inherit; color: var(--text); background: var(--white); }
.filter-select-sm:focus { outline: none; border-color: var(--brand); }
.results-count { font-size: .82rem; color: var(--text-light); }

/* ── LISTING GRIDS ── */
.listing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.listing-grid.g3 { grid-template-columns: repeat(3,1fr); }
.listing-grid.g2 { grid-template-columns: repeat(2,1fr); }

/* ── DETAIL PAGE ── */
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.detail-sidebar { position: sticky; top: 88px; }
.sidebar-box { background: var(--white); border: 1.5px solid var(--sand); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 20px; }
.sidebar-price-band { padding: 28px; background: var(--dark); text-align: center; }
.sidebar-price-band .from { color: rgba(255,255,255,.45); font-size: .76rem; margin-bottom: 4px; }
.sidebar-price-band .amount { font-size: 2.4rem; font-weight: 800; color: var(--brand); line-height: 1; }
.sidebar-price-band .per { color: rgba(255,255,255,.4); font-size: .8rem; margin-top: 4px; }
.sidebar-rows { padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.sidebar-row { display: flex; justify-content: space-between; align-items: center; font-size: .87rem; padding-bottom: 12px; border-bottom: 1px solid var(--ivory-2); }
.sidebar-row:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-row .k { color: var(--text-light); display: flex; align-items: center; gap: 7px; }
.sidebar-row .k i { color: var(--brand); width: 14px; }
.sidebar-row .v { font-weight: 700; }
.sidebar-actions-wrap { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; margin-bottom: 40px; border-radius: var(--radius-lg); overflow: hidden; }
.detail-gallery .g-main { grid-row: 1/-1; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery .g-main img { aspect-ratio: 3/2; }
.detail-gallery .g-thumb img { aspect-ratio: 16/10; }
.detail-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--sand); }
.detail-section:last-child { border-bottom: none; }
.detail-section h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.detail-section h3 i { color: var(--brand); }
.detail-section p { color: var(--text-light); line-height: 1.82; font-size: .93rem; }
.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inc-exc h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.inc-exc .inc-title { color: #059669; }
.inc-exc .exc-title { color: #dc2626; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-light); line-height: 1.55; }
.feature-list .inc-li i { color: #059669; flex-shrink: 0; margin-top: 2px; font-size: .85rem; }
.feature-list .exc-li i { color: #dc2626; flex-shrink: 0; margin-top: 2px; font-size: .85rem; }
.itin-day { display: flex; gap: 18px; margin-bottom: 24px; }
.itin-num { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: var(--dark); font-weight: 800; font-size: .88rem; display: flex; align-items: center; justify-content: center; position: relative; }
.itin-num::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 2px; height: 24px; background: var(--sand); }
.itin-day:last-child .itin-num::after { display: none; }
.itin-content { flex: 1; padding-top: 8px; }
.itin-title { font-weight: 700; font-size: .95rem; margin-bottom: 5px; }
.itin-text { color: var(--text-light); font-size: .86rem; line-height: 1.7; }
.itin-tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.itin-tag { font-size: .72rem; color: var(--text-light); background: var(--ivory-2); padding: 3px 9px; border-radius: 12px; display: flex; align-items: center; gap: 4px; }
.itin-tag i { color: var(--brand); font-size: .7rem; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 15px; }
.contact-icon { width: 46px; height: 46px; border-radius: 11px; background: rgba(212,175,55,.1); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); }
.contact-val { font-size: .92rem; font-weight: 600; color: var(--text); margin-top: 2px; }
.contact-form-box { background: var(--white); border: 1.5px solid var(--sand); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.contact-map { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--sand); }
.contact-map iframe { display: block; }

/* ── POLICY ── */
.policy-wrap { max-width: 820px; margin: 0 auto; }
.policy-wrap h2 { font-size: 1.35rem; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.policy-wrap h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; }
.policy-wrap p  { color: var(--text-light); line-height: 1.85; margin-bottom: 14px; font-size: .93rem; }
.policy-wrap ul { margin: 0 0 16px 18px; }
.policy-wrap ul li { color: var(--text-light); font-size: .93rem; margin-bottom: 8px; line-height: 1.7; }
.policy-updated { background: var(--ivory-2); border-left: 4px solid var(--brand); padding: 12px 18px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 36px; font-size: .84rem; color: var(--text-light); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-r { opacity: 0; transform: translateX(28px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-l.visible, .reveal-r.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 800; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--transition); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wa-float-tooltip { position: absolute; right: 64px; background: var(--dark); color: var(--white); font-size: .78rem; white-space: nowrap; padding: 6px 12px; border-radius: var(--radius); opacity: 0; pointer-events: none; transition: var(--transition); }
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 48px; flex-wrap: wrap; }
.page-btn { width: 40px; height: 40px; border-radius: var(--radius); border: 1.5px solid var(--sand); display: flex; align-items: center; justify-content: center; font-size: .88rem; font-weight: 600; color: var(--text); transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--brand); border-color: var(--brand); color: var(--dark); }

/* ── UTILITIES ── */
.text-brand  { color: var(--brand)!important; }
.text-white  { color: var(--white)!important; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }  .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.no-img-placeholder { background: linear-gradient(135deg,var(--charcoal),var(--earth)); display: flex; align-items: center; justify-content: center; }
.no-img-placeholder i { font-size: 2.5rem; color: rgba(212,175,55,.2); }

/* ── RESPONSIVE ── */
@media (max-width:1200px) {
  .pkg-grid { grid-template-columns: repeat(3,1fr); }
  .listing-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-top>div:last-child { display: none; }
}
@media (max-width:1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .intro-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width:900px) {
  .mosaic { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .mosaic-item { height: 200px!important; }
  .mosaic-item:nth-child(1) { grid-column: span 2; height: 260px!important; }
  .mosaic-item:nth-child(6) { grid-column: span 1; }
  .hotels-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .listing-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .inc-exc { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .filter-bar { position: static; }
  .filter-bar-inner { gap: 8px; }
}
@media (max-width:540px) {
  .pkg-grid,.hotels-grid,.blog-grid,.listing-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-item:nth-child(1) { grid-column: span 1; }
  .mosaic-item:nth-child(6) { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 16px; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-gallery .g-main { grid-row: auto; }
}
@media (max-width:768px) {
  .nav-cta .btn-primary {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .nav-mobile-cta .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width:480px) {
  .nav-cta .btn-primary {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  .nav-cta .btn-primary i {
    font-size: 0.8rem;
  }
}
/* ================================================================
   NINA SAFARIS — STYLE ADDITIONS v2
   Append these rules to the BOTTOM of /assets/css/style.css
   They override earlier rules where needed.
================================================================ */

/* ── HERO PADDING — account for topbar (36px) + navbar (80px) ─── */
.hero-content { padding-top: 116px; }

/* ── PAGE BREADCRUMB BARS ────────────────────────────────────────
   Any div used as a breadcrumb section below the navbar.
   Match the inline padding-top in package.php and other pages.
   Old value was 90px — add 36px for topbar = 126px
── */
.breadcrumb-bar-outer { padding-top: 126px !important; }

/* ── TRANSPARENT NAVBAR — always readable over any image ─────── */
#navbar.transparent {
  background: linear-gradient(to bottom,
    rgba(10,9,8,0.68) 0%,
    rgba(10,9,8,0.28) 65%,
    transparent 100%
  );
}

/* ── FAQ — ensure open/close works with CSS transition ───────── */
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-answer { transition: max-height .42s ease, padding .3s ease; }

/* ── MOBILE NAV HAMBURGER ANIMATION ────────────────────────────
   Override old .nav-hamburger.open rules if any conflict
── */
.nav-hamburger { display: none; }
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; }
  .nav-links     { display: none !important; }
  /* nav-cta hidden on mobile — buttons live in mobile sidebar only */
  .nav-cta       { display: none !important; }
}

/* ── DROPDOWN MENU — prevent flash on hover leave ─────────────── */
.dropdown-menu {
  transition: opacity .22s ease, transform .22s ease;
}

/* ── HERO — account for topbar (42px) + navbar (80px) ─────────── */
.hero-content { padding-top: 122px; }

/* ── TRANSPARENT NAVBAR — dark gradient, always readable ───────── */
#navbar.transparent {
  background: linear-gradient(to bottom,
    rgba(10,9,8,0.68) 0%,
    rgba(10,9,8,0.28) 65%,
    transparent 100%
  );
}
#navbar.scrolled {
  background: #0A0908;
  box-shadow: 0 2px 28px rgba(0,0,0,.5);
}

/* ── FAQ — ensure the answer transition works ──────────────────── */
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-answer { transition: max-height .42s ease, padding .3s ease; }

/* ── MOBILE — hamburger visible, nav-cta hidden ────────────────── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; }
  .nav-links     { display: none !important; }
  .nav-cta       { display: none !important; }
  #navbar        { top: 0 !important; }   /* no topbar on mobile */
}
