/* ================================================================
   MAJALI COMPANY — Shared Stylesheet
   Modern, professional, light theme
   ================================================================ */


/* ── CSS Custom Properties ─────────────────────────────────────── */
:root {
  --brand-primary:   #0077b6;
  --brand-dark:      #03045e;
  --brand-light:     #00b4d8;
  --brand-accent:    #d4a017;
  --brand-accent2:   #e8b84b;
  --text-dark:       #000b43;
  --text-body:       #0d1b12;
  --text-muted:      #0077b6;
  --surface:         #ffffff;
  --surface-off:     #f6f8f6;
  --surface-tint:    #caf0f8;
  --border:          #ade8f4;
  --shadow-sm:       0 2px 8px rgba(3,4,94,.07);
  --shadow-md:       0 6px 24px rgba(3,4,94,.11);
  --shadow-lg:       0 16px 48px rgba(3,4,94,.16);
  --radius:          10px;
  --radius-lg:       18px;
  --radius-xl:       28px;
  --transition:      0.25s ease;
  --transition-slow: 0.45s cubic-bezier(.25,.46,.45,.94);
  --container:       1240px;
  --font-heading:    'Syne', sans-serif;
  --font-body:       'DM Sans', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Typography ────────────────────────────────────────────────── */
h1 {
  font-family: 'Righteous', cursive;
  color: var(--brand-primary);
  line-height: 1.1;
  font-weight: 400;
}

h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-body); }

/* ── Section Helpers ───────────────────────────────────────────── */
.section { padding-block: 5rem; }
.section--alt { background: var(--surface-off); }
.section--tint { background: var(--surface-tint); }
.section--dark { background: var(--brand-dark); color: white; }
.section--dark h2, .section--dark h3, .section--dark p { color: rgba(255,255,255,.9); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--surface-tint);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .3rem .85rem;
  margin-bottom: 1rem;
}
.section-label .dot {
  width: 6px; height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
}
.section-header { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 3.5rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: .75rem; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,92,54,.25);
}
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-1px);
}
.btn-white {
  background: white;
  color: var(--brand-primary);
  border-color: white;
}
.btn-white:hover {
  background: var(--surface-tint);
  color: var(--brand-dark);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--brand-accent);
  color: var(--text-dark);
  border-color: var(--brand-accent);
}
.btn-accent:hover {
  background: var(--brand-accent2);
  border-color: var(--brand-accent2);
  transform: translateY(-1px);
}
.btn-lg { padding: .95rem 2.2rem; font-size: 1rem; }

/* ── Preloader ─────────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 80px; height: 80px; margin-bottom: 1.5rem; }
.preloader-logo img { width: 100%; border-radius: 12px; }
.preloader-text {
  color: rgba(255,255,255,.7);
  font-family: var(--font-heading);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.preloader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 99px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--brand-accent);
  border-radius: 99px;
  animation: barLoad 1.5s ease forwards;
}
@keyframes barLoad { to { width: 100%; } }

/* ── Top Bar ───────────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(135deg, rgba(8, 62, 56, 0.85) 0%, rgba(10, 91, 92, 0.6) 60%, rgba(8, 62, 61, 0.4) 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: .82rem;
  padding: .45rem 0;
  position: relative;
  z-index: 200;
}
.topbar.stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 220;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar-left a, .topbar-left span {
  color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: .35rem;
  transition: color var(--transition);
}
.topbar-left a:hover { color: var(--brand-accent); }
.topbar-right { display: flex; align-items: center; gap: .65rem; }
.topbar-right a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  font-size: .7rem;
  transition: all var(--transition);
}
.topbar-right a:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--text-dark);
}
.topbar-right a svg {
  width: 14px;
  height: 14px;
}

/* ── Navigation ────────────────────────────────────────────────── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
  backdrop-filter: saturate(180%) blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: .85rem;
}
.nav-logo {
    height: 40px;
    width: auto;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; margin: 0px;}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand-accent);
  padding: .45rem .85rem;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--brand-primary); background: var(--surface-tint); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: .85rem; right: .85rem;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.dropdown-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .85rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  color: var(--text-body);
  font-size: .88rem;
}
.dropdown-item:hover { background: var(--surface-tint); color: var(--brand-primary); }
.dropdown-item-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary); flex-shrink: 0;
  transition: background var(--transition);
}
.dropdown-item:hover .dropdown-item-icon { background: var(--brand-primary); color: white; }
.dropdown-item-label { font-weight: 600; font-size: .88rem; }
.dropdown-item-desc { font-size: .78rem; color: var(--text-muted); }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 99;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: .85rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--surface-tint); color: var(--brand-primary); }
.mobile-nav-close {
  position: fixed;
  top: 1rem; right: 1.5rem;
  background: var(--surface-off);
  border: none;
  font-size: 1.3rem;
  color: var(--text-dark);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
}
.nav-cta { margin-left: .5rem; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
  padding-top: 5.5rem;
}
.hero video, .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8, 55, 62, 0.85) 0%, rgba(10, 80, 92, 0.6) 60%, rgba(8, 62, 60, 0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding-block: 6rem 4rem;
}
.hero-label {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.35);
  color: var(--brand-accent2);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--brand-accent2); }
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: scrollBounce 2s ease infinite;
}
.hero-scroll span { width: 1px; height: 40px; background: rgba(255,255,255,.3); }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--brand-dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  padding-top: 7.5rem;
}

/* Post header (single blog posts) */
.post-header {
  background: var(--brand-dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  padding-top: 7.5rem;
}
.post-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(14,122,71,.4) 0%, transparent 60%);
}
.post-header .container { position: relative; z-index: 1; }

/* Blog hero */
.blog-hero {
  background: var(--brand-dark);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  padding-top: 7.5rem;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(14,122,71,.4) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin-top: .75rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--brand-accent2); }
.breadcrumb-sep { opacity: .4; }

/* ── Stats Bar ─────────────────────────────────────────────────── */
.stats-bar { background: var(--brand-primary); padding: 2.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-suffix { color: var(--brand-accent2); }
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  letter-spacing: .02em;
}

/* ── Service Cards ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--surface-tint);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--brand-primary); color: white; }
.service-card h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.service-card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 1.25rem; }
.service-features { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .45rem; }
.service-features li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--text-body);
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--brand-primary);
  font-weight: 600; font-size: .9rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .55rem; }

/* ── Portfolio Grid ─────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface-off);
  cursor: pointer;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,62,37,.85) 0%, rgba(8,62,37,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-accent2);
  margin-bottom: .35rem;
}
.portfolio-title { color: white; font-size: 1.05rem; font-weight: 700; }

/* ── Destination Cards ──────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.dest-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-card:hover .dest-media img { transform: scale(1.05); }
.dest-badge {
  position: absolute; top: .85rem; left: .85rem;
  background: rgba(8,62,37,.85);
  color: white; font-size: .72rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.dest-body { padding: 1.5rem; }
.dest-body h3 { margin-bottom: .5rem; }
.dest-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.dest-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.dest-price { font-family: var(--font-heading); font-weight: 700; color: var(--brand-primary); font-size: 1.05rem; }
.dest-duration { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }

/* ── Team Cards ─────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition-slow);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.team-avatar-placeholder {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800;
  color: white;
}
.team-body { padding: 1.25rem; }
.team-name { font-size: 1.05rem; margin-bottom: .2rem; }
.team-role { color: var(--brand-primary); font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .65rem; }
.team-bio { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Values / Feature Grid ──────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-slow);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon {
  font-size: 2rem;
  margin-bottom: .85rem;
  display: block;
}
.value-title { font-size: 1.05rem; margin-bottom: .5rem; }
.value-desc { font-size: .9rem; color: var(--text-muted); }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: none; border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .97rem; font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--brand-primary); }
.faq-btn i { flex-shrink: 0; transition: transform var(--transition); color: var(--brand-primary); }
.faq-item.open .faq-btn i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }

/* ── Contact Section ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--surface-tint);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary);
}
.contact-info-text h4 { font-size: .95rem; margin-bottom: .2rem; }
.contact-info-text p, .contact-info-text a {
  font-size: .88rem; color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-text a:hover { color: var(--brand-primary); }

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.form-wrap { max-width: 900px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--surface-off);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--brand-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(10,92,54,.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-full { grid-column: 1/-1; }
.form-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; margin-top: 1.5rem; }
.form-note { font-size: .8rem; color: var(--text-muted); margin: 0; }
.form-success {
  display: none;
  background: #d1fadf;
  color: #065f35;
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .88rem;
  margin-top: 1rem;
}
.form-success.show { display: block; }

/* ── Map Embed ──────────────────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.8);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand img { height: 36px; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 800;
  color: white;
}
.footer-desc { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .8rem;
  transition: all var(--transition);
}
.footer-social:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: var(--text-dark); }
.footer-col h3, .footer-col h4 {
  font-family: var(--font-heading);
  font-size: .88rem; font-weight: 700;
  color: white;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a {
  font-size: .88rem; color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--brand-accent2); }
.footer-col ul li span { font-size: .88rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .4rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-block: 1.5rem;
  font-size: .82rem; color: rgba(255,255,255,.65);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--brand-accent2); }

/* ── WhatsApp Float ─────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 500;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.wa-float img { width: 28px; }

/* ── Scroll reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-24px); }
.reveal-left.visible { transform: none; }
.reveal-right { transform: translateX(24px); }
.reveal-right.visible { transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── Story/About Grid ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-text .section-label { margin-bottom: .75rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }
.about-features { margin-block: 1.5rem 2rem; display: flex; flex-direction: column; gap: .6rem; }
.about-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .93rem; color: var(--text-body);
}
.about-features li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--surface-tint);
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  display: flex; flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230a5c36' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Video Section ──────────────────────────────────────────────── */
.video-section { position: relative; aspect-ratio: 21/9; overflow: hidden; background: #000; }
.video-section video { width: 100%; height: 100%; object-fit: cover; }

/* ── Divider ────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin-block: .5rem; }

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--surface-tint);
  line-height: 1;
}
.testimonial-text { font-size: .93rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: .82rem; color: white;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
.author-role { font-size: .78rem; color: var(--text-muted); }

/* ── Utility ────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { aspect-ratio: 4/5; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --container: 100%; }
  .section { padding-block: 3.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-block: 5rem 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-left span:last-child { display: none; }
  .video-section { aspect-ratio: 16/9; }
  .cta-banner { padding: 2.25rem 1.5rem; }
  .about-grid { gap: 2rem; }
  .page-hero { padding: 3.5rem 0 2.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .topbar { display: none; }
  .about-img-wrap { aspect-ratio: auto; max-height: 500px; }
  .about-img-wrap img { object-fit: contain; object-position: top center; }
}


/* ── Font-display swap fallback stack ──────────────────────────── */
/* Fonts are loaded asynchronously; system fallbacks render immediately */

/* ── Non-composited animation fix ──────────────────────────────── */
.hero-scroll { will-change: transform; }
.preloader-bar-fill { will-change: width; }

/* ── Accessibility: link distinction beyond color ───────────────── */
.footer-col ul li a:hover { 
  color: var(--brand-accent2); 
  text-decoration: underline;
}
.footer-bottom a:hover { 
  color: var(--brand-accent2); 
  text-decoration: underline;
}

/* ── Improved stat-label contrast (WCAG AA fix) ─────────────────── */
/* stat-label color already updated above to .92 opacity */

/* ── Reduce preloader impact on LCP ────────────────────────────── */
.preloader-logo img { content-visibility: auto; }

/* ── Image optimisation hints ───────────────────────────────────── */
.about-img-wrap img { 
  content-visibility: auto;
  contain-intrinsic-size: 637px 796px;
}
.dest-media img {
  content-visibility: auto;
  contain-intrinsic-size: auto 220px;
}

/* ── Reduce CLS for images without explicit dimensions ──────────── */
img[width][height] { aspect-ratio: attr(width) / attr(height); }
