/* ============================================================
   Skyview Travel Agency — Shared Stylesheet
   Colors: Navy #0B2A4A · Gold #C99A3B · White #FFFFFF
   Fonts: Inter (body) · Playfair Display (headings) · Cairo (Arabic)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Cairo:wght@300;400;600;700&display=swap');

/* ── ROOT VARIABLES ── */
:root {
  --navy:        #0B2A4A;
  --navy-dark:   #071d33;
  --navy-mid:    #0d3357;
  --gold:        #C99A3B;
  --gold-dark:   #a87e2e;
  --white:       #FFFFFF;
  --light-bg:    #F5F7FA;
  --border:      #dce4ef;
  --text-dark:   #0d1b2a;
  --text-medium: #4a5a6e;
  --text-light:  #7a8fa6;
  --shadow-sm:   0 2px 8px rgba(11,42,74,.10);
  --shadow-md:   0 6px 24px rgba(11,42,74,.14);
  --shadow-lg:   0 12px 40px rgba(11,42,74,.18);
  --radius:      8px;
  --transition:  0.25s ease;
  /* Force light color scheme — prevents any browser/OS dark mode
     from overriding backgrounds, text, or input colors on mobile */
  color-scheme: light only;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Lock light mode at HTML level — covers Safari, Chrome Android, Samsung */
  color-scheme: light only;
  background: #FFFFFF;
}
body {
  font-family: 'Inter', sans-serif;
  color: #0d1b2a;          /* --text-dark hardcoded as fallback */
  background: #FFFFFF;     /* --white hardcoded as fallback */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── DARK MODE HARD LOCK ──
   Forces every element to the brand palette regardless of OS dark mode.
   Uses !important throughout — these are non-negotiable brand colors. */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: light only; }
  /* Base */
  html  { background: #FFFFFF !important; }
  body  { background: #FFFFFF !important; color: #0d1b2a !important; }
  /* All elements default to white bg unless specified */
  *, *::before, *::after { color: inherit; }
  /* Page structure */
  .top-banner    { background: #071d33 !important; color: rgba(255,255,255,0.9) !important; }
  .top-banner a  { color: #C99A3B !important; }
  .navbar        { background: #FFFFFF !important; border-color: #dce4ef !important; box-shadow: 0 2px 8px rgba(11,42,74,.10) !important; }
  .navbar-inner  { background: #FFFFFF !important; }
  .nav-hamburger span { background: #C99A3B !important; }
  .brand-main    { color: #0B2A4A !important; }
  .brand-sub     { color: #7a8fa6 !important; }
  /* Dropdown menu */
  .navbar-nav.open   { background: #FFFFFF !important; border-top-color: #C99A3B !important; }
  .navbar-nav.open a { color: #4a5a6e !important; background: transparent !important; }
  .navbar-nav.open a.active,
  .navbar-nav.open a:hover { background: #F5F7FA !important; color: #0B2A4A !important; }
  .navbar-nav.open a.nav-cta { background: #C99A3B !important; color: #FFFFFF !important; }
  .lang-toggle a        { color: #0B2A4A !important; background: transparent !important; }
  .lang-toggle a.active { background: #0B2A4A !important; color: #FFFFFF !important; }
  /* Page sections */
  .page-hero         { background: #0B2A4A !important; }
  .page-hero h1      { color: #FFFFFF !important; }
  .page-hero p       { color: rgba(255,255,255,0.75) !important; }
  .flyxability-hero  { background: #0B2A4A !important; }
  .flyxability-hero h1 { color: #FFFFFF !important; }
  .flyxability-hero p  { color: rgba(255,255,255,0.8) !important; }
  .bridge-block      { background: #0B2A4A !important; }
  .bridge-text p     { color: rgba(255,255,255,0.85) !important; }
  .stats-block       { background: #0B2A4A !important; }
  .stat-content h4   { color: #C99A3B !important; }
  .stat-content p    { color: rgba(255,255,255,0.85) !important; }
  .section           { background: #FFFFFF !important; }
  .tiles-section     { background: #FFFFFF !important; }
  .move-announcement { background: #F5F7FA !important; }
  .hero-center       { background: #FFFFFF !important; }
  /* Typography */
  h1, h2, h3, h4, h5 { color: #0B2A4A !important; }
  p  { color: #4a5a6e !important; }
  .section-label     { color: #C99A3B !important; }
  .section-heading h2 { color: #0B2A4A !important; }
  .divider-gold      { background: #C99A3B !important; }
  .breadcrumb a      { color: #C99A3B !important; }
  /* Cards */
  .tile              { background: #fdf8ef !important; border-color: #C99A3B !important; }
  .tile h3           { color: #0B2A4A !important; }
  .tile p            { color: #4a5a6e !important; }
  .tile-icon         { background: #C99A3B !important; color: #FFFFFF !important; }
  .move-card         { background: #FFFFFF !important; }
  .move-card-caption .year-badge { background: #0B2A4A !important; color: #FFFFFF !important; }
  .move-compare-col  { background: #FFFFFF !important; }
  .move-compare-col.new { border-top-color: #C99A3B !important; }
  .move-compare-col.new h4 { color: #0B2A4A !important; }
  .timeline-card     { background: #FFFFFF !important; border-color: #dce4ef !important; }
  .timeline-year     { background: #0B2A4A !important; color: #FFFFFF !important; }
  .timeline-card-body h3 { color: #0B2A4A !important; }
  .service-block     { background: #FFFFFF !important; border-color: #dce4ef !important; }
  .service-body h3   { color: #0B2A4A !important; }
  .service-body p    { color: #4a5a6e !important; }
  .fly-block         { background: #FFFFFF !important; border-color: #dce4ef !important; }
  .fly-block h3      { color: #0B2A4A !important; }
  .fly-block p       { color: #4a5a6e !important; }
  .owner-quote       { background: #F5F7FA !important; }
  .owner-quote blockquote { color: #0B2A4A !important; }
  /* Contact */
  .contact-form      { background: #FFFFFF !important; border-color: #C99A3B !important; }
  .contact-item-icon { background: #F5F7FA !important; }
  .contact-item-body a { color: #0B2A4A !important; }
  .hours-table th    { background: #0B2A4A !important; color: #FFFFFF !important; }
  .hours-table td    { background: #FFFFFF !important; color: #0d1b2a !important; }
  /* Forms */
  input, textarea, select {
    background: #FFFFFF !important;
    color: #0d1b2a !important;
    border-color: #dce4ef !important;
    -webkit-text-fill-color: #0d1b2a !important;
  }
  /* Buttons */
  .btn-gold    { background: #C99A3B !important; color: #FFFFFF !important; border-color: #C99A3B !important; }
  .btn-primary { background: #0B2A4A !important; color: #FFFFFF !important; border-color: #0B2A4A !important; }
  .btn-outline { border-color: #FFFFFF !important; color: #FFFFFF !important; }
  .hero-btn-book, .hero-btn-call { background: #C99A3B !important; color: #FFFFFF !important; }
  /* Footer */
  footer            { background: #FFFFFF !important; color: #0B2A4A !important; border-top-color: #dce4ef !important; }
  .footer-col h4    { color: #0B2A4A !important; }
  .footer-col a     { color: #4a5a6e !important; }
  .footer-col a:hover { color: #C99A3B !important; }
  .footer-bottom p  { color: #7a8fa6 !important; }
  .footer-disclosure { color: #4a5a6e !important; }
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── ARABIC BODY ── */
[lang="ar"] body,
[lang="ar"] .arabic-text,
body.rtl {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  text-align: right;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { font-size: 1.05rem; color: var(--text-medium); }
[lang="ar"] h1,
[lang="ar"] h2 { font-family: 'Cairo', sans-serif; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── LAYOUT HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.divider-gold {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
[lang="ar"] .divider-gold { margin: 1rem auto 1.5rem 0; }

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

/* ── TOP BANNER ── */
.top-banner {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 200;
  position: relative;
}
.top-banner a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.top-banner a:hover { text-decoration: underline; }

/* ── NAVBAR ── */
.navbar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; /* anchor for the mobile dropdown */
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-logo img { width: 120px; height: 120px; object-fit: contain; }
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 0.25rem;
}
.navbar-logo-text .brand-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--navy);
}
.navbar-logo-text .brand-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Arabic navbar: force ltr base so row-reverse reliably puts logo on right
   regardless of whether the browser applies direction:rtl to flex containers */
[lang="ar"] .navbar-inner {
  direction: ltr;
  flex-direction: row-reverse; /* logo block → far right; lang-toggle → far left */
}
[lang="ar"] .navbar-logo {
  direction: ltr;
  flex-direction: row-reverse; /* icon → right of text */
}
[lang="ar"] .navbar-logo-text {
  direction: rtl; /* restore RTL for the Arabic brand name */
}
[lang="ar"] .navbar-nav {
  direction: rtl;
}
[lang="ar"] .navbar-logo-text .brand-main,
[lang="ar"] .navbar-logo-text .brand-sub { font-family: 'Cairo', sans-serif; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-nav a {
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active {
  background: var(--light-bg);
  color: var(--navy);
}
.navbar-nav a.nav-cta {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  padding: 0.45rem 1rem;
}
.navbar-nav a.nav-cta:hover { background: var(--gold-dark); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  border-left: 1px solid var(--border);
  padding-left: 1rem;
}
[lang="ar"] .lang-toggle { margin-left: 0; margin-right: 1rem; border-left: none; border-right: 1px solid var(--border); padding-left: 0; padding-right: 1rem; }
.lang-toggle a { color: var(--navy); padding: 0.2rem 0.4rem; border-radius: 4px; }
.lang-toggle a.active { background: var(--navy); color: var(--white); }
.lang-toggle a:hover { background: var(--light-bg); color: var(--navy); }
.lang-sep { color: var(--border); }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 720px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,29,51,0.55) 0%,
    rgba(7,29,51,0.42) 60%,
    rgba(7,29,51,0.65) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
[lang="ar"] .hero-content h1 { font-family: 'Cairo', sans-serif; }
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── MOVE ANNOUNCEMENT (Page 1 Section 2) ── */
.move-announcement {
  background: var(--light-bg);
  padding: 5rem 0;
}
.move-headline {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 3rem;
  font-style: italic;
}
[lang="ar"] .move-headline { font-family: 'Cairo', sans-serif; font-style: normal; }
.move-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.move-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.move-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.move-card-caption {
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.move-card-caption .year-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.move-card-caption p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
}

/* ── MOVE COMPARISON TABLE ── */
.move-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}
.move-compare-col {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: 2rem 2rem 2.5rem;
}
.move-compare-col.old { border-top: 4px solid var(--text-light); }
.move-compare-col.new { border-top: 4px solid var(--gold); }
.move-compare-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  display: block;
}
.move-compare-col.old h4 { color: var(--text-light); }
.move-compare-col.new h4 { color: var(--navy); }
.move-compare-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.move-compare-row:last-child { margin-bottom: 0; }
.move-compare-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.move-compare-col .move-compare-label { color: var(--text-medium); font-size: 0.92rem; line-height: 1.5; }
.move-compare-col.old .move-compare-label strong { color: var(--text-dark); font-weight: 700; }
.move-compare-col.new .move-compare-label strong { color: var(--navy); font-weight: 700; }

/* ── FOUR TILES ── */
.tiles-section { padding: 5rem 0; background: var(--white); }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tile {
  background: #fdf8ef;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tile-icon {
  width: 62px; height: 62px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}
.tile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.tile p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin: 0;
}
.tile.arc-tile { border-color: var(--gold); background: #fdf8ef; }
.tile.arc-tile .tile-icon { background: var(--gold); color: var(--white); }
.tile.arc-tile h3 { color: var(--navy); }
.tile.arc-tile .arc-number {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

/* contact links in tile */
.tile .contact-links { margin-top: 0.75rem; }
.tile .contact-links a {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.15rem 0;
}
.tile .contact-links a:hover { color: var(--gold); }

/* ── FLYXABILITY BRIDGE BLOCK ── */
.bridge-block {
  background: var(--navy);
  padding: 4rem 0;
}
.bridge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bridge-logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bridge-logo-group img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid var(--gold);
  padding: 10px;
}
.bridge-text { flex: 1; min-width: 260px; }
.bridge-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin: 0;
}
.bridge-text strong { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--white);
  color: var(--navy);
  padding: 3.5rem 0 1.5rem;
  border-top: 2px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.footer-logo-row img { width: 120px; height: 120px; object-fit: contain; }
.footer-logo-sep { color: var(--border); font-size: 1.2rem; }
.footer-disclosure {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-top: 0.75rem;
}
.footer-col h4 {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { font-size: 0.8rem; color: var(--text-light); }
.footer-legal-links a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
[lang="ar"] .whatsapp-float { right: auto; left: 2rem; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ── PAGE HERO STRIP (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,154,59,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── TIMELINE (Page 2) ── */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
[lang="ar"] .timeline::before { left: auto; right: 50%; transform: translateX(50%); }
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
[lang="ar"] .timeline-item:nth-child(even) { flex-direction: row; }
[lang="ar"] .timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.5rem;
  width: 16px; height: 16px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}
[lang="ar"] .timeline-dot { left: auto; right: 50%; transform: translateX(50%); }
.timeline-card {
  width: calc(50% - 3rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow-md); }
.timeline-card img { width: 100%; height: 220px; object-fit: cover; }
.timeline-card-body { padding: 1.5rem; }
.timeline-year {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.timeline-card-body h3 { color: var(--navy); margin-bottom: 0.5rem; }
.timeline-card-body p { font-size: 0.92rem; margin: 0; }

.owner-quote {
  background: var(--light-bg);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2.5rem 3rem;
  margin-top: 4rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
[lang="ar"] .owner-quote {
  border-left: none;
  border-right: 4px solid var(--gold);
  border-radius: var(--radius) 0 0 var(--radius);
}
.owner-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1.5rem;
}
[lang="ar"] .owner-quote blockquote { font-family: 'Cairo', sans-serif; font-style: normal; }
.owner-signature { display: flex; align-items: center; gap: 1rem; }
.owner-signature img { height: 48px; object-fit: contain; }
.owner-signature-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.owner-signature-title { font-size: 0.8rem; color: var(--text-light); }

/* ── PHOTO GALLERY (Page 3) ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  font-size: 1.5rem;
  background: rgba(255,255,255,0.9);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.gallery-item:hover::after { transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white; font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* ── STATS BLOCK (Page 3) ── */
.stats-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat-row { display: flex; align-items: flex-start; gap: 1rem; }
.stat-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.stat-content h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.stat-content p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin: 0; }

/* ── SERVICES (Page 4) ── */
.service-block {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  background: var(--white);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-block:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
/* Arabic service block: ltr base + row-reverse puts icon on the right */
[lang="ar"] .service-block {
  direction: ltr;
  flex-direction: row-reverse;
}
[lang="ar"] .service-body {
  direction: rtl; /* restore RTL for the Arabic text inside */
  text-align: right;
}
.service-icon {
  width: 120px; height: 120px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.service-icon-img { background: var(--white); border: 2px solid var(--gold); padding: 8px; }
.service-icon-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.service-body { flex: 1; }
.service-body h3 { color: var(--navy); margin-bottom: 0.6rem; font-size: 1.2rem; }
.service-body p { font-size: 0.95rem; margin-bottom: 1rem; }
.service-body .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.service-body .service-link:hover { color: var(--navy); }
.service-body .service-link::after { content: '→'; }

/* ── CONTACT PAGE (Page 5) ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap img { width: 100%; height: 420px; object-fit: cover; }
.contact-card h2 { color: var(--navy); margin-bottom: 0.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-body { flex: 1; }
.contact-item-body .label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.2rem; }
.contact-item-body a, .contact-item-body p { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0; }
.contact-item-body a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.hours-table th { background: var(--navy); color: var(--white); padding: 0.75rem 1rem; text-align: left; font-size: 0.85rem; }
[lang="ar"] .hours-table th { text-align: right; }
.hours-table td { padding: 0.65rem 1rem; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed { color: var(--text-light); }
.hours-table .open { font-weight: 600; color: var(--navy); }
.hours-table tr:hover td { background: var(--light-bg); }

.contact-form {
  margin-top: 2rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(201,154,59,0.12);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  -webkit-text-fill-color: var(--text-dark); /* iOS Safari override */
  transition: border-color var(--transition);
  background: var(--white);
  -webkit-appearance: none;  /* removes iOS default input chrome */
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { height: 100px; resize: vertical; }

/* ── FLYXABILITY PAGE (Page 6) ── */
.flyxability-hero {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}
.flyxability-hero img { width: 140px; margin: 0 auto 1.5rem; filter: brightness(0) invert(1); }
.flyxability-hero h1 { color: var(--white); margin-bottom: 1rem; }
.flyxability-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.fly-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}
.fly-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.fly-block:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.fly-block-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.fly-block h3 { color: var(--navy); margin-bottom: 0.5rem; }
.fly-block p { font-size: 0.95rem; }

.video-section { padding: 0 0 5rem; }
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-wrap video { width: 100%; display: block; max-height: 560px; object-fit: cover; }

/* ── SECTION HEADING ── */
.section-heading { margin-bottom: 3rem; }
.section-heading.centered { text-align: center; }
.section-heading.centered .divider-gold { margin: 1rem auto 1.5rem; }
.section-heading h2 { color: var(--navy); margin-bottom: 0.5rem; }
.section-heading p { max-width: 600px; }
.section-heading.centered p { margin: 0 auto; }

/* ── OFFICE EXTERIOR HERO STRIP (Page 3) ── */
.office-hero-strip {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 3rem;
}
.office-hero-strip img { width: 100%; height: 100%; object-fit: cover; }
.office-hero-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,42,74,0.7) 0%, rgba(11,42,74,0.1) 60%);
}
.office-hero-strip-text {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  z-index: 1;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
[lang="ar"] .office-hero-strip-text { left: auto; right: 2rem; font-family: 'Cairo', sans-serif; }

/* ── HERO CENTER (Home page — vertical stack) ── */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: 3rem 1.5rem 3.5rem;
  gap: 1.75rem;
}

/* Text above video — no border, plain */
.hero-above-text { max-width: 820px; }
.hero-above-text .hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.hero-above-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.hero-above-text .hero-sub {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Video — 1280x720, centered, gold rounded border */
.hero-video-frame {
  width: 100%;
  max-width: 1280px;
  border-radius: 14px;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(201,154,59,0.2), 0 2px 10px rgba(11,42,74,0.1);
}
.hero-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* Buttons row beneath video */
.hero-actions-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Book button — gold fill, no border */
.hero-btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.hero-btn-book:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Call button — same style as book button */
.hero-btn-call {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.hero-btn-call:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Info text line beneath buttons */
.hero-info-text {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}
.hero-info-text a { color: var(--navy); font-weight: 600; }
.hero-info-text a:hover { color: var(--gold-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* ── Layout adjustments ── */
  .hero-center { padding: 2rem 1rem; gap: 1.25rem; }
  .hero-above-text h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero-actions-row { flex-direction: column; align-items: center; }
  .hero { height: 560px; }
  .move-grid { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-block { grid-template-columns: 1fr; }
  .fly-blocks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bridge-inner { flex-direction: column; text-align: center; }
  .timeline::before { left: 24px; }
  [lang="ar"] .timeline::before { right: 24px; left: auto; }
  .timeline-item { flex-direction: column !important; padding-left: 3.5rem; }
  [lang="ar"] .timeline-item { padding-left: 0; padding-right: 3.5rem; }
  .timeline-card { width: 100%; }
  .timeline-dot { left: 16px; }
  [lang="ar"] .timeline-dot { right: 16px; left: auto; }
  .service-block { flex-direction: column; }
  [lang="ar"] .service-block { flex-direction: column; }

  /* ── BRAND CONSISTENCY ON MOBILE ── */

  /* Body — same font and background as desktop */
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    -webkit-text-size-adjust: 100%; /* prevent iOS font inflation */
  }
  [lang="ar"] body { font-family: 'Cairo', sans-serif; }

  /* Headings — same typeface and color as desktop */
  h1, h2 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); }
  h3, h4 { color: var(--navy); }
  [lang="ar"] h1, [lang="ar"] h2,
  [lang="ar"] h3, [lang="ar"] h4 { font-family: 'Cairo', sans-serif; }

  /* Top banner */
  .top-banner { background: var(--navy-dark); color: rgba(255,255,255,0.9); font-family: inherit; }
  .top-banner a { color: var(--gold); }

  /* Navbar — white, fixed height, logo scaled for mobile */
  .navbar { background: #FFFFFF !important; border-bottom: 1px solid #dce4ef !important; }
  .navbar-logo img { width: 40px !important; height: 40px !important; }
  .navbar-logo-text .brand-main { font-family: 'Playfair Display', Georgia, serif; color: #0B2A4A !important; font-size: 1.05rem; }
  [lang="ar"] .navbar-logo-text .brand-main { font-family: 'Cairo', sans-serif; }
  .navbar-logo-text .brand-sub { color: #7a8fa6 !important; font-size: 0.72rem; }
  /* Hamburger — navy bars, always visible */
  .nav-hamburger { display: flex !important; }
  .nav-hamburger span { background: #C99A3B !important; }

  /* Mobile nav dropdown — white, full width, clearly visible */
  .navbar-nav { display: none !important; }
  /* Mobile nav dropdown — white, full width, clearly visible */
  .navbar-nav { display: none !important; }
  .navbar-nav.open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important; right: 0 !important;
    background: #FFFFFF !important;
    padding: 0.5rem 0.75rem 1rem !important;
    border-top: 3px solid #C99A3B !important;
    border-bottom: 1px solid #dce4ef !important;
    box-shadow: 0 8px 24px rgba(11,42,74,0.15) !important;
    z-index: 9999 !important;
  }
  .navbar-nav.open li { width: 100%; }
  .navbar-nav.open a {
    color: #4a5a6e !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 6px !important;
    display: block !important;
    width: 100% !important;
    background: transparent !important;
    text-align: left !important;
  }
  [lang="ar"] .navbar-nav.open a { text-align: right !important; }
  /* On mobile, keep navbar-inner as row (not row-reverse) so the
     hamburger stays on the left and the dropdown positions correctly */
  [lang="ar"] .navbar-inner { flex-direction: row !important; }
  .navbar-nav.open a:hover,
  .navbar-nav.open a.active { background: #F5F7FA !important; color: #0B2A4A !important; }
  .navbar-nav.open a.nav-cta {
    background: #C99A3B !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    margin-top: 0.4rem !important;
    text-align: center !important;
  }
  .navbar-nav.open a.nav-cta:hover { background: #a87e2e !important; }

  /* Lang toggle */
  .lang-toggle { border-left: none; padding-left: 0; margin-left: 0.5rem; font-size: 0.82rem; }
  [lang="ar"] .lang-toggle { border-right: none; padding-right: 0; margin-right: 0.5rem; margin-left: 0; }
  .lang-toggle a { color: #0B2A4A !important; }
  .lang-toggle a.active { background: #0B2A4A !important; color: #FFFFFF !important; }

  /* Page hero */
  .page-hero { background: #0B2A4A !important; }
  .page-hero h1 { color: #FFFFFF !important; font-family: 'Playfair Display', Georgia, serif; }
  [lang="ar"] .page-hero h1 { font-family: 'Cairo', sans-serif; }
  .page-hero p { color: rgba(255,255,255,0.75) !important; }
  .breadcrumb a { color: #C99A3B !important; }

  /* Sections */
  .section-label { color: #C99A3B !important; }
  .section-heading h2 { color: #0B2A4A !important; }
  .divider-gold { background: #C99A3B !important; }
  .section, .tiles-section { background: #FFFFFF !important; }
  .move-announcement { background: #F5F7FA !important; }

  /* Cards & blocks */
  .tile { background: #fdf8ef !important; border: 1px solid #C99A3B !important; }
  .tile h3 { color: #0B2A4A !important; }
  .tile p  { color: #4a5a6e !important; font-size: 0.88rem; }
  .tile-icon { background: #C99A3B !important; color: #FFFFFF !important; }
  .move-card, .move-compare-col, .timeline-card,
  .service-block, .fly-block { background: #FFFFFF !important; }
  .move-compare-col.new { border-top-color: #C99A3B !important; }
  .owner-quote { background: #F5F7FA !important; }
  .stats-block { background: #0B2A4A !important; padding: 2rem 1.5rem; }
  .stat-content h4 { color: #C99A3B !important; }
  .stat-content p  { color: rgba(255,255,255,0.85) !important; }

  /* Service blocks */
  .service-block { padding: 1.5rem; border: 1px solid #dce4ef; }
  .service-icon { width: 80px; height: 80px; background: #0B2A4A; }
  .service-icon-img { background: #FFFFFF; border: 2px solid #C99A3B; }
  .service-body h3 { color: #0B2A4A !important; }
  .service-body p  { color: #4a5a6e !important; }
  .service-body .service-link { color: #a87e2e !important; font-weight: 700; }

  /* Contact */
  .contact-form { background: #FFFFFF !important; border: 2px solid #C99A3B !important; }
  .form-group label { color: #0B2A4A !important; }
  .form-group input,
  .form-group textarea {
    background: #FFFFFF !important;
    color: #0d1b2a !important;
    border-color: #dce4ef !important;
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 8px;
    -webkit-text-fill-color: #0d1b2a !important;
  }

  /* Buttons */
  .btn { min-height: 48px; font-family: inherit; justify-content: center; }
  .btn-gold    { background: #C99A3B !important; color: #FFFFFF !important; border-color: #C99A3B !important; }
  .btn-primary { background: #0B2A4A !important; color: #FFFFFF !important; border-color: #0B2A4A !important; }

  /* Footer */
  footer { background: #FFFFFF !important; color: #0B2A4A !important; border-top: 2px solid #dce4ef !important; }
  .footer-col h4 { color: #0B2A4A !important; }
  .footer-col a  { color: #4a5a6e !important; }
  .footer-col a:hover { color: #C99A3B !important; }
  .footer-bottom p { color: #7a8fa6 !important; }
  .footer-disclosure { color: #4a5a6e !important; }

  /* FlyXability page */
  .flyxability-hero { background: #0B2A4A !important; }
  .flyxability-hero h1 { color: #FFFFFF !important; }
  .bridge-block { background: #0B2A4A !important; }

  /* Office strip */
  .office-hero-strip { height: 220px; }

  /* Timeline */
  .timeline-year { background: #0B2A4A !important; color: #FFFFFF !important; }
  .timeline-card-body h3 { color: #0B2A4A !important; }
  .owner-quote blockquote { color: #0B2A4A !important; font-family: 'Playfair Display', Georgia, serif; }
  [lang="ar"] .owner-quote blockquote { font-family: 'Cairo', sans-serif; }
}

@media (max-width: 480px) {
  .tiles-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .owner-quote { padding: 1.5rem; }
  .hero-btn-book,
  .hero-btn-call { width: 100%; justify-content: center; }
  .section { padding: 2.5rem 0; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .service-icon { width: 64px !important; height: 64px !important; }
  .move-compare { grid-template-columns: 1fr; }
}
