/* ============================================================
   Delightjet – Light Theme Stylesheet
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #0a2240;
  --navy-mid:    #123a6a;
  --baby-blue:   #5bafd6;
  --sky:         #d6eaf8;
  --sky-2:       #eaf4fb;
  --white:       #ffffff;
  --off-white:   #f5f8fb;
  --text:        #2c3e50;
  --text-mid:    #4a6080;
  --text-dim:    #7f98b2;
  --border:      rgba(91,175,214,.22);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', sans-serif;
  --trans:       .32s cubic-bezier(.4,0,.2,1);
  --shadow-sm:   0 2px 12px rgba(10,34,64,.08);
  --shadow-md:   0 6px 28px rgba(10,34,64,.13);
  --shadow-lg:   0 16px 56px rgba(10,34,64,.18);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Header ────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--baby-blue);
  box-shadow: var(--shadow-sm);
  transition: height var(--trans), box-shadow var(--trans);
}
#site-header.scrolled { height: 64px; box-shadow: var(--shadow-md); }
.logo img { height: 44px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--trans);
  padding-bottom: 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  line-height: 1;
}
.main-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--baby-blue);
  transition: width var(--trans);
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--baby-blue); }
.main-nav > li > a:hover::after,
.main-nav > li > a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown > a { display: flex; align-items: center; gap: 6px; }
.has-dropdown > a .chevron {
  width: 9px; height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform var(--trans);
  display: inline-block;
}
.has-dropdown:hover > a .chevron { transform: rotate(-135deg); margin-top: 2px; }
.dropdown {
  position: absolute;
  top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--baby-blue);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans), visibility var(--trans), top var(--trans);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; top: calc(100% + 10px); }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--trans), background var(--trans);
}
.dropdown li a:hover { color: var(--baby-blue); background: var(--sky-2); }

/* Header CTA */
.header-cta { display: flex; gap: 10px; align-items: center; }
.btn-call, .btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-call {
  border: 1.5px solid var(--navy-mid);
  color: var(--navy);
  background: transparent;
}
.btn-call:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-whatsapp { background: #25D366; color: #fff; border: 1.5px solid #25D366; }
.btn-whatsapp:hover { background: #1ebe5a; }
.btn-call svg, .btn-whatsapp svg { width: 14px; height: 14px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--trans); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.52); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,34,64,.15) 0%, rgba(10,34,64,.35) 55%, rgba(10,34,64,.65) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-eyebrow { font-size: 11px; letter-spacing: .35em; text-transform: uppercase; color: var(--baby-blue); margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 24px; max-width: 820px;
}
.hero-title em { font-style: italic; color: #a8d4ef; }
.hero-sub { font-size: 14px; letter-spacing: .06em; color: rgba(255,255,255,.78); max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  padding: 13px 34px; background: var(--navy); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all var(--trans); border-radius: 2px; display: inline-block;
}
.btn-primary:hover { background: var(--baby-blue); }
.btn-secondary {
  padding: 13px 34px; background: transparent; color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.55); cursor: pointer; transition: all var(--trans);
  border-radius: 2px; display: inline-block;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: all var(--trans); padding: 0; }
.hero-dot.active { background: var(--baby-blue); transform: scale(1.5); }

/* ── Section Common ──────────────────────────────────────────── */
section { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--baby-blue); margin-bottom: 14px; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--baby-blue); }
.section-desc { font-size: 15px; color: var(--text-mid); max-width: 560px; line-height: 1.8; }
.divider { width: 48px; height: 2px; background: var(--baby-blue); margin: 22px 0; border: none; display: block; }
.divider.centered { margin: 22px auto; }

/* ── Services Grid ───────────────────────────────────────────── */
.services-intro { text-align: center; margin-bottom: 56px; }
.services-intro .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--border); }
.service-card { position: relative; overflow: hidden; aspect-ratio: 4/5; display: block; background: var(--navy); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.4,0,.2,1); filter: brightness(.55); }
.service-card:hover img { transform: scale(1.06); filter: brightness(.38); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,34,64,.88) 0%, transparent 55%);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: background var(--trans);
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(10,34,64,.95) 0%, rgba(10,34,64,.4) 100%); }
.service-card-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--baby-blue); margin-bottom: 8px; }
.service-card-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.service-card-text { font-size: 13px; color: rgba(255,255,255,.68); opacity: 0; transform: translateY(8px); transition: all var(--trans); line-height: 1.6; }
.service-card:hover .service-card-text { opacity: 1; transform: translateY(0); }
.service-card-arrow { margin-top: 14px; display: flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--baby-blue); opacity: 0; transform: translateY(4px); transition: all var(--trans) .05s; }
.service-card:hover .service-card-arrow { opacity: 1; transform: translateY(0); }
.service-card-arrow::after { content: ''; display: block; width: 20px; height: 1.5px; background: var(--baby-blue); transition: width var(--trans); }
.service-card:hover .service-card-arrow::after { width: 36px; }

/* ── World Map Section ──────────────────────────────────────── */
.world-map-section {
  background: var(--white);
  padding: 80px 0 72px;
  text-align: center;
}
.world-map-img {
  max-width: 680px;
  width: 100%;
  margin: 0 auto 40px;
  display: block;
  filter: none;
  /* preserve original appearance as seen on live site */
}
.world-map-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.world-map-tagline span { color: var(--baby-blue); font-style: italic; }

/* ── Page Banner ─────────────────────────────────────────────── */
.page-banner { position: relative; height: 360px; overflow: hidden; margin-top: 80px; }
.page-banner img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,34,64,.2), rgba(10,34,64,.65));
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.page-banner-eyebrow { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--baby-blue); margin-bottom: 12px; }
.page-banner-title { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; color: #fff; line-height: 1.1; }

/* ── Inner Content ──────────────────────────────────────────── */
.inner-content { padding: 80px 0; background: var(--white); }
.inner-content .lead { font-family: var(--font-head); font-size: 1.35rem; font-weight: 300; color: var(--navy); line-height: 1.65; margin-bottom: 28px; }
.inner-content p { color: var(--text-mid); margin-bottom: 18px; font-size: 15px; }
.inner-content h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; border-left: 3px solid var(--baby-blue); padding-left: 14px; }
.inner-content ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-bottom: 32px; }
.inner-content ul li { padding: 10px 16px; font-size: 14px; color: var(--text); background: var(--sky-2); border: 1px solid var(--border); border-left: 3px solid var(--baby-blue); }
.content-image { width: 100%; border-radius: 3px; margin: 36px 0; box-shadow: var(--shadow-md); }

/* Phase steps */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.phase-card {
  background: var(--off-white); border: 1px solid var(--border); border-top: 3px solid var(--navy);
  padding: 28px 24px; transition: border-top-color var(--trans), box-shadow var(--trans);
}
.phase-card:hover { border-top-color: var(--baby-blue); box-shadow: var(--shadow-md); }
.phase-number { font-family: var(--font-head); font-size: 3.5rem; font-weight: 300; color: rgba(10,34,64,.08); line-height: 1; margin-bottom: 10px; }
.phase-card h4 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.phase-card ul { display: block; margin: 0; }
.phase-card ul li { border: none; background: none; padding: 4px 0 4px 14px; font-size: 13px; color: var(--text-mid); border-left: 2px solid var(--border); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-competencies { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.comp-item { display: flex; align-items: center; gap: 14px; padding: 12px 18px; background: var(--sky-2); border: 1px solid var(--border); border-left: 3px solid var(--baby-blue); transition: all var(--trans); }
.comp-item:hover { background: var(--sky); border-left-color: var(--navy); }
.comp-number { font-family: var(--font-head); font-size: 1.1rem; color: var(--baby-blue); min-width: 28px; }
.comp-item span { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-lg); }
.about-image-wrap::after { content: ''; position: absolute; bottom: -12px; right: -12px; width: 160px; height: 160px; border: 2px solid var(--baby-blue); z-index: -1; opacity: .35; }

/* Stats */
.stats-bar { background: var(--navy); padding: 56px 0; margin-top: 80px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-item { padding: 0 32px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.12); }
.stat-number { font-family: var(--font-head); font-size: 3.2rem; font-weight: 300; color: var(--baby-blue); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* Contact */
.contact-hero-text { max-width: 560px; }
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.big-cta-btn { display: flex; align-items: center; gap: 20px; padding: 28px 32px; transition: all var(--trans); border-radius: 3px; text-decoration: none; box-shadow: var(--shadow-sm); }
.big-cta-btn-call { background: var(--sky-2); border: 1.5px solid var(--border); }
.big-cta-btn-call:hover { background: var(--sky); border-color: var(--baby-blue); box-shadow: var(--shadow-md); }
.big-cta-btn-wa { background: rgba(37,211,102,.07); border: 1.5px solid rgba(37,211,102,.3); }
.big-cta-btn-wa:hover { background: rgba(37,211,102,.14); border-color: #25D366; box-shadow: var(--shadow-md); }
.big-cta-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.big-cta-btn-call .big-cta-icon { background: var(--navy); }
.big-cta-btn-wa .big-cta-icon { background: #25D366; }
.big-cta-icon svg { width: 24px; height: 24px; fill: #fff; }
.big-cta-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.big-cta-number { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); }
.big-cta-btn-wa .big-cta-number { color: #1a9e4e; }

.email-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.email-card { background: var(--off-white); border: 1px solid var(--border); border-top: 3px solid var(--baby-blue); padding: 28px; transition: box-shadow var(--trans); }
.email-card:hover { box-shadow: var(--shadow-md); }
.email-card-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--baby-blue); margin-bottom: 8px; }
.email-card-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.email-card a { font-size: 14px; color: var(--text-mid); transition: color var(--trans); word-break: break-all; }
.email-card a:hover { color: var(--baby-blue); }

.social-connect { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); text-align: center; }
.social-connect h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 300; color: var(--navy); margin-bottom: 8px; }
.social-connect p { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; }
.social-connect-links { display: flex; justify-content: center; gap: 12px; }
.social-connect-links a { padding: 10px 24px; border: 1.5px solid var(--border); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--navy); transition: all var(--trans); border-radius: 2px; }
.social-connect-links a:hover { border-color: var(--baby-blue); color: var(--baby-blue); background: var(--sky-2); }

/* ── Floating CTA ─────────────────────────────────────────── */
.float-cta { position: fixed; right: 24px; bottom: 32px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform var(--trans), box-shadow var(--trans); position: relative; }
.float-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.float-btn-call { background: var(--navy); }
.float-btn-whatsapp { background: #25D366; }
.float-btn svg { width: 22px; height: 22px; fill: #fff; }
.float-tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white); font-size: 12px; padding: 6px 14px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--trans);
  border-radius: 3px; box-shadow: var(--shadow-sm);
}
.float-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--navy); }
.float-btn:hover .float-tooltip { opacity: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
#site-footer { background: var(--white); }

/* Decorative divider: baby-blue|navy lines + aircraft-globe SVG center */
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: var(--white);
  padding: 0;
  gap: 0;
  width: 100%;
  overflow: hidden;
}
.footer-line-left {
  flex: 1;
  height: 2.5px;
  background: linear-gradient(to right, var(--baby-blue), var(--navy));
}
.footer-line-right {
  flex: 1;
  height: 2.5px;
  background: linear-gradient(to left, var(--baby-blue), var(--navy));
}
.footer-divider-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-divider-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-main { background: var(--off-white); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: var(--text-mid); line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-icon { width: 34px; height: 34px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 10px; letter-spacing: .05em; transition: all var(--trans); color: var(--text-dim); text-transform: uppercase; border-radius: 2px; }
.social-icon:hover { border-color: var(--baby-blue); color: var(--baby-blue); background: var(--sky-2); }
.footer-col h4 { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--baby-blue); display: inline-block; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--text-mid); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--baby-blue); }
.footer-col address { font-style: normal; font-size: 13px; color: var(--text-mid); line-height: 1.9; }
.footer-col address a { transition: color var(--trans); }
.footer-col address a:hover { color: var(--baby-blue); }

/* Navy bar above copyright */
.footer-bottom-wrap { background: var(--navy); border-top: 3px solid var(--navy-mid); }
.footer-bottom { padding: 16px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.55); }
.footer-bottom a { color: var(--baby-blue); transition: color var(--trans); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .dev-credit { font-size: 11px; color: rgba(255,255,255,.4); }
.footer-bottom .dev-credit a { color: var(--baby-blue); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .phases { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap img { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-divider { padding: 0; }
}
@media (max-width: 768px) {
  #site-header { padding: 0 20px; }
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .main-nav, .header-cta { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 28px 20px; gap: 0; overflow-y: auto;
    z-index: 999; box-shadow: var(--shadow-lg);
  }
  .main-nav.open > li > a { display: block; padding: 14px 0; font-size: 13px; border-bottom: 1px solid var(--border); color: var(--navy); }
  .main-nav.open > li > a::after { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; background: var(--sky-2); border: none; border-left: 3px solid var(--baby-blue); box-shadow: none; margin-left: 14px; margin-top: 4px; margin-bottom: 8px; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; background: none; gap: 2px; }
  .service-card { aspect-ratio: 16/9; }
  .phases { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-divider { padding: 0; }
  .float-cta { right: 14px; bottom: 20px; }
  .contact-methods { grid-template-columns: 1fr; }
  .email-cards { grid-template-columns: 1fr; }
  .world-map-img { max-width: 100%; }
}

/* ── Breadcrumb Navigation ───────────────────────────────────── */
.breadcrumb {
  background: var(--sky-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .04em;
}
.breadcrumb-list li + li::before {
  content: '›';
  margin-right: 6px;
  color: var(--baby-blue);
  font-size: 14px;
  line-height: 1;
}
.breadcrumb-list li a {
  color: var(--text-mid);
  transition: color var(--trans);
}
.breadcrumb-list li a:hover { color: var(--baby-blue); }
.breadcrumb-list li span[aria-current],
.breadcrumb-list li > span:not([itemprop="name"] + *) {
  color: var(--navy);
  font-weight: 500;
}
/* Microdata span inside list items */
.breadcrumb-list li span[itemprop="name"] { color: inherit; }
.breadcrumb-list li:last-child span[itemprop="name"] {
  color: var(--navy);
  font-weight: 500;
}
