/* ====================================================
   AL TAWFEEQ ELITE — Design System
   Gold #db9c28 · Blue #5BB8E8 · Pink #F4A0B5 · Silver #C8D4E0
==================================================== */

:root {
  --gold: #db9c28;
  --gold2: #f0b93a;
  --blue: #5BB8E8;
  --pink: #F4A0B5;
  --silver: #C8D4E0;

  --bg: #0B0B0E;
  --bg2: #111116;
  --bg3: #1A1A20;
  --light: #F5F4EF;
  --lt2: #ECEAE4;

  --txt: #FFFFFF;
  --muted: #72788A;
  --dim: #3E4350;

  --r: 8px;
  --r2: 14px;
  --tr: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.14;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 0.8rem;
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.74;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

body.sidebar-open {
  overflow: hidden;
}

/* ─── TAILWIND COMPAT (inner pages) ─── */
.bg-black {
  background-color: rgba(11, 11, 14, 0.95) !important;
}

.bg-gray-950 {
  background-color: rgba(14, 14, 18, 0.93) !important;
}

.bg-gray-900 {
  background-color: rgba(17, 17, 22, 0.88) !important;
}

.bg-gray-800 {
  background-color: rgba(26, 26, 32, 0.82) !important;
}

.bg-gray-700 {
  background-color: rgba(35, 35, 44, 0.76) !important;
}

.from-gray-950 {
  --tw-gradient-from: rgba(14, 14, 18, 0.96) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(14, 14, 18, 0)) !important;
}

.from-gray-900 {
  --tw-gradient-from: rgba(17, 17, 22, 0.93) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 17, 22, 0)) !important;
}

.from-gray-800 {
  --tw-gradient-from: rgba(26, 26, 32, 0.88) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(26, 26, 32, 0)) !important;
}

.via-black {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(11, 11, 14, 0.94), var(--tw-gradient-to, rgba(11, 11, 14, 0)) !important;
}

.to-black {
  --tw-gradient-to: rgba(11, 11, 14, 0.97) !important;
}

.to-gray-950 {
  --tw-gradient-to: rgba(14, 14, 18, 0.95) !important;
}

.to-gray-900 {
  --tw-gradient-to: rgba(17, 17, 22, 0.92) !important;
}

.to-gray-800 {
  --tw-gradient-to: rgba(26, 26, 32, 0.88) !important;
}

.hover\:bg-gray-700:hover {
  background-color: rgba(35, 35, 44, 0.82) !important;
}

.hover\:bg-gray-800:hover {
  background-color: rgba(26, 26, 32, 0.88) !important;
}

.text-gray-100 {
  color: #F2F5FF !important;
}

.text-gray-200 {
  color: #D0DAF0 !important;
}

.text-gray-300 {
  color: var(--muted) !important;
}

.text-gray-400 {
  color: var(--dim) !important;
}

/* ─── NAVBAR ─── */
.e-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(11, 11, 14, 0.94);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.e-nav-brand {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt);
  gap: 0.7rem;
}

.e-nav-brand img {
  height: 88px;
  width: auto;
}

.e-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes nav-color-cycle {
  0%   { color: #db9c28; }
  25%  { color: #5BB8E8; }
  50%  { color: #F4A0B5; }
  75%  { color: #C8D4E0; }
  100% { color: #db9c28; }
}

.e-nav-links a {
  animation: nav-color-cycle 6s ease-in-out infinite;
  transition: color var(--tr);
}

.e-nav-links a:nth-child(1) { animation-delay: 0s; }
.e-nav-links a:nth-child(2) { animation-delay: -1.5s; }
.e-nav-links a:nth-child(3) { animation-delay: -3s; }
.e-nav-links a:nth-child(4) { animation-delay: -4.5s; }

.e-nav-links a:hover {
  color: #fff !important;
  animation: none;
}

.e-nav-links .e-drop {
  position: relative;
}

.e-nav-links .e-drop>button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: inherit;
  text-transform: inherit;
  animation: nav-color-cycle 6s ease-in-out infinite;
  transition: color var(--tr);
}

.e-nav-links .e-drop:nth-child(1) > button { animation-delay: 0s; }
.e-nav-links .e-drop:nth-child(2) > button { animation-delay: -1.5s; }
.e-nav-links .e-drop:nth-child(3) > button { animation-delay: -3s; }
.e-nav-links .e-drop:nth-child(4) > button { animation-delay: -4.5s; }

.e-nav-links .e-drop>button:hover {
  color: #fff !important;
  animation: none;
}

.e-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding-top: 8px;
  min-width: 200px;
  width: max-content;
  max-width: 280px;
  background: rgba(14, 14, 18, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(219, 156, 40, 0.2);
  border-radius: var(--r2);
  padding: 0.4rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 200;
  animation: ddFade 0.18s ease both;
}

.e-drop:hover .e-drop-menu,
.e-drop-menu.drop-open {
  display: block;
}

.e-drop-menu a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  transition: color var(--tr), background var(--tr), padding-left var(--tr);
}

.e-drop-menu a:hover {
  color: var(--gold);
  background: rgba(219, 156, 40, 0.06);
  padding-left: 1.4rem;
}

@keyframes ddFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


.e-nav-book {
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
  text-decoration: none;
}

.e-nav-book:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.e-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.e-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  transition: var(--tr);
}

@media(max-width:900px) {
  .e-nav-links {
    display: none;
  }

  .e-nav-book {
    display: none;
  }

  .e-nav-burger {
    display: flex;
  }
}

/* ─── MOBILE SIDEBAR ─── */
#mobile-menu {
  z-index: 9999;
}

#mobile-menu-panel {
  background: rgba(11, 11, 14, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── HERO ─── */
.e-hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 58px;
}

.e-hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  width: 100%;
}

.e-hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  position: relative;
}

.e-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(11, 11, 14, 0.97) 0%, rgba(11, 11, 14, 0.82) 40%, rgba(11, 11, 14, 0.4) 70%, rgba(11, 11, 14, 0.15) 100%);
}

.e-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 6%;
  max-width: 740px;
}

.e-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(219, 156, 40, 0.38);
  color: var(--gold);
  background: rgba(219, 156, 40, 0.08);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 3px;
  margin-bottom: 1.4rem;
  animation: eRise 0.7s 0.2s both;
}

.e-hero-title {
  color: var(--txt);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: eRise 0.7s 0.38s both;
}

.e-hero-title .hi {
  color: var(--gold);
}

.e-hero-sub {
  font-size: 1rem;
  color: #9AA0B0;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: eRise 0.7s 0.56s both;
}

.e-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: eRise 0.7s 0.74s both;
}

.e-hero-meta {
  position: absolute;
  bottom: 2rem;
  left: 6%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.72rem;
  animation: eRise 0.7s 0.9s both;
}

.e-hero-phone {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.e-hero-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 600;
}

.e-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: livePulse 2s ease infinite;
}

@keyframes livePulse {

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

  50% {
    opacity: 0.5;
    transform: scale(0.75)
  }
}

@keyframes eRise {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

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

/* hero nav arrows */
.e-hero-arrows {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 20;
}

.e-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(219, 156, 40, 0.1);
  border: 1px solid rgba(219, 156, 40, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.e-hero-arrow:hover {
  background: rgba(219, 156, 40, 0.22);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* dots */
.e-hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 6%;
  display: flex;
  gap: 0.45rem;
  z-index: 20;
  align-items: center;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  border: none;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(219, 156, 40, 0.6);
}

/* ─── SHIMMER DIVIDER ─── */
.e-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--pink), var(--silver), var(--gold));
  background-size: 200% 100%;
  animation: shimFlow 5s linear infinite;
}

@keyframes shimFlow {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 200%
  }
}

/* ─── SECTION HELPERS ─── */
.e-section {
  padding: 6rem 2.5rem;
}

.e-container {
  max-width: 1240px;
  margin: 0 auto;
}

.e-section-hd {
  margin-bottom: 3.2rem;
}

.e-section-hd h2 {
  color: var(--txt);
  margin-bottom: 0.6rem;
}

.e-section-hd p {
  max-width: 520px;
}

.e-section-hd.center {
  text-align: center;
}

.e-section-hd.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ─── SERVICES BENTO GRID ─── */
.e-services {
  background: var(--bg2);
}

.e-svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.e-svc-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.e-svc-badges {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.3rem;
}

.e-svc-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #000;
  font-weight: 800;
}

.esb-gold {
  background: var(--gold);
}

.esb-pink {
  background: var(--pink);
}

.esb-blue {
  background: var(--blue);
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 265px 265px 265px;
  gap: 10px;
}

@media(max-width:900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-card {
    min-height: 240px;
  }
}

@media(max-width:560px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-card {
    min-height: 220px;
  }
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r2);
  cursor: pointer;
  transition: transform var(--tr);
}

.bento-card:hover {
  transform: scale(1.012);
}

/* explicit 3×2 placement */
.bc-1 {
  grid-column: 1;
  grid-row: 1;
}

.bc-2 {
  grid-column: 2;
  grid-row: 1;
}

.bc-3 {
  grid-column: 3;
  grid-row: 1;
}

.bc-4 {
  grid-column: 1;
  grid-row: 2;
}

.bc-5 {
  grid-column: 2;
  grid-row: 2;
}

.bc-6 {
  grid-column: 3;
  grid-row: 2;
}

.bc-7 {
  grid-column: 1 / 3;
  grid-row: 3;
}

.bc-8 {
  grid-column: 3;
  grid-row: 3;
}

/* visa banner is wide text art — show whole image, no crop */
.bc-8>img {
  object-fit: contain;
  background: #0e0e16;
}

.bento-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.bento-card:hover>img {
  transform: scale(1.06);
}

.bento-card .bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.4rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 65%;
}

/* Dark card (no bg image) */
.bento-card.bento-dark {
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bento-card.bento-dark .bento-overlay {
  background: none;
  position: relative;
  padding: 2rem;
  min-height: unset;
  height: 100%;
  justify-content: flex-end;
}

.bento-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.bento-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.bento-card p {
  font-size: 0.82rem;
  color: #AAAFBA;
  margin-bottom: 0.9rem;
}

/* ─── COMING SOON BENTO STATE ─── */
.bento-coming-soon {
  pointer-events: none;
  cursor: default;
}

.bento-coming-soon > img {
  filter: grayscale(55%) brightness(0.55);
}

/* semi-transparent dark veil on top of the image */
.bento-cs-veil {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 14, 0.45);
  z-index: 1;
}

/* overlay sits above the veil */
.bento-coming-soon .bento-overlay {
  z-index: 2;
}

.bento-cs-tag {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.18em;
}

.bento-coming-soon h3 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bento-coming-soon p {
  color: rgba(255, 255, 255, 0.3) !important;
}

.bento-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--tr);
}

.bento-link:hover {
  gap: 0.75rem;
}

.bento-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 0.6rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}

.bento-book-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* ─── SUPPORT SECTION ─── */
.e-support {
  background: var(--bg);
}

.e-support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media(max-width:900px) {
  .e-support-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.e-support-imgs {
  position: relative;
}

.e-sup-img {
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.e-sup-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.e-sup-img2 {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 200px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 2px solid var(--bg2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.e-sup-img2 img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.e-sup-stat {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: var(--gold);
  color: #000;
  padding: 0.9rem 1.3rem;
  border-radius: var(--r);
}

.e-sup-num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.e-sup-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.e-support-txt .op-tag {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.e-support-txt h2 {
  color: var(--txt);
  margin-bottom: 2rem;
}

.e-features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.e-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.e-feat-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(219, 156, 40, 0.1);
  border: 1px solid rgba(219, 156, 40, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
}

.e-feat-ico.blue-ico {
  background: rgba(91, 184, 232, 0.1);
  border-color: rgba(91, 184, 232, 0.18);
  color: var(--blue);
}

.e-feat-ico.pink-ico {
  background: rgba(244, 160, 181, 0.1);
  border-color: rgba(244, 160, 181, 0.18);
  color: var(--pink);
}

.e-feat-body h4 {
  color: var(--txt);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.e-feat-body p {
  font-size: 0.86rem;
}

/* ─── FLEET SECTION ─── */
.e-fleet {
  background: var(--bg2);
}

.e-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* fleet: 2-col at tablet handled in main responsive block below */

.e-fleet-card {
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r2);
  overflow: hidden;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}

.e-fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(219, 156, 40, 0.28);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}

.e-fleet-card:nth-child(2) {
  border-color: rgba(219, 156, 40, 0.16);
}

.e-fc-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.025);
  position: relative;
  overflow: hidden;
}

.e-fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.e-fleet-card:hover .e-fc-img img {
  transform: scale(1.05);
}

.e-fc-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 3px;
}

.e-fc-body {
  padding: 1.2rem 1.3rem;
}

.e-fc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 0.3rem;
}

.e-fc-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.e-fc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.e-fc-cta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--tr);
}

.e-fc-cta:hover {
  gap: 0.7rem;
}

.e-fc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #25d366;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.e-fc-book-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* ─── OFFICES / GLOBAL NETWORK ─── */
.e-offices {
  padding: 6rem 2.5rem;
  background: var(--light);
}

.e-offices h2 {
  color: #0B0B0E;
  letter-spacing: -0.015em;
}

.e-offices .e-section-hd p {
  color: #666;
}

.e-off-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media(max-width:1024px) {
  .e-off-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .e-off-grid {
    grid-template-columns: 1fr;
  }
}

.e-off-card {
  background: #fff;
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.4rem 1.3rem;
  transition: box-shadow var(--tr), transform var(--tr);
}

.e-off-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.e-off-city {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.e-off-card h3 {
  color: #0B0B0E;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.e-off-card p {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ─── JOIN / CTA SECTION ─── */
.e-join {
  padding: 5.5rem 2.5rem;
  background: linear-gradient(135deg, #F4A0B5 0%, #E8A8C8 40%, #B8C8E8 80%, #5BB8E8 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media(max-width:900px) {
  .e-join {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.e-join-left .ej-stars {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.4rem;
  color: #FF6B00;
}

.e-join-rating {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.8rem;
}

.e-join-left h2 {
  color: #0B0B0E;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.e-join-left p {
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}

.e-trust-card {
  background: #fff;
  border-radius: var(--r2);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.etc-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.etc-logo {
  height: 28px;
  width: auto;
}

.etc-score {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0B0B0E;
}

.etc-stars {
  color: #00B67A;
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: block;
}

.etc-count {
  font-size: 0.78rem;
  color: #666;
  margin-top: 0.3rem;
}

.etc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00B67A;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 1.2rem;
  transition: background var(--tr);
}

.etc-cta:hover {
  background: #009060;
}

/* ─── FOOTER ─── */
.e-footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 2.5rem 2rem;
}

.e-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media(max-width:1024px) {
  .e-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .e-footer-grid {
    grid-template-columns: 1fr;
  }
}

.e-footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 0.9rem;
}

.e-footer-blurb {
  font-size: 0.84rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.e-soc-row {
  display: flex;
  gap: 0.6rem;
}

.e-soc-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  transition: border-color var(--tr), color var(--tr), transform var(--tr);
}

.e-soc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.e-foot-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 1.2rem;
}

.e-foot-col ul {
  list-style: none;
}

.e-foot-col ul li {
  margin-bottom: 0.5rem;
}

.e-foot-col ul li a {
  font-size: 0.84rem;
  color: var(--muted);
  transition: color var(--tr);
}

.e-foot-col ul li a:hover {
  color: var(--gold);
}

.e-foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.84rem;
  color: var(--muted);
  list-style: none;
}

.e-foot-contact li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.e-foot-contact li a {
  color: var(--muted);
  transition: color var(--tr);
}

.e-foot-contact li a:hover {
  color: var(--gold);
}

.e-footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.74rem;
  color: var(--dim);
}

/* ─── BUTTONS ─── */
.btn-elite {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.76rem 1.8rem;
  background: var(--gold);
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}

.btn-elite:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-outline-e {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.76rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--txt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}

.btn-outline-e:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-dark-e {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.76rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}

.btn-dark-e:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: #25D366;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}

.btn-wa:hover {
  background: #1aab55;
  transform: translateY(-2px);
}

/* ─── FLOATING ─── */
.e-float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 80;
}

.e-float-ph {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 80;
}

.e-float-wa a,
.e-float-ph a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--tr), box-shadow var(--tr);
}

.e-float-wa a {
  background: #25D366;
}

.e-float-ph a {
  background: var(--gold);
  color: #000;
}

.e-float-wa a:hover,
.e-float-ph a:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

/* ─── INNER PAGE HERO ─── */
.at-page-hero {
  margin-top: 58px;
  padding: 4.5rem 2.5rem 3.5rem;
  background: linear-gradient(120deg, rgba(219, 156, 40, 0.14) 0%, rgba(91, 184, 232, 0.10) 50%, rgba(244, 160, 181, 0.09) 100%);
  border-bottom: 3px solid var(--gold);
  text-align: center;
  position: relative;
}

.at-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 14, 0.75);
  backdrop-filter: blur(10px);
  z-index: 0;
}

.at-page-hero h1 {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  z-index: 1;
  text-transform: none;
  animation: eRise 0.6s 0.1s both;
}

.at-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  animation: eRise 0.6s 0.25s both;
}

.at-breadcrumb a {
  color: var(--blue);
  transition: color var(--tr);
}

.at-breadcrumb a:hover {
  color: var(--gold);
}

.at-breadcrumb span {
  color: var(--gold);
}

/* inner page content */
body.at-inner-page>section,
body.at-inner-page>div:not(.e-float-wa):not(.e-float-ph):not(#mobile-menu) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

body.at-inner-page section h2,
body.at-inner-page section h3 {
  color: var(--gold);
  text-transform: none;
}

body.at-inner-page section h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  margin-top: 0.35rem;
  border-radius: 2px;
}

/* backward-compat card classes for inner pages */
.feature-card,
.tour-card,
.trending-tour-card,
.office-card,
.fleet-item,
.icon-card {
  background: var(--bg3) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: var(--r2) !important;
}

.feature-card h3,
.tour-card h3,
.trending-tour-card h3,
.office-card h3 {
  color: var(--gold) !important;
  text-transform: none !important;
}

.at-btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: var(--gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--tr), transform var(--tr);
}

.at-btn:hover,
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

/* ─── UTILS ─── */
.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ─── REDUCED MOTION ─── */
@media(prefers-reduced-motion:reduce) {

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

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* — Section padding — */
  .e-section {
    padding: 4rem 1.5rem;
  }
  .e-offices {
    padding: 4rem 1.5rem;
  }

  /* — Navbar — */
  .e-nav {
    padding: 0 1.2rem;
  }
  .e-nav-brand img {
    height: 52px;
  }

  /* — Hero: hide side arrows (swipe works) — */
  .e-hero-arrows {
    display: none;
  }
  .e-hero-content {
    max-width: 92%;
    padding: 0 5%;
  }
  .e-hero-meta {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
    bottom: 1.5rem;
    left: 5%;
  }
  .e-hero-dots {
    bottom: 1.2rem;
    right: 5%;
  }

  /* — Bento: reset explicit column/row placements for 2-col auto flow — */
  .bc-1, .bc-2, .bc-3,
  .bc-4, .bc-5, .bc-6 {
    grid-column: auto;
    grid-row: auto;
  }
  .bc-7 { grid-column: span 2; grid-row: auto; }
  .bc-8 { grid-column: auto; grid-row: auto; }

  /* — Bento: cards need explicit height when grid rows become auto — */
  .bento-card {
    min-height: 240px;
  }

  /* — Fleet: 2-col at tablet instead of jumping straight to 1 — */
  .e-fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* — Global section padding — */
  .e-section {
    padding: 3rem 1rem;
  }
  .e-offices {
    padding: 3rem 1rem;
  }
  .e-footer {
    padding: 3rem 1rem 1.5rem;
  }

  /* — Navbar — */
  .e-nav {
    padding: 0 1rem;
    height: 60px;
  }
  .e-nav-brand img {
    height: 44px;
  }
  .e-nav-brand span {
    font-size: 0.7rem;
  }

  /* — Hero — */
  .e-hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-bottom: 6rem;
    padding-top: 60px;
  }
  .e-hero-content {
    padding: 0 1rem;
    max-width: 100%;
  }
  .e-hero-eyebrow {
    font-size: 0.56rem;
    padding: 0.25rem 0.7rem;
    margin-bottom: 1rem;
  }
  .e-hero-title {
    font-size: clamp(1.9rem, 10vw, 3rem) !important;
    margin-bottom: 0.9rem;
  }
  .e-hero-sub {
    font-size: 0.85rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .e-hero-actions {
    flex-direction: column;
    gap: 0.65rem;
  }
  .e-hero-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .e-hero-meta {
    flex-direction: column;
    gap: 0.3rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.68rem;
  }
  .e-hero-dots {
    bottom: 1rem;
    right: 1rem;
  }

  /* — Services header — */
  .e-svc-header {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .e-svc-badges {
    margin-top: 0;
  }

  /* — Bento: single column, min height per card — */
  .bc-1, .bc-2, .bc-3,
  .bc-4, .bc-5, .bc-6,
  .bc-7, .bc-8 {
    grid-column: auto;
    grid-row: auto;
  }
  .bento {
    grid-template-rows: auto;
  }
  .bento-card {
    min-height: 210px;
  }

  /* — Support section — */
  .e-support-inner {
    gap: 2rem;
  }
  .e-sup-img img {
    height: 240px;
  }
  .e-sup-img2 {
    width: 140px;
    right: -0.5rem;
    bottom: -1.2rem;
  }
  .e-sup-img2 img {
    height: 100px;
  }
  .e-sup-stat {
    bottom: 0.8rem;
    left: 0.8rem;
    padding: 0.7rem 1rem;
  }
  .e-sup-num {
    font-size: 1.6rem;
  }
  .e-support-txt h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 1.5rem;
  }
  .e-features {
    gap: 1rem;
  }

  /* — Fleet: single column on mobile — */
  .e-fleet-grid {
    grid-template-columns: 1fr;
  }
  .e-section-hd {
    margin-bottom: 2rem;
  }

  /* — Offices — */
  .e-off-grid {
    grid-template-columns: 1fr;
  }

  /* — Footer — */
  .e-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .e-footer-brand {
    font-size: 1rem;
  }
  .e-footer-blurb {
    max-width: 100%;
  }
  .e-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    font-size: 0.68rem;
  }

  /* — Floating buttons — */
  .e-float-wa {
    bottom: 14px;
    right: 14px;
  }
  .e-float-ph {
    bottom: 14px;
    left: 14px;
  }
  .e-float-wa a,
  .e-float-ph a {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  /* — Buttons — */
  .btn-elite,
  .btn-outline-e {
    padding: 0.7rem 1.4rem;
    font-size: 0.74rem;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 400px
════════════════════════════════════════════════ */
@media (max-width: 400px) {

  .e-nav {
    padding: 0 0.8rem;
    height: 56px;
  }
  .e-nav-brand img {
    height: 38px;
  }

  .e-hero-title {
    font-size: clamp(1.7rem, 11vw, 2.4rem) !important;
  }
  .e-hero-eyebrow {
    font-size: 0.52rem;
  }
  .e-hero-sub {
    font-size: 0.8rem;
  }

  /* Dots only, hide meta on very small screens */
  .e-hero-meta {
    display: none;
  }

  .e-section {
    padding: 2.5rem 0.85rem;
  }
  .e-offices {
    padding: 2.5rem 0.85rem;
  }

  .bento-card {
    min-height: 190px;
  }

  .e-off-grid {
    grid-template-columns: 1fr;
  }
}