/* =========================
   The London Wings — styles.css (ultra-smooth)
   ========================= */

/* ===== Tokens ===== */
:root{
  --teal:#1E6FB9;
;
;
  --teal-2:#1E6FB9;
  --teal-3:#1E6FB9;
  --blue:#1E6FB9;
  --ink:#1f2937;
  --muted:#64748b;
  --footer-grad-1:#1E6FB9;
  --footer-grad-2:#1E6FB9;
}

/* ===== Reset ===== */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
html{
  scroll-behavior:smooth;
  scroll-padding-top:76px;
}
body{
  font-family:'Segoe UI', system-ui, -apple-system, Roboto, Inter, Arial, sans-serif;
  color:#222; line-height:1.6; overflow-x:hidden; background:#f9f9f9;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
a{text-decoration:none;color:inherit}

/* ===== Top bar ===== */
.topstrip{
  background:var(--teal);
  color:#fff;
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 16px;
}
.login{color:#fff;margin-right:10px;opacity:.95}
.btn-apply.small{
  background:#fff; color:var(--teal); padding:8px 12px; border-radius:8px; font-weight:700;
  display:inline-flex; align-items:center; gap:6px;
}
.lang{margin:0 5px}
.brand-mark{height:28px;margin-left:6px}

/* ===== Navbar ===== */
.nav{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 18px; background:#fff;
  position:sticky; top:0; z-index:100;
  box-shadow:0 1px 6px rgba(0,0,0,.1);
  will-change:transform;
}
.brand{font-size:22px; font-weight:800; color:#3c3c0f}
.nav nav ul{list-style:none; display:flex; gap:22px; align-items:center}
.nav nav a{color:var(--teal); font-weight:600}
.nav nav a.active{color:var(--blue)}

#nav-toggle{display:none}
.burger{display:none; flex-direction:column; gap:4px; cursor:pointer}
.burger span{width:22px; height:2px; background:#333}

@media (max-width:900px){
  .burger{display:flex}
  .nav{padding:14px 16px}
  .nav nav{position:absolute; left:0; right:0; top:60px; background:#fff; display:none; flex-direction:column; padding:14px; box-shadow:0 10px 24px rgba(0,0,0,.08)}
  #nav-toggle:checked + .burger + nav{display:flex}
  .nav nav ul{flex-direction:column; gap:10px}
}

/* ===== HERO (Makkah background) ===== */
/* ---------- Hero Video Background ---------- */
.hero--gateway {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero--gateway .video-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero--gateway .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero--gateway .hero-box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero--gateway .hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.hero--gateway .hero-sub {
  font-size: 1.2rem;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

.hero--gateway .hero-cta{
  display:inline-flex; align-items:center; justify-content:center;
  height:70px; padding:0 30px; border-radius:10px;
  background:#1E6FB9; color: #fff; font-weight:800; font-size:20px;
  border:1px solid rgb(29, 202, 233); box-shadow:0 8px 28px rgba(0, 0, 0, 0.999);
  transition:transform .12s ease, filter .12s ease; /* snappier */
}
.hero--gateway .hero-cta:hover{ transform:translateY(-1px); filter:brightness(1.06) }

/* Scroll cue */
.hero--gateway .mouse-cue{
  position:absolute; left:50%; bottom:20px; transform:translateX(-50%);
  width:46px; height:46px; border-radius:50%; border:none;
  background:rgba(255,255,255,.2); color:#fff; font-size:18px;
  animation:heroPulse 1.6s ease-in-out infinite;
}
@keyframes heroPulse{
  0%,100%{transform:translateX(-50%) scale(1);opacity:.9}
  50%{transform:translateX(-50%) scale(1.05);opacity:1}
}

@media (max-width:768px){
  .hero--gateway{min-height:70vh; justify-content:center; text-align:center}
  .hero--gateway .hero-box{margin:0 5%; text-align:center}
  .hero--gateway::before{right:50%; transform:translateX(50%); width:220px; height:140px; bottom:6%}
}

/* ===== Containers ===== */
.wrap{max-width:1200px; margin:0 auto; padding:36px 18px}
.h-section{font-size:38px; color:#1E6FB9; margin-bottom:20px; font-weight:800}
.h-section .diamond{margin-right:8px}

/* ===== Our Products ===== */
.prod-grid{display:grid;gap:24px;grid-template-columns:repeat(3,1fr)}
@media (max-width:1024px){.prod-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.prod-grid{grid-template-columns:1fr}}

.prod{
  position:relative;border-radius:8px;overflow:hidden;background:#f8f8f8;border:1px solid #e5e7eb;
  transition:transform .18s ease; will-change:transform;
}
.prod:hover{transform:translateY(-2px)}
.prod img{width:100%;height:320px;object-fit:cover;display:block;transition:transform .24s ease;will-change:transform}
.prod:hover img{transform:scale(1.015)}
.prod::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.28) 60%,rgba(0,0,0,.55));
}
.prod-title{
  position:absolute;bottom:68px;left:20px;right:20px;z-index:2;color:#fff;
  font-weight:800;font-size:1.35rem;line-height:1.2;text-shadow:0 1px 8px rgba(0,0,0,.4);
}
.prod-bar{
  position:absolute;left:0;right:0;bottom:0;height:60px;display:flex;align-items:center;justify-content:space-between;
  background:#075e58;color:#fff;font-weight:600;padding:0 16px;border-top:1px solid rgba(255,255,255,.05);
}
.prod .bar-link{display:inline-flex;align-items:center;gap:8px;color:#fff;font-size:15px;white-space:nowrap;transition:opacity .15s}
.prod .bar-link:hover{opacity:.86}

/* ===== News ===== */
.news{display:grid;grid-template-columns:380px 1fr;gap:22px;align-items:stretch}
@media (max-width:980px){.news{grid-template-columns:1fr}}
.news-card{background:#eef2f3;border-left:6px solid var(--teal);padding:18px;border-radius:10px}
.news-date{font-weight:700;color:var(--teal);margin-bottom:6px}
.news-hero{position:relative;display:block;border-radius:12px;overflow:hidden}
.news-hero img{width:100%;height:380px;object-fit:cover;display:block;will-change:transform}
.news-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.6))}
.news-caption{position:absolute;left:0;right:0;bottom:0;color:#fff;padding:18px;text-shadow:0 2px 8px rgba(0,0,0,.4)}
.news-caption h3{font-size:26px}

/* ===== Footer ===== */
.footer{background:linear-gradient(0deg,var(--footer-grad-1),var(--footer-grad-2));color:#e8ffff;margin-top:50px}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;padding:36px 18px}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.footer-grid{grid-template-columns:1fr}}
.footer h4{margin-bottom:8px;font-size:18px;color:#fff}
.footer ul{list-style:none;display:grid;gap:4px}
.footer a{color:#e8ffff;opacity:.95}
.socials{display:flex;gap:10px;margin-top:10px}
.socials a{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.15);color:#fff;font-size:20px}
.socials a.wa{background:#25D366}

/* ===== Floating icons ===== */
.float-icons{position:fixed;right:16px;bottom:16px;display:flex;flex-direction:column;gap:10px;z-index:50}
.float-btn{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;color:#fff;box-shadow:0 10px 24px rgba(0,0,0,.25)}
.float-btn.wa{background:#25D366}
.float-btn.tw{background:#000}

/* ===== Ultra-smooth reveal (no blur, shorter distance) ===== */
.reveal{
  opacity:0; transform:translate3d(0,14px,0);
  transition:opacity .48s cubic-bezier(.22,.61,.36,1), transform .48s cubic-bezier(.22,.61,.36,1);
  will-change:opacity,transform;
}
.reveal.in{ opacity:1; transform:none; }

/* ===== 4K tweaks ===== */
@media (min-width:1600px){
  .wrap{ max-width:1680px; padding:48px 24px; }
  .h-section{ font-size:48px; margin-bottom:28px; }
  .prod img{ height:480px; }
  .news{ gap:28px; grid-template-columns:460px 1fr; }
  .news-hero img{ height:520px; }
  .news-caption h3{ font-size:30px; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal,.reveal.in{transition:none!important;opacity:1!important;transform:none!important}
  .hero--gateway .hero-bg{transition:none}
  .hero--gateway .mouse-cue{animation:none}
}
/* =========================
   VISAS page add-ons (safe to append)
   ========================= */

/* Color tokens reused */
:root{
  --chip-blue: #1e88e5;       /* outline blue for chips */
  --sand: #efdfcf;            /* card beige background (close to screenshot) */
  --sand-border: #f3e7da;     /* subtle border */
  --teal-ink: #075e58;        /* icon teal */
}

/* ---------- 1) Advantages grid ---------- */
.adv-wrap{ max-width: 1200px; margin: 0 auto; padding: 32px 18px; }
.adv-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px){ .adv-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){  .adv-grid{ grid-template-columns: 1fr; } }

.adv-card{
  background: var(--sand);
  border: 2px solid var(--sand-border);
  border-radius: 14px;
  padding: 34px 26px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  gap: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.adv-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

/* icon can be <img>, <svg>, or <i> from FontAwesome */
.adv-icon{
  width: 90px; height: 90px;
  display:grid; place-items:center;
  color: var(--teal-ink);
}
.adv-icon img, .adv-icon svg{
  width:86px; height:86px; object-fit:contain;
  filter: none; /* keep teal */
}
.adv-title{ font-weight:800; font-size: 18px; color:#0e3d3a; }
.adv-text{
  color:#0f2f2c; font-size: 18px; line-height:1.55;
}

/* Optional reveal if you use .reveal class already */
.adv-card.reveal{ opacity:0; transform:translate3d(0,14px,0); }
.adv-card.reveal.in{ opacity:1; transform:none; }

/* ---------- 2) Country chips (pills) ---------- */
/* ===== Visa chips (outlined pills like screenshot) ===== */
.visa-chips{
  display:flex;
  flex-wrap:wrap;
  gap:18px 22px;              /* row gap / column gap */
  list-style:none;
  padding:6px 0 0;
  margin:4px 0 0;
}

.visa-chips li{
  --chip-blue:#1e88e5;
  border:2px solid var(--chip-blue);
  color:var(--chip-blue);
  background:#fff;            /* white inside like screenshot */
  border-radius:999px;        /* full pill */
  padding:10px 18px;
  font-weight:800;            /* bold like screenshot */
  line-height:1;
  font-size:16px;
  box-shadow:0 0 0 1px rgba(30,136,229,.06) inset; /* subtle inner crispness */
  transition:background .15s ease, color .15s ease, transform .08s ease;
  white-space:nowrap;         /* pills keep one line */
}

.visa-chips li:hover{
  background:rgba(30,136,229,.06);
  transform:translateY(-1px);
}

.visa-chips-note{
  margin-top:14px;
  color:#334155;
  font-size:16px;
}

.visa-chips-note a{
  color:#1e88e5;
  text-decoration:underline;
}

/* mobile spacing tweak */
@media (max-width:640px){
  .visa-chips{ gap:14px 14px; }
  .visa-chips li{ font-size:15px; padding:9px 16px; }
}
/* ===== Country Grid (brown box layout) ===== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .country-grid {
    grid-template-columns: 1fr;
  }
}

.country-card {
  background: #f1e0ca;                /* warm brown-beige tone */
  border-radius: 14px;
  padding: 40px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #07443f;                     /* deep Saudi green text */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  background: #e9d4b5;
}
/* ===== Service Cards (brown layout) ===== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .country-grid { grid-template-columns: 1fr; }
}

.country-card {
  background: #f1e0ca;
  border-radius: 14px;
  padding: 48px 28px;
  text-align: center;
  color: #07443f;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.country-card i {
  font-size: 60px;
  color: #0b736a;
  margin-bottom: 18px;
  display: block;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  background: #e9d4b5;
}
/* ====== English Colleges page (footer/navbar untouched) ====== */

/* Hero with per-page background via --hero */
/* ================================
   English Colleges (page-specific)
   Append to END of styles.css
   ================================ */

/* --- HERO with video (preferred) or image fallback --- */
/* ===== Hero with video background (same layout as Services) ===== */
.hero.hero--colleges {
  position: relative;
  height: 90vh; /* same height as Services hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero--colleges .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

/* Dark overlay for readability */
.hero--colleges .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(0,64,56,0.55), rgba(0,64,56,0.85));
}

/* Centered content */
.hero--colleges .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero--colleges .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}

.hero--colleges .hero-content p {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  opacity: 0.95;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero--colleges .btn.hero-cta {
  background-color: #075e58;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero--colleges .btn.hero-cta:hover {
  background-color: #0a7b72;
  transform: translateY(-2px);
}

/* Mouse icon animation (same as Services) */
.hero--colleges .mouse-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.25);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
}

@media (max-width: 768px) {
  .hero.hero--colleges {
    height: 70vh;
  }
  .hero--colleges .hero-content {
    padding: 0 20px;
  }
  .hero--colleges .hero-content h1 {
    font-size: 2rem;
  }
}

/* --- Filters --- */
.filters.container{max-width:1100px; margin:24px auto 8px; padding:0 18px}
.filters-row{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.input,.select{
  height:46px; padding:0 14px; border-radius:10px;
  border:1px solid #e5e7eb; background:#fff; font-size:16px;
}
.input{flex:1 1 360px}
.select{flex:0 0 190px}
.btn.outline{
  height:46px; padding:0 16px; border-radius:10px;
  background:#fff; color:#075e58; border:1px solid #b7c7c5; font-weight:700
}
.muted{color:#64748b; margin-top:8px}

/* --- Grid --- */
.college-grid.container{
  max-width:1100px; margin:12px auto 36px; padding:0 18px;
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
@media (max-width:1024px){ .college-grid.container{grid-template-columns:repeat(2,1fr)} }
@media (max-width:640px){ .college-grid.container{grid-template-columns:1fr} }

/* --- Card: cream/brown panel look --- */
.college-card{
  background:#f1e0ca; border-radius:14px;
  box-shadow:0 4px 14px rgba(0,0,0,.10);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.college-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  background:#e8d3b3;
}

/* Logo row */
.logo-wrap{
  background:#fff; display:grid; place-items:center;
  padding:18px; border-bottom:1px solid rgba(0,0,0,.06)
}
.logo-wrap img{
  max-width:200px; max-height:80px; width:auto; height:auto; object-fit:contain
}

/* Body */
.card-body{padding:18px}
.college-name{font-size:20px; font-weight:800; color:#0b736a}
.location{color:#0e605a; font-weight:600; margin:6px 0 10px}

/* Badges */
.badges{
  list-style:none; display:flex; flex-wrap:wrap; gap:8px;
  margin:0 0 14px; padding:0
}
.badges li{
  background:#fff; border:1px solid rgba(7,94,88,.18); color:#07443f;
  border-radius:999px; padding:6px 10px; font-weight:700; font-size:13px
}

/* Actions */
.card-actions{display:flex; gap:8px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:44px; padding:0 16px; border-radius:10px;
  background:#075e58; color:#fff; font-weight:700;
  border:1px solid rgba(255,255,255,.15)
}
.btn.ghost{background:transparent; color:#075e58; border:1px solid #8fb7b3}
.btn.large{height:50px; padding:0 22px; border-radius:12px}

/* --- CTA strip --- */
.cta-strip{
  margin:22px auto 50px; max-width:1100px; padding:18px;
  background:linear-gradient(90deg,#1e88e5,#3fa9ff); color:#fff; border-radius:14px;
  display:flex; align-items:center; justify-content:center; gap:14px;
  flex-wrap:wrap; text-align:center;
}
/* =========================
   Summer Camps – page-only
   (safe to append at end)
   ========================= */

/* Full-screen video hero (matches your big hero layout) */
.hero--camp{
  position: relative;
  min-height: 100vh;                 /* big, immersive */
  isolation: isolate;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Video layer */
.hero--camp .hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(.9);
}

/* Saudi-green tint & vignette overlay – same feel as other heroes */
.hero--camp .hero-overlay{
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 70% 70%, rgba(0,0,0,.35), transparent 60%) ,
    linear-gradient(180deg, rgba(0,64,56,.45), rgba(0,64,56,.75));
  pointer-events: none;
}

/* Right/centered content block */
.hero--camp .hero-content{
  z-index: 2;
  padding: 0 6%;
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
  animation: fadeUpCamp .7s ease both;
}

.hero--camp .hero-content h1{
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.hero--camp .hero-content p{
  font-size: clamp(16px, 1.5vw, 22px);
  opacity: .96;
  margin: 0 auto 18px;
  max-width: 980px;
}

/* Big CTA button (reuse brand look) */
.hero--camp .hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--teal, #075e58);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  transition: transform .18s ease, filter .18s ease;
}
.hero--camp .hero-cta:hover{ transform: translateY(-2px); filter: brightness(1.08); }

/* Scroll cue bubble (matches your other heroes) */
.hero--camp .mouse-cue{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  color: #fff; border: none;
  backdrop-filter: blur(2px);
}

/* Responsive tweak */
@media (max-width: 768px){
  .hero--camp{ min-height: 78vh; }
}

/* Fade up on load */
@keyframes fadeUpCamp{
  from{ opacity: 0; transform: translateY(10px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* ---------- Page sections below hero ---------- */

/* Copy sections already use .wrap + .h-section from your base file */

/* Contact/Enquiry form (reuses your form grid look) */
.contact-form .form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 720px){
  .contact-form .form-grid{ grid-template-columns: 1fr; }
}

.contact-form .field{ display: grid; gap: 6px; }
.contact-form .field--full{ grid-column: 1 / -1; }

.contact-form label{
  font-weight: 700;
  color: var(--ink, #1f2937);
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(30,136,229,.55);
  box-shadow: 0 0 0 3px rgba(30,136,229,.15);
}

.contact-form .actions{ margin-top: 4px; }
.contact-form .btn.large{
  height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--teal-3, #0b736a);
  color: #fff; font-weight: 800;
  border: 1px solid rgba(255,255,255,.15);
}

/* Optional reveal-on-scroll (uses your .reveal class if present) */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
/* ===== Contact page (cream card like screenshot) ===== */
.contact-simple{ padding-top: 26px; padding-bottom: 48px; }

.contact-h1{
  font-size: clamp(28px, 3vw, 44px);
  color: #b6893e;                 /* gold heading */
  font-weight: 800;
  margin: 0 0 16px;
}

.contact-card{
  position: relative;
  background: #f3e5cf;            /* warm cream */
  border: 1px solid #e7d7bf;
  border-radius: 10px;
  padding: 22px 22px 26px;
  overflow: hidden;
}

/* top inner border like a panel */
.contact-card::before{
  content:"";
  position:absolute; inset:10px;
  border:1px solid #e9dcc7;
  border-radius:8px;
  pointer-events:none;
}

/* green triangle motif in bottom-right */
.contact-card::after{
  content:"";
  position:absolute;
  right:0; bottom:0;
  width:min(280px, 28%);
  height:38%;
  background:
    linear-gradient(135deg, transparent 58%, #34b294 58%) 0 60%/34% 40% no-repeat,
    linear-gradient(135deg, transparent 58%, #34b294 58%) 20% 80%/26% 40% no-repeat,
    linear-gradient(135deg, transparent 58%, #34b294 58%) 55% 68%/34% 55% no-repeat,
    linear-gradient(135deg, transparent 58%, #34b294 58%) 84% 82%/30% 60% no-repeat;
  opacity:.85;
}

/* headline inside card */
.contact-lead-bold{
  font-weight: 800;
  color: #10202b;
  margin: 10px 8px 18px;
}

/* 2 columns */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 8px 6px;
}
@media (max-width: 720px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.contact-col .muted-sm{
  color:#0f1f29; font-weight:700; opacity:.85; margin-bottom:6px;
}

.contact-link{
  color:#b6893e;                   /* gold links like screenshot */
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  text-decoration: none;
}
.contact-link:hover{ text-decoration: underline; }
/* ===== Taxi page ===== */

/* Re-use hero--gateway structure but allow per-page image via --hero */
.taxi-hero{
  position: relative; min-height: 70vh; isolation:isolate; overflow:hidden;
  display:flex; align-items:center; justify-content:flex-end; color:#fff;
}
.taxi-hero .hero-bg{
  position:absolute; inset:0; z-index:-3;
  background:
    linear-gradient(180deg, rgba(0,64,56,.55), rgba(0,64,56,.8)),
    var(--hero, url('Dubai.jpg')) center/cover no-repeat;
  filter:brightness(.95);
}

/* Fleet grid */
.fleet-grid{
  display:grid; gap:20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width:1024px){ .fleet-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width:640px){ .fleet-grid{ grid-template-columns: 1fr; } }

.fleet-item{
  background:#f8f8f8; border:1px solid #e5e7eb; border-radius:12px;
  overflow:hidden; box-shadow:0 6px 18px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fleet-item:hover{ transform: translateY(-3px); box-shadow:0 16px 30px rgba(0,0,0,.12); }
.fleet-item img{ width:100%; height:220px; object-fit:cover; display:block; }
.fleet-item h4{ font-size:18px; margin:12px 14px 6px; color:#0b736a; }
.fleet-item p{ margin:0 14px 16px; color:#374151; }

/* Contact CTA strip */
.taxi-contact-cta{
  margin-top: 6px; margin-bottom: 48px;
}
.taxi-contact-cta .cta-inner{
  background: linear-gradient(90deg,#1e88e5,#3fa9ff); color:#fff;
  border-radius:14px; padding:22px 18px;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:14px;
}
.taxi-contact-cta .cta-text{ font-weight:800; }
.taxi-contact-cta .cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }
/* ===== Slim hero variant ===== */
.hero--slim{
  position:relative; min-height:38vh; isolation:isolate; overflow:hidden;
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.hero--slim .hero-bg{
  position:absolute; inset:0; z-index:-3;
  background:
    linear-gradient(180deg, rgba(0, 157, 205, 0.416), rgba(255, 255, 255, 0.75)),
    var(--hero, url('Makkah.jpg')) center/cover no-repeat;
  filter:brightness(.95);
}
.hero-box--center{ text-align:center; }

/* ===== Privacy page split layout ===== */
.pp-wrap{ display:grid; grid-template-columns:320px 1fr; gap:24px; }
@media (max-width:980px){ .pp-wrap{ grid-template-columns:1fr; } }

.pp-toc .pp-card{ position:sticky; top:88px; }
.pp-card{
  background:#fff; border:1px solid #e5e7eb; border-radius:12px;
  padding:18px; box-shadow:0 8px 24px rgba(0,0,0,.06); margin-bottom:18px;
}
.pp-toc-links{ display:grid; gap:8px; }
.pp-toc a{ color:#075e58; font-weight:700; }
.pp-content .pp-card h2{ margin-bottom:8px; }
.pp-content .pp-card ul{ padding-left:18px; display:grid; gap:6px; }
.pp-top{ display:inline-block; margin-top:8px; color:#1e88e5; font-weight:700; }

/* ===== Law & Regulations (cream cards + corner motif) ===== */
.law-wrap{ margin-top:8px; }
.law-grid{
  display:grid; gap:22px; grid-template-columns:repeat(3,1fr);
}
@media (max-width:1024px){ .law-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .law-grid{ grid-template-columns:1fr; } }

.law-card{
  position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:#f1e0ca; border:1px solid #e6d2b6; border-radius:8px; min-height:240px;
  text-align:center; color:#0b3f3a; box-shadow:0 6px 16px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.law-card:hover{ transform:translateY(-3px); box-shadow:0 16px 28px rgba(0,0,0,.15); background:#e8d3b3; }

.law-ico{ font-size:44px; margin-bottom:14px; color:#0b736a; }
.law-text{ max-width:80%; font-weight:700; }

/* top-right green triangles */
.law-card::after{
  content:""; position:absolute; top:14px; right:14px; width:70px; height:70px;
  background:
    conic-gradient(from 45deg at 0 0, #59b79e 0 25%, transparent 0 100%) 0 0/20px 20px,
    conic-gradient(from 45deg at 0 0, #59b79e 0 25%, transparent 0 100%) 20px 20px/20px 20px,
    conic-gradient(from 45deg at 0 0, #59b79e 0 25%, transparent 0 100%) 40px 0/20px 20px;
  opacity:.9;
}
/* ============ PRIVACY CARDS (click -> modal) ============ */
.pp-cards { margin-top: 20px; }
.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px){ .pp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .pp-grid { grid-template-columns: 1fr; } }

.pp-card-btn{
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 28px 18px;
  width: 100%;
  min-height: 170px;
  border-radius: 12px;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #0d80b5;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pp-card-btn i{ font-size: 34px; }
.pp-card-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  background: #f9fcfb;
}

/* small corner motif like reference site */
.pp-card-btn::after{
  content:"";
  position:absolute; top:12px; right:12px; width:48px; height:48px; opacity:.9;
  background:
    conic-gradient(from 45deg at 0 0, oklab(73.444% -0.06942 -0.07335) 0 25%, transparent 0 100%) 0 0/16px 16px,
    conic-gradient(from 45deg at 0 0, #59b79e 0 25%, transparent 0 100%) 16px 16px/16px 16px,
    conic-gradient(from 45deg at 0 0, #59b79e 0 25%, transparent 0 100%) 32px 0/16px 16px;
}

/* Modal */
.pp-modal{
  position: fixed; inset: 0; display: none;
  background: rgba(0,0,0,.6);
  z-index: 999;
  justify-content: center; align-items: center;
  padding: 16px;
}
.pp-modal-dialog{
  width: min(700px, 92vw);
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.pp-close{
  position: absolute;
  right: 20px; top: 12px;
  border: 0; background: transparent;
  font-size: 26px; line-height: 1; cursor: pointer; color:#444;
}
.pp-modal-dialog h3{
  margin: 0 36px 10px 0; color: #0b6573; font-weight: 900;
}
.pp-body{ color:#1f2937; line-height: 1.65; }
.pp-body ul{ margin-left: 18px; }
.pp-body h4{ margin-top: 10px; color:#08a0b7; }
/* ---------- Privacy Page Hero ---------- */
.hero--privacy {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}


.hero--privacy .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)),
    url('PRIVACY.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero--privacy .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  color: #fff;
}


.hero--privacy h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero--privacy p {
  font-size: 1.2rem;
  opacity: 0.95;
}
/* ---------- Navbar Logo ---------- */
.brand-logo {
  height: 60px;              /* Adjust logo size */
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 46px;            /* Slightly smaller for mobile */
  }
}
/* ===== Umrah Page Extras (SAFE APPEND) ===== */

.umrah-img{
  width:100%;
  margin:24px 0;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.country-card img{
  width:100%;
  border-radius:10px;
  margin-bottom:14px;
}

.umrah-why{
  background:#f1e0ca;
  border-radius:14px;
  padding:36px;
}

.umrah-why h2{
  margin-bottom:14px;
  color:#075e58;
}

.umrah-why ul{
  list-style:none;
  padding:0;
  display:grid;
  gap:8px;
  font-weight:700;
}
/* ===== Language Toggle Button (ADD ONLY) ===== */
.lang {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s ease, transform .12s ease;
}

.lang:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
