@import url('../fonts/fonts.css');

/* ═══════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #1a2744;
  --gold:   #f5a800;
  --red:    #c0392b;
  --white:  #ffffff;
  --light:  #f8f9fb;
  --text:   #222831;
  --muted:  #6c7a8d;
  --radius: 12px;
  --px: clamp(16px, 5vw, 60px);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════
   TOPBAR
═══════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  padding: 8px var(--px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: .85;
  white-space: nowrap;
  transition: opacity .2s;
}
.topbar a:hover { opacity: 1; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--px);
  box-shadow: 0 2px 16px rgba(26,39,68,.08);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .3s;
  gap: 12px;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(26,39,68,.16); }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: auto; height: 38px; flex-shrink: 0; }
.logo-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex;
  border: 1.5px solid #dde3ec;
  border-radius: 20px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
}
.lang-toggle span {
  padding: 4px 10px;
  cursor: pointer;
  transition: background .2s, color .2s;
  user-select: none;
}
.lang-toggle span.active { background: var(--navy); color: var(--white); }

.btn-contact {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-contact:hover {
  background: #e09600;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,168,0,.35);
}
.mepco-badge {
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 7px;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(26,39,68,.18);
  z-index: 300;
  flex-direction: column;
  padding: 24px 20px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 250;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-header .mepco-badge { font-size: 16px; }
.close-menu {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background .2s;
}
.close-menu:hover { background: #e8edf5; }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  background: var(--light);
  color: var(--navy);
}
.mobile-nav-links li a .nav-icon { font-size: 18px; width: 24px; text-align: center; }
.mobile-footer {
  border-top: 1px solid #eef1f6;
  padding-top: 20px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-footer .btn-contact {
  text-align: center;
  display: block;
  padding: 12px;
  font-size: 15px;
}
.mobile-lang {
  display: flex;
  border: 1.5px solid #dde3ec;
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
}
.mobile-lang span {
  padding: 10px 0;
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.mobile-lang span.active { background: var(--navy); color: var(--white); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,39,68,.88) 0%, rgba(26,39,68,.6) 60%, rgba(245,168,0,.12) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-up var(--dur,6s) var(--delay,0s) infinite ease-in-out;
}
@keyframes float-up {
  0%   { transform: translateY(100px) scale(0); opacity: 0; }
  20%  { opacity: .5; }
  80%  { opacity: .3; }
  100% { transform: translateY(-120px) scale(1.5); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  padding: 60px var(--px) 100px;
  animation: hero-in .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  animation: hero-in .9s .15s cubic-bezier(.22,1,.36,1) both;
}
.hero h1 {
  font-size: clamp(26px, 6vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: hero-in .9s .25s cubic-bezier(.22,1,.36,1) both;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 32px;
  animation: hero-in .9s .35s cubic-bezier(.22,1,.36,1) both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: hero-in .9s .45s cubic-bezier(.22,1,.36,1) both;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(13px,2vw,15px);
  padding: 13px 28px;
  border-radius: 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cairo', sans-serif;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,168,0,.4); background: #ffc32b; }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: clamp(13px,2vw,15px);
  padding: 12px 26px;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.5);
  text-decoration: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll .arrow {
  width: 20px; height: 20px;
  border-left: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(-45deg);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
.stats-band {
  background: var(--navy);
  padding: 32px var(--px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
  padding: 8px 4px;
}
.stat-item.visible { opacity: 1; transform: none; }
.stat-num {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: clamp(11px,1.5vw,13px); color: rgba(255,255,255,.7); margin-top: 6px; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  padding: 80px var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img-wrap { position: relative; display: flex; justify-content: center; }
.about-img-circle {
  width: clamp(240px, 36vw, 360px);
  height: clamp(240px, 36vw, 360px);
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold);
  box-shadow: 0 20px 60px rgba(245,168,0,.2);
  position: relative; z-index: 1;
  transition: transform .4s, box-shadow .4s;
}
.about-img-circle:hover { transform: scale(1.03) rotate(-1deg); box-shadow: 0 30px 76px rgba(245,168,0,.28); }
.about-img-circle img { width: 100%; height: 100%; object-fit: cover; }
.about-deco {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffda6e);
  opacity: .1;
  top: -30px; right: -20px; z-index: 0;
  animation: pulse-slow 4s ease-in-out infinite;
}
@keyframes pulse-slow {
  0%,100% { transform: scale(1); opacity: .1; }
  50%      { transform: scale(1.15); opacity: .18; }
}
.about-content .eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.about-content h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-content p { color: var(--muted); line-height: 1.9; font-size: 15px; margin-bottom: 14px; }
.features-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .5s, transform .5s;
}
.features-list li.visible { opacity: 1; transform: none; }
.check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--navy);
  font-weight: 900;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services { background: var(--light); padding: 80px var(--px); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .eyebrow {
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(24px,4vw,38px); font-weight: 900; color: var(--navy); }
.section-header p { color: var(--muted); font-size: 15px; max-width: 520px; margin: 14px auto 0; line-height: 1.8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,39,68,.07);
  transition: transform .3s, box-shadow .3s;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 4px;
  background: var(--gold);
  transition: width .4s;
}
.service-card:hover::before { width: 100%; }
.service-card.visible { opacity: 1; transform: none; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(26,39,68,.13); }
.service-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffd66e);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(245,168,0,.28);
  transition: transform .3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.75; }

/* ═══════════════════════════════════════
   BOOKING
═══════════════════════════════════════ */
.booking-section { background: var(--white); padding: 0; }
.booking {
  padding: 80px var(--px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.booking-text h2 { font-size: clamp(24px,4vw,40px); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.booking-text p { color: var(--muted); font-size: 15px; line-height: 1.9; margin-bottom: 14px; }
.booking-highlight {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.booking-highlight .icon-big { font-size: 28px; flex-shrink: 0; }
.booking-highlight strong { display: block; font-size: 15px; margin-bottom: 2px; }
.booking-highlight span { font-size: 12px; opacity: .7; }
.booking-form {
  background: var(--light);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 0 6px 36px rgba(26,39,68,.08);
}
.booking-form h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde3ec;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-group select:focus,
.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,168,0,.15);
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-top: 6px;
  font-family: 'Cairo', sans-serif;
  min-height: 50px;
}
.btn-submit:hover { background: #253464; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,39,68,.3); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px var(--px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .mepco-badge-footer {
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
  padding: 9px 18px;
  border-radius: 7px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer-brand p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-size: 14px; font-weight: 800; margin-bottom: 16px;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 28px; height: 2px; background: var(--gold);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s, padding-right .2s;
  display: block;
}
.footer-links a:hover { color: var(--gold); padding-right: 5px; }
.social-links { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 14px;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.social-link:hover { background: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
  background-size: 200%;
  animation: stripe-anim 3s linear infinite;
}
@keyframes stripe-anim {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

/* ═══════════════════════════════════════
   REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s, transform .65s;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   CURSOR GLOW (desktop only)
═══════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,168,0,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
  .stats-band { grid-template-columns: repeat(4,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about { gap: 40px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* hide desktop nav, show hamburger */
  .nav-links,
  .btn-contact,
  .lang-toggle,
  .cursor-glow { display: none !important; }
  .hamburger { display: flex; }

  /* shrink mepco badge in nav */
  .mepco-badge { font-size: 13px; padding: 6px 12px; }

  /* topbar */
  .topbar { justify-content: center; gap: 14px; font-size: 11px; padding: 7px 16px; }

  /* HERO */
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-content {
    padding: 40px 20px 80px;
    text-align: center;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(24px,7vw,36px); }
  .hero p { font-size: 14px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 1.5px; }
  .hero-actions { justify-content: center; }
  .btn-primary, .btn-outline { padding: 12px 22px; font-size: 14px; }

  /* STATS */
  .stats-band {
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    background: rgba(255,255,255,.1);
    padding: 0;
  }
  .stat-item {
    padding: 24px 12px;
    background: var(--navy);
  }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 11px; }

  /* ABOUT */
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 20px;
    text-align: center;
  }
  .about-img-wrap { justify-content: center; }
  .about-img-circle { width: 220px; height: 220px; }
  .about-deco { width: 130px; height: 130px; top: -20px; right: 10px; }
  .features-list li { text-align: right; }
  .about-content h2 { font-size: 26px; }
  .about-content { text-align: right; }

  /* SERVICES */
  .services { padding: 56px 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 22px 16px; }
  .service-icon { width: 50px; height: 50px; font-size: 20px; }
  .service-card h3 { font-size: 14px; }
  .service-card p { font-size: 12px; }

  /* BOOKING */
  .booking {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 16px;
  }
  .booking-text h2 { font-size: 26px; }
  .booking-form { padding: 26px 18px; }
  .booking-form h3 { font-size: 18px; }

  /* FOOTER */
  footer { padding: 40px 20px 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 18px 0;
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL PHONES  ≤ 390px
═══════════════════════════════════════ */
@media (max-width: 390px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 22px; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 28px; }
  .about-img-circle { width: 190px; height: 190px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .booking-form { padding: 20px 14px; }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════
   PAGE BANNER  (all-products, about, etc.)
═══════════════════════════════════════ */
.page-banner {
  padding: 80px var(--px) 64px;
  background: linear-gradient(135deg, var(--navy) 0%, #243a6b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/pattern/sub-header-pattern.svg') center/cover no-repeat;
  opacity: .1;
  pointer-events: none;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.3;
}
.page-banner p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

/* ═══════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════ */
.products-section {
  padding: 60px var(--px);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Product card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(26,39,68,.08);
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(26,39,68,.14);
}
.product-img-wrap {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--light);
  box-shadow: 0 4px 18px rgba(26,39,68,.1);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.product-category {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s, color .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-more:hover {
  background: transparent;
  color: var(--navy);
}
.btn-more svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .25s;
}
html[dir=rtl] .btn-more svg { transform: scaleX(-1); }
.btn-more:hover svg { transform: scaleX(-1) translateX(-3px); }
html[dir=ltr] .btn-more:hover svg { transform: translateX(3px); }

/* ── Products grid responsive ── */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-section { padding: 44px var(--px); }
}
@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-img-wrap { width: 130px; height: 130px; }
}
