/* ═══════════════════════════════════════════════════════════════════════════
   BOOK A TECHNICIAN — Main Stylesheet
   Brand: Green #6DBE45 | Blue #2E6BE6 | Navy #1A2E4A
   Fonts: Syne (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --green:   #6DBE45;
  --green-d: #5aA837;
  --blue:    #2E6BE6;
  --navy:    #1A2E4A;
  --navy-d:  #122238;
  --white:   #FFFFFF;
  --light:   #F4F7FB;
  --border:  #DDE4EF;
  --muted:   #5A6E88;
  --body:    #2C3E55;
  --yellow:  #F5C518;

  --font-h:  'Syne', sans-serif;
  --font-b:  'DM Sans', sans-serif;

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 999px;

  --shadow-sm: 0 2px 8px rgba(26,46,74,.06);
  --shadow-md: 0 4px 20px rgba(26,46,74,.10);
  --shadow-lg: 0 8px 40px rgba(26,46,74,.14);
  --shadow-xl: 0 16px 60px rgba(26,46,74,.18);

  --t: all .25s ease;

  --cont: 1200px;
  --gap:  2rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; }
h3 { font-size: clamp(18px, 3vw, 26px); font-weight: 700; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 16px; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: none; transition: var(--t); }
a:hover { color: var(--green); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ─── Sections ──────────────────────────────────────────────────────────── */
.section         { padding: 5rem 0; }
.section-light   { background: var(--light); }
.section-navy    { background: var(--navy); }
.section-cta-banner { background: linear-gradient(135deg, var(--navy), var(--navy-d)); padding: 4rem 0; }

/* ─── Section Header ────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--muted); font-size: 1.05rem; }

.section-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 10px;
}
.section-label-light { color: var(--green); }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg  { padding: .9rem 2rem; font-size: 16px; }
.btn-sm  { padding: .5rem 1.1rem; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

.btn-green         { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover   { background: var(--green-d); border-color: var(--green-d); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(109,190,69,.35); }

.btn-white         { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover   { background: var(--light); color: var(--navy); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn-outline-navy  { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-navy:hover  { background: var(--navy); color: #fff; border-color: var(--navy); }

.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ─── Badges / Pills ────────────────────────────────────────────────────── */
.badge-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .9rem;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 600;
}
.badge-green { background: rgba(109,190,69,.12); color: var(--green); }
.badge-blue  { background: rgba(46,107,230,.10); color: var(--blue); }

/* ─── Text Utilities ────────────────────────────────────────────────────── */
.text-green  { color: var(--green) !important; }
.text-blue   { color: var(--blue) !important; }
.text-navy   { color: var(--navy) !important; }
.text-white  { color: #fff !important; }
.text-muted  { color: var(--muted) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-white-muted { color: rgba(255,255,255,.75) !important; }

/* ─── Alerts ────────────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  font-weight: 500;
}
.alert-success { background: rgba(109,190,69,.12); color: #2a7a12; border: 1px solid rgba(109,190,69,.3); }
.alert-danger  { background: rgba(220,38,38,.08);  color: #9b1c1c; border: 1px solid rgba(220,38,38,.2); }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: .75rem; padding-bottom: .75rem;
}
.header-logo img { height: 52px; width: auto; }

.main-nav {
  display: flex; align-items: center; gap: .25rem;
  margin-left: 1.5rem;
}
.nav-link {
  color: var(--body); font-weight: 500; font-size: 14.5px;
  padding: .4rem .7rem; border-radius: var(--r-sm);
  transition: var(--t); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link.active { background: rgba(109,190,69,.08); }

.nav-arrow { font-size: 10px; margin-left: 2px; }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  width: 700px;
  padding: 1.25rem;
  z-index: 100;
}
.dropdown-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem;
}
.dropdown-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .75rem; border-radius: var(--r-sm);
  color: var(--body); font-size: 14px; font-weight: 500;
  transition: var(--t);
}
.dropdown-item:hover { background: var(--light); color: var(--green); }
.dropdown-icon { font-size: 16px; }
.dropdown-footer {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.dropdown-view-all { color: var(--green); font-weight: 600; font-size: 14px; }

/* Header Actions */
.header-actions {
  display: flex; align-items: center; gap: 1rem; margin-left: auto;
}
.header-phone {
  display: flex; align-items: center; gap: .5rem;
  color: var(--navy); font-weight: 600; font-size: 14px;
}
.header-phone:hover { color: var(--green); }

.mobile-toggle {
  display: none;
  background: none; border: none;
  color: var(--navy); font-size: 22px; cursor: pointer; padding: .25rem;
}
.mobile-ctas { display: none; }

/* Mobile Nav */
.mobile-search-form { display: none; }

@media (max-width: 1024px) {
  .header-actions .header-phone { display: none; }
  .dropdown-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-dropdown { width: 500px; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: flex; margin-left: auto; }
  .header-actions { display: none; }

  .main-nav {
    display: none; flex-direction: column; align-items: stretch;
    position: fixed; top: 73px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 1.5rem;
    overflow-y: auto; z-index: 999; gap: .25rem;
  }
  .main-nav.is-open { display: flex; }

  .nav-link { padding: .7rem 1rem; font-size: 16px; }
  .nav-dropdown-wrap { position: static; }
  .nav-dropdown {
    position: static; width: 100%; box-shadow: none;
    border: 1px solid var(--border); margin-top: .5rem;
  }
  .dropdown-grid { grid-template-columns: 1fr 1fr; }
  .mobile-ctas { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

  /* Mobile search inside nav panel */
  .mobile-search-form {
    display: flex !important; gap: .5rem; margin-bottom: .5rem;
    padding-bottom: 1rem; border-bottom: 1px solid var(--border);
  }
  .mobile-search-input {
    flex: 1; padding: .6rem .85rem;
    border: 1.5px solid var(--border); border-radius: var(--r-md);
    font-family: var(--font-b); font-size: 15px;
  }
  .mobile-search-input:focus { outline: none; border-color: var(--green); }
  .mobile-search-submit {
    padding: .6rem 1rem; background: var(--green); color: #fff;
    border: none; border-radius: var(--r-md); cursor: pointer;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  min-height: 640px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 50%, #1e3a5f 100%);
  opacity: .95;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(109,190,69,.12) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3rem; align-items: center;
  padding-top: 4rem; padding-bottom: 4rem;
}
.hero-headline { color: #fff; margin-bottom: .5rem; }
.hero-tagline {
  font-family: var(--font-h);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green); margin-bottom: 1.25rem;
}
.hero-body { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-family: var(--font-h); font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* Hero Card */
.hero-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
}
.hero-card-header {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-h); font-weight: 700; color: var(--navy);
  font-size: 16px; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.hero-quick-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.25rem;
}
.hero-quick-link {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .75rem;
  background: var(--light); border-radius: var(--r-sm);
  color: var(--body); font-size: 13px; font-weight: 500;
  transition: var(--t);
}
.hero-quick-link:hover { background: rgba(109,190,69,.12); color: var(--green); }
.hero-card-contact {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  margin-top: 1rem; font-weight: 600; font-size: 14px; color: var(--navy);
}
.hero-card-contact a { color: var(--navy); }
.hero-card-contact a:hover { color: var(--green); }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 700px; }
  .hero-visual { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(109,190,69,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 18px; flex-shrink: 0;
}
.trust-item h4 { font-size: 15px; margin-bottom: .15rem; }
.trust-item p  { font-size: 13px; color: var(--muted); margin: 0; }

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

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.services-grid-lg { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.services-grid-sm { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: var(--t);
  display: block;
  color: var(--body);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green);
  transform: translateY(-3px);
  color: var(--body);
}
.service-card-icon    { font-size: 2.5rem; margin-bottom: .75rem; }
.service-card-icon-lg { font-size: 3rem; }
.service-card-title   { font-size: 17px; margin-bottom: .5rem; color: var(--navy); }
.service-card-desc    { font-size: 13.5px; color: var(--muted); margin-bottom: 1rem; }
.service-card-link    { font-size: 13px; font-weight: 600; color: var(--green); }

.service-card-full {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem;
}
.service-card-full .service-card-body { flex: 1; }

@media (max-width: 1200px) {
  .services-grid    { grid-template-columns: repeat(3, 1fr); }
  .services-grid-sm { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid-lg { grid-template-columns: 1fr; }
  .services-grid-sm { grid-template-columns: repeat(2, 1fr); }
  .service-card-full { flex-direction: column; }
}
@media (max-width: 480px) {
  .services-grid    { grid-template-columns: 1fr; }
  .services-grid-sm { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS / STEPS
   ═══════════════════════════════════════════════════════════════════════════ */
.steps-grid {
  display: flex; align-items: flex-start;
  gap: 1rem;
}
.step-card {
  flex: 1;
  background: var(--light);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
}
.step-number {
  font-family: var(--font-h); font-size: 48px; font-weight: 800;
  color: rgba(109,190,69,.2); line-height: 1; margin-bottom: .5rem;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--green); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; margin-bottom: 1rem;
}
.step-arrow {
  color: var(--border); font-size: 20px; margin-top: 3rem; flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════════════════ */
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.why-list li {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.85); font-size: 15.5px;
}
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.why-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
}
.why-stat-num   { display: block; font-family: var(--font-h); font-size: 40px; font-weight: 800; color: var(--green); }
.why-stat-label { color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-top: .25rem; display: block; }

@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-stats  { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .why-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-h); font-size: 60px; color: rgba(109,190,69,.15);
  line-height: 1;
}
.testimonial-stars { margin-bottom: .75rem; display: flex; gap: 2px; }
.testimonial-review { font-size: 15px; color: var(--body); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testimonial-name     { display: block; font-weight: 700; font-size: 15px; color: var(--navy); }
.testimonial-location { display: block; font-size: 12px; color: var(--muted); }
.testimonial-badge {
  display: inline-block; margin-top: 1rem;
  font-size: 11px; font-weight: 600; color: var(--blue);
  background: rgba(46,107,230,.08); padding: .2rem .7rem;
  border-radius: var(--r-full);
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-grid-sm { grid-template-columns: repeat(3, 1fr); }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
  color: var(--body);
  transition: var(--t);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); color: var(--body); }

.blog-card-img {
  height: 200px;
  background-size: cover; background-position: center;
  background-color: var(--light);
}
.blog-card-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--border); font-size: 2.5rem;
}
.blog-card-body  { padding: 1.5rem; }
.blog-card-meta  { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; flex-wrap: wrap; }
.blog-card-cat   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--green); background: rgba(109,190,69,.1); padding: .2rem .6rem; border-radius: var(--r-full); }
.blog-card-date  { font-size: 12px; color: var(--muted); }
.blog-card-title { font-size: 17px; margin-bottom: .5rem; color: var(--navy); }
.blog-card-excerpt { font-size: 14px; color: var(--muted); margin-bottom: 1rem; }
.blog-card-link  { font-size: 13px; font-weight: 600; color: var(--green); }

@media (max-width: 900px) { .blog-grid, .blog-grid-sm { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid, .blog-grid-sm { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-banner {
  text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-banner h2  { color: #fff; margin-bottom: .75rem; }
.cta-banner p   { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (sub-pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero-sm { padding: 3.5rem 0 3rem; }

.page-hero h1  { color: #fff; margin-bottom: 1rem; }
.page-hero p   { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.page-hero .section-label { justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE HERO (service detail pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.service-hero {
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  padding: 4rem 0 5rem;
}
.service-hero-inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}
.service-hero-icon {
  font-size: 3.5rem; margin: 1rem 0;
}
.service-hero h1 { color: #fff; margin-bottom: .75rem; }
.service-hero-subtext { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 600px; }
.service-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.service-hero-phone {
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: .5rem;
}
.service-hero-phone:hover { color: var(--green); }

.service-quick-card {
  background: #fff; border-radius: var(--r-xl); padding: 1.75rem;
  box-shadow: var(--shadow-xl); position: sticky; top: 90px;
}
.service-quick-card h3 { margin-bottom: 1rem; }
.service-quick-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.service-quick-list li { display: flex; align-items: center; gap: .6rem; font-size: 14px; }
.service-quick-or {
  text-align: center; font-size: 13px; color: var(--muted);
  margin: .75rem 0; position: relative;
}
.service-quick-or::before, .service-quick-or::after {
  content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--border);
}
.service-quick-or::before { left: 0; }
.service-quick-or::after  { right: 0; }

@media (max-width: 900px) {
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-quick-card { position: static; max-width: 500px; }
}

/* ─── What We Do / Why Choose (service pages) ──────────────────────────── */
.what-we-do-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.what-we-do-list { display: flex; flex-direction: column; gap: .75rem; }
.what-we-do-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: 15px; }

.why-choose-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.why-choose-item {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--light); border-radius: var(--r-md);
  padding: 1rem 1.25rem; font-size: 15px;
}

@media (max-width: 900px) {
  .what-we-do-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-container { max-width: 860px; }

.faq-category      { margin-bottom: 3rem; }
.faq-category-title {
  font-size: 20px; color: var(--navy); margin-bottom: 1rem;
  padding-bottom: .75rem; border-bottom: 2px solid var(--green);
}

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item.is-open { border-color: var(--green); }

.faq-question {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-b); font-size: 15.5px; font-weight: 600; color: var(--navy);
}
.faq-item.is-open .faq-question { color: var(--green); }
.faq-chevron { font-size: 12px; color: var(--muted); transition: var(--t); flex-shrink: 0; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--green); }

.faq-answer { padding: 0 1.25rem 1.1rem; }
.faq-answer p { color: var(--muted); font-size: 15px; margin: 0; }

.faq-cta {
  text-align: center; margin-top: 3rem;
  padding: 2.5rem; background: var(--light); border-radius: var(--r-xl);
}
.faq-cta h3 { margin-bottom: .5rem; }
.faq-cta p  { color: var(--muted); margin-bottom: 1.5rem; }
.faq-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════════════ */
.form-section-title { font-size: 22px; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: .4rem; }

.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-b); font-size: 15px; color: var(--body);
  background: var(--white);
  transition: var(--t);
  outline: none;
  appearance: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(109,190,69,.15); }
.form-control.is-invalid { border-color: #ef4444; }
.form-error { display: block; font-size: 12px; color: #ef4444; margin-top: .3rem; }
.form-privacy-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 1rem; }

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Contact Page ──────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--light); border-radius: var(--r-lg);
  padding: 1.5rem; text-align: center;
}
.contact-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.contact-card h3 { margin-bottom: .4rem; }
.contact-card p  { font-size: 14px; color: var(--muted); margin-bottom: 1rem; }
.contact-assurances { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.assurance { display: flex; align-items: center; gap: .6rem; font-size: 14px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── Book Page ─────────────────────────────────────────────────────────── */
.book-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }

.booking-success {
  text-align: center; padding: 3rem 2rem;
  background: var(--light); border-radius: var(--r-xl);
}
.booking-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.booking-success h2 { margin-bottom: .75rem; color: var(--navy); }
.booking-success-wa { font-size: 14px; color: var(--muted); margin-top: 1rem; }
.booking-success-wa a { color: var(--green); font-weight: 600; }

.book-sidebar-card {
  background: var(--light); border-radius: var(--r-xl);
  padding: 1.75rem; position: sticky; top: 90px;
}
.book-sidebar-card h3 { margin-bottom: 1.25rem; font-size: 18px; display: flex; align-items: center; gap: .5rem; }
.book-why-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.book-why-list li { display: flex; align-items: center; gap: .6rem; font-size: 14.5px; }
.book-sidebar-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.book-whatsapp-link {
  display: flex; align-items: center; gap: .6rem; justify-content: center;
  color: #128C7E; font-weight: 600; font-size: 15px;
  background: rgba(18,140,126,.08); border-radius: var(--r-md);
  padding: .75rem 1rem; transition: var(--t);
}
.book-whatsapp-link:hover { background: rgba(18,140,126,.15); color: #128C7E; }
.book-whatsapp-link .fab { font-size: 20px; }
.book-sidebar-phone {
  display: flex; align-items: center; gap: .75rem; margin-top: 1rem;
}
.book-sidebar-phone span { display: block; font-size: 11px; color: var(--muted); }
.book-sidebar-phone a { font-weight: 700; color: var(--navy); font-size: 16px; }

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-sidebar-card { position: static; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-story-content p { color: var(--muted); margin-bottom: .9rem; }
.about-stats-box { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.about-stat {
  background: var(--light); border-radius: var(--r-lg); padding: 1.75rem; text-align: center;
}
.about-stat-num   { display: block; font-family: var(--font-h); font-size: 36px; font-weight: 800; color: var(--green); }
.about-stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-top: .25rem; display: block; }

.mission-grid { display: flex; flex-direction: column; gap: .75rem; max-width: 700px; margin: 0 auto; }
.mission-item { display: flex; align-items: center; gap: .75rem; font-size: 16px; color: var(--body); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--light); border-radius: var(--r-lg); padding: 1.75rem; text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }

.why-different { max-width: 700px; margin: 0 auto; text-align: center; }
.why-different p { margin-bottom: 1rem; }

.emirates-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.emirate-badge {
  display: flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: .6rem 1.25rem;
  font-weight: 600; font-size: 14px;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG SHOW PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  padding: 4rem 0 3rem;
  text-align: center;
}
.blog-hero-meta { display: flex; align-items: center; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.blog-date, .blog-author { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .35rem; }
.blog-hero h1 { color: #fff; margin-bottom: .75rem; }
.blog-excerpt { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

.blog-cover { padding: 0; }
.blog-cover .container { padding-top: 2.5rem; }
.blog-cover-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--r-xl); }

.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.blog-sidebar-card {
  background: var(--light); border-radius: var(--r-xl); padding: 1.75rem;
  position: sticky; top: 90px; text-align: center;
}
.blog-sidebar-card h3 { margin-bottom: .5rem; }
.blog-sidebar-card p  { color: var(--muted); font-size: 14px; margin-bottom: 1.25rem; }
.blog-sidebar-wa {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  color: #128C7E; font-weight: 600; font-size: 14px; margin-top: 1rem;
}
.blog-sidebar-wa:hover { color: #0a7063; }

/* ═══════════════════════════════════════════════════════════════════════════
   BOOKING MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.booking-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,46,74,.7);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}
.booking-modal-box {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  max-width: 680px; width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.booking-modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; font-size: 1.75rem;
  color: var(--muted); cursor: pointer; line-height: 1;
}
.booking-modal-close:hover { color: var(--navy); }
.booking-modal-header { text-align: center; margin-bottom: 1.75rem; }
.booking-modal-header h2 { font-family: var(--font-h); color: var(--navy); margin-bottom: .35rem; }
.booking-modal-header p  { color: var(--muted); font-size: 14px; }
.booking-modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-modal-form .form-group { margin-bottom: 1rem; }
.booking-modal-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: .4rem; color: var(--navy); }
.booking-modal-form input,
.booking-modal-form select,
.booking-modal-form textarea {
  width: 100%; padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-b); font-size: 14px;
  background: #fff; color: var(--body);
  transition: var(--t);
}
.booking-modal-form input:focus,
.booking-modal-form select:focus,
.booking-modal-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(109,190,69,.15); }
.btn-block { width: 100%; justify-content: center; }
.booking-modal-error {
  background: #fff3f3; border: 1.5px solid #f5c6c6;
  color: #c0392b; border-radius: var(--r-md);
  padding: .75rem 1rem; font-size: 14px;
  margin-bottom: 1rem;
}
.booking-modal-success {
  text-align: center; padding: 2rem 1rem;
}
.booking-success-icon {
  width: 72px; height: 72px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; margin: 0 auto 1.25rem;
}
.booking-modal-success h3 { color: var(--navy); margin-bottom: .5rem; }
.booking-modal-success p  { color: var(--muted); margin-bottom: 1.5rem; }
@media (max-width: 580px) {
  .booking-modal-box { padding: 1.5rem; }
  .booking-modal-form .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER SEARCH
   ═══════════════════════════════════════════════════════════════════════════ */
.header-search-btn {
  background: none; border: none; cursor: pointer;
  color: var(--navy); font-size: 1rem;
  padding: .4rem .5rem; border-radius: var(--r-sm);
  transition: var(--t);
}
.header-search-btn:hover { color: var(--green); }
.header-search-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: .85rem 0;
}
.header-search-form {
  display: flex; gap: .5rem; align-items: center;
}
.header-search-input {
  flex: 1; padding: .65rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-family: var(--font-b); font-size: 15px;
}
.header-search-input:focus { outline: none; border-color: var(--green); }
.header-search-submit {
  padding: .65rem 1.25rem; background: var(--green); color: #fff;
  border: none; border-radius: var(--r-md); cursor: pointer; font-size: 1rem;
  transition: var(--t);
}
.header-search-submit:hover { background: var(--green-d); }
.header-search-close {
  padding: .65rem .9rem; background: none; color: var(--muted);
  border: 1.5px solid var(--border); border-radius: var(--r-md); cursor: pointer; font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.search-page-form {
  display: flex; gap: .75rem; max-width: 640px; margin: 0 auto 2.5rem;
}
.search-page-input {
  flex: 1; padding: .75rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-family: var(--font-b); font-size: 15px;
}
.search-page-input:focus { outline: none; border-color: var(--green); }
.search-results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.search-result-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--t); display: block; color: inherit;
  text-decoration: none;
}
.search-result-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.search-result-image { height: 160px; overflow: hidden; }
.search-result-image img { width: 100%; height: 100%; object-fit: cover; }
.search-result-body { padding: 1rem 1.1rem; }
.search-result-type {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .55rem; border-radius: var(--r-full); display: inline-block; margin-bottom: .5rem;
}
.search-result-type.service { background: rgba(109,190,69,.12); color: var(--green-d); }
.search-result-type.blog    { background: rgba(46,107,230,.1); color: var(--blue); }
.search-result-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.search-result-body p  { font-size: 13px; color: var(--muted); line-height: 1.5; }
.search-empty { text-align: center; padding: 4rem 1rem; }
.search-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.search-empty h3 { color: var(--navy); margin-bottom: .5rem; }
.search-empty p  { color: var(--muted); margin-bottom: 1.5rem; }
.search-fuzzy-notice {
  background: rgba(109,190,69,.08); border: 1px solid rgba(109,190,69,.25);
  color: var(--navy); border-radius: var(--r-md);
  padding: .75rem 1.1rem; font-size: 14px;
  display: flex; align-items: center; gap: .6rem;
}
.search-fuzzy-notice i { color: var(--green); }
@media (max-width: 768px) { .search-results-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES (Terms & Privacy)
   ═══════════════════════════════════════════════════════════════════════════ */
.container-narrow { max-width: 800px; }
.legal-content { line-height: 1.9; color: var(--body); }
.legal-content h2 { font-family: var(--font-h); color: var(--navy); font-size: 1.2rem; margin: 2rem 0 .5rem; }
.legal-content h3 { color: var(--navy); margin: 1.5rem 0 .4rem; }
.legal-content p  { margin-bottom: 1rem; }
.legal-content a  { color: var(--green); }
.legal-content a:hover { color: var(--green-d); }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: .35rem; }

.prose { max-width: 720px; }
.prose h2, .prose h3 { margin-top: 2rem; margin-bottom: .75rem; }
.prose p  { color: var(--body); margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--r-lg); margin: 1.5rem 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — HOME & ABOUT (768px and below)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Global Section Spacing ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: 1rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .section-cta-banner { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .section { padding: 2.25rem 0; }
  .page-hero { padding: 2.25rem 0 2rem; }
}

/* ─── Hero — Home Page ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { min-height: unset; }
  .hero-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-body { font-size: 1rem; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-inner { padding-top: 2rem; padding-bottom: 2.5rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: .75rem; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }
  .hero-stat-divider { display: none; }
}

/* ─── Trust Strip ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .trust-strip { padding: 2rem 0; }
  .trust-icon { width: 38px; height: 38px; font-size: 15px; flex-shrink: 0; }
  .trust-item h4 { font-size: 14px; }
}

/* ─── Services Grid ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .service-card { padding: 1.25rem; }
  .service-card-icon { font-size: 2rem; }
  .service-card-title { font-size: 15px; }
}

/* ─── How It Works / Steps ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .steps-grid { gap: .75rem; }
  .step-card { padding: 1.5rem; }
  .step-number { font-size: 36px; }
  .step-icon { width: 44px; height: 44px; font-size: 18px; }
  .step-arrow { margin-top: 1.25rem; }
}
@media (max-width: 480px) {
  .step-card { padding: 1.25rem; }
}

/* ─── Why Choose Us ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .why-inner { gap: 2rem; }
  .why-list { gap: .6rem; }
  .why-list li { font-size: 15px; }
  .why-stat-num { font-size: 30px; }
  .why-stat-card { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .why-stat-num { font-size: 26px; }
  .why-inner .btn-lg { width: 100%; justify-content: center; }
}

/* ─── Testimonials ──────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .testimonial-card { padding: 1.25rem; }
  .testimonial-review { font-size: 14px; }
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .cta-banner h2 { font-size: clamp(22px, 6vw, 34px); }
}
@media (max-width: 480px) {
  .cta-banner-actions { flex-direction: column; gap: .75rem; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
}

/* ─── About Page — Story Grid ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-story-grid { gap: 2rem; }
  .about-story-content p { font-size: 15px; }
}
@media (max-width: 480px) {
  .about-stats-box { gap: .75rem; }
  .about-stat { padding: 1.25rem .75rem; }
  .about-stat-num { font-size: 28px; }
  .about-stat-label { font-size: 11px; }
}

/* ─── About Page — Values ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .value-card { padding: 1.25rem; }
  .value-icon { font-size: 1.75rem; margin-bottom: .75rem; }
}

/* ─── About Page — Mission ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .mission-item { font-size: 15px; }
}

/* ─── About Page — Emirates ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .emirate-badge { padding: .5rem 1rem; font-size: 13px; }
}

/* ─── Blog Cards ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .blog-card-img { height: 160px; }
  .blog-card-body { padding: 1.1rem; }
  .blog-card-title { font-size: 15px; }
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .footer-top { padding: 3rem 0 2rem; }
  .footer-bottom { padding: 1.25rem 0; }
}

.pagination-wrap { margin-top: 3rem; display: flex; justify-content: center; }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar-card { position: static; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-d); color: rgba(255,255,255,.75); }

.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 2.5rem;
}

.footer-logo img { height: 46px; margin-bottom: 1rem; }
.footer-tagline { font-family: var(--font-h); font-weight: 700; color: var(--green); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: .5rem; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 14px;
  transition: var(--t);
}
.footer-social a:hover { background: var(--green); color: #fff; }

.footer-col-title { font-family: var(--font-h); color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 1rem; }

.footer-links-list { display: flex; flex-direction: column; gap: .4rem; }
.footer-links-list a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: var(--t); }
.footer-links-list a:hover { color: var(--green); }

.footer-contact-list { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 13.5px; }
.footer-contact-list i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.7); }
.footer-contact-list a:hover { color: var(--green); }
.footer-contact-list span { color: rgba(255,255,255,.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  font-size: 13px;
}
.footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center; gap: .3rem; text-align: center;
}
.footer-copyright { color: rgba(255,255,255,.5); }
.footer-license   { color: rgba(255,255,255,.4); font-size: 12px; }
.footer-legal-links { display: flex; gap: .75rem; color: rgba(255,255,255,.4); margin-top: .25rem; }
.footer-legal-links a { color: rgba(255,255,255,.4); }
.footer-legal-links a:hover { color: var(--green); }

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

/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--t);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 30px rgba(37,211,102,.5); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,.65); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center; padding: 4rem 2rem; color: var(--muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
