/* ============================================================
   SGM DRIVERS – ENTERPRISE STYLESHEET
   Brand: Navy #0D1B2A | Gold #C6A75E | White #FFFFFF
   Fonts: Montserrat (headings) | Open Sans (body)
   Domain: sgmrecruitment.co.uk
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:        #0D1B2A;
  --navy-accent: #1B263B;
  --gold:        #C6A75E;
  --gold-light:  #D4B76A;
  --gold-dark:   #A8893C;
  --white:       #FFFFFF;
  --grey-bg:     #F4F6F8;
  --grey-light:  #E8ECF0;
  --grey-text:   #6B7280;
  --grey-dark:   #374151;
  --success:     #10B981;
  --error:       #EF4444;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 64px rgba(0,0,0,.18);

  --radius:      8px;
  --radius-lg:   16px;
  --transition:  .3s ease;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 96px 0; }
.section-padding-sm { padding: 64px 0; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-text);
  max-width: 640px;
  margin-bottom: 48px;
}

.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.gold-line {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 32px;
}

.gold-line.centered { margin: 16px auto 32px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(198,167,94,.4);
  transform: translateY(-2px);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .8rem; }

/* ---------- STICKY PHONE BAR ---------- */
.sticky-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(198,167,94,.5);
  text-transform: uppercase;
  transition: all var(--transition);
}
.sticky-call:hover {
  transform: scale(1.05) translateY(-2px);
  color: var(--navy);
  box-shadow: 0 12px 40px rgba(198,167,94,.6);
}
.sticky-call i { font-size: 1.1rem; animation: ring 2s infinite; }

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%  { transform: rotate(-15deg); }
  20%, 40%  { transform: rotate(15deg); }
  50%       { transform: rotate(0deg); }
}

/* ============================================================
   GOOGLE TRANSLATE – Hide native banner completely, no body shift
   ============================================================ */
body { top: 0 !important; position: static !important; }
html body { top: 0 !important; }
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-ftab-float,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight { display: none !important; height: 0 !important; visibility: hidden !important; }
.skiptranslate { display: none !important; height: 0 !important; }
iframe.goog-te-menu-frame { display: none !important; }
.goog-te-gadget { display: none !important; height: 0 !important; }
#google_translate_element { display: none !important; }
/* Prevent GT from adding top padding/margin to body */
body.translated-ltr,
body.translated-rtl { margin-top: 0 !important; padding-top: 0 !important; }

/* ============================================================
   NAVBAR – New Design
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(10, 20, 34, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198,167,94,.18);
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(10, 20, 34, 1);
  box-shadow: 0 6px 32px rgba(0,0,0,.45);
  border-bottom-color: rgba(198,167,94,.28);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 16px;
}

/* ── LOGO ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  order: 1;
}
.nav-logo img {
  width: 320px;
  height: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 16px rgba(198,167,94,.4));
  transition: filter .3s, transform .3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 4px 20px rgba(198,167,94,.6));
  transform: scale(1.02);
}

/* ── DESKTOP MENU ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
  order: 2;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  color: rgba(255,255,255,.82);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.25s;
  white-space: nowrap;
  position: relative;
}
.nav-menu > li > a::before {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-menu > li > a:hover { color: #fff; background: rgba(198,167,94,.08); }
.nav-menu > li > a:hover::before { transform: scaleX(1); }
.nav-menu > li.active > a { color: var(--gold); }
.nav-menu > li.active > a::before { transform: scaleX(1); }

/* Dropdown arrow */
.nav-menu .dropdown { position: relative; }
.nav-menu .dropdown > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .65rem;
  opacity: .7;
  transition: transform .25s;
}
.nav-menu .dropdown:hover > a::after { transform: rotate(180deg); }

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: linear-gradient(160deg, #0f2035 0%, #0D1B2A 100%);
  border: 1px solid rgba(198,167,94,.22);
  border-radius: 12px;
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(198,167,94,.08);
  list-style: none;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-family: var(--font-head);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.dropdown-menu a::before { content: '›'; color: var(--gold); font-size: 1rem; margin-right: -4px; }
.dropdown-menu a:hover {
  background: rgba(198,167,94,.12);
  color: var(--gold);
  transform: translateX(4px);
}

/* ── NAV RIGHT ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  order: 3;
}

/* ── LANG SELECTOR ── */
.lang-selector {
  position: relative;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(198,167,94,.1);
  border: 1px solid rgba(198,167,94,.3);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: .5px;
}
.lang-btn:hover {
  background: rgba(198,167,94,.22);
  border-color: var(--gold);
  color: var(--gold);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: linear-gradient(160deg, #0f2035 0%, #0D1B2A 100%);
  border: 1px solid rgba(198,167,94,.22);
  border-radius: 12px;
  overflow: hidden;
  min-width: 175px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 9999;
}
.lang-dropdown.open { opacity: 1; visibility: visible; }
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: rgba(255,255,255,.8);
  font-size: .83rem;
  font-family: var(--font-head);
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover, .lang-dropdown a.active-lang {
  background: rgba(198,167,94,.12);
  color: var(--gold);
}
.lang-dropdown a.active-lang { font-weight: 700; }
.lang-dropdown .flag { font-size: 1.15rem; }

/* ── HAMBURGER (hidden on desktop) ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  order: 4;
  position: relative;
}
.hamburger-box {
  width: 20px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all .35s cubic-bezier(.645,.045,.355,1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(9.75px) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-9.75px) rotate(-45deg); background: var(--gold); }

/* ── MOBILE OVERLAY MENU ── */
/* The full-screen mobile nav panel */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8990;
  background: rgba(5,12,23,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .35s ease;
}
.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 900px) {
  .nav-menu { display: none !important; }
  .hamburger { display: flex !important; }
  /* Hide the CTA button on mobile but KEEP lang selector */
  .nav-right .btn { display: none; }
  .nav-inner { height: 76px; }
  .nav-logo img { width: 200px; height: auto; max-width: 200px; }

  /* Keep lang-selector visible in nav-right on mobile */
  .nav-right .lang-selector { display: flex !important; }
  .nav-right {
    gap: 6px;
    order: 3;
  }

  /* Make lang-btn slightly smaller on mobile */
  .lang-btn {
    padding: 7px 12px !important;
    font-size: .68rem !important;
  }

  /* Lang dropdown on mobile: open upward or stay right */
  .lang-dropdown {
    right: 0;
    left: auto;
    top: calc(100% + 6px);
    min-width: 160px;
  }

  /* ===== FULL SCREEN MOBILE MENU ===== */
  .nav-menu.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    position: fixed !important;
    top: 76px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100dvh - 76px) !important;
    background: linear-gradient(180deg, #0a1422 0%, #0d1b2a 40%, #0a1625 100%) !important;
    padding: 0 0 60px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 9000 !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    animation: slideDown .35s cubic-bezier(.25,.46,.45,.94) both;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Gold line separator at top */
  .nav-menu.mobile-open::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    flex-shrink: 0;
  }

  /* Every nav item */
  .nav-menu.mobile-open > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.05);
    flex-shrink: 0;
  }
  .nav-menu.mobile-open > li:last-child { border-bottom: none; }

  .nav-menu.mobile-open > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 28px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,.9) !important;
    border-radius: 0 !important;
    white-space: normal !important;
    width: 100% !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
    transition: all .2s !important;
  }
  .nav-menu.mobile-open > li > a::before { display: none !important; }
  .nav-menu.mobile-open > li > a:hover,
  .nav-menu.mobile-open > li.active > a {
    color: var(--gold) !important;
    background: rgba(198,167,94,.06) !important;
    padding-left: 36px !important;
  }

  /* Dropdown arrow */
  .nav-menu.mobile-open .dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .8rem;
    color: rgba(198,167,94,.7);
    transition: transform .3s;
    flex-shrink: 0;
  }
  .nav-menu.mobile-open .dropdown.open > a::after { transform: rotate(180deg); }

  /* Sub-menu */
  .nav-menu.mobile-open .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(198,167,94,.04) !important;
    border: none !important;
    border-left: 3px solid rgba(198,167,94,.4) !important;
    border-radius: 0 !important;
    padding: 4px 0 8px 0 !important;
    box-shadow: none !important;
    min-width: unset !important;
    margin: 0 !important;
    display: none !important;
  }
  .nav-menu.mobile-open .dropdown.open .dropdown-menu { display: block !important; }
  .nav-menu.mobile-open .dropdown-menu a {
    display: block !important;
    padding: 13px 28px 13px 44px !important;
    font-size: .88rem !important;
    color: rgba(255,255,255,.72) !important;
    border-radius: 0 !important;
    transform: none !important;
  }
  .nav-menu.mobile-open .dropdown-menu a::before { display: none !important; }
  .nav-menu.mobile-open .dropdown-menu a:hover {
    color: var(--gold) !important;
    background: rgba(198,167,94,.07) !important;
    padding-left: 52px !important;
  }

  /* Remove old mobile-lang-row and mobile-cta-row if they exist (legacy cleanup) */
  .mobile-lang-row { display: none !important; }
  .mobile-cta-row { display: none !important; }
}

/* Extra small screens – tighten up navbar */
@media (max-width: 420px) {
  .nav-logo img { width: 170px; height: auto; max-width: 170px; }
  .nav-inner { height: 68px; gap: 6px; }
  .lang-btn {
    padding: 6px 9px !important;
    font-size: .62rem !important;
    gap: 4px !important;
  }
  .lang-btn i { display: none; }
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.92) 0%,
    rgba(27,38,59,.85) 50%,
    rgba(13,27,42,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,167,94,.15);
  border: 1px solid rgba(198,167,94,.4);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero h1 span { color: var(--gold); }

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(198,167,94,.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .3px;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  font-family: var(--font-head);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--navy-accent);
  padding: 40px 0;
  border-bottom: 3px solid rgba(198,167,94,.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 16px;
  border-right: 1px solid rgba(198,167,94,.15);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 24px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
}
.about-badge span { display: block; font-size: .75rem; font-weight: 600; opacity: .8; }

.about-text { padding-left: 16px; }

.about-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.about-feature:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.about-feature i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feature-text h4 {
  font-size: .9rem;
  margin-bottom: 4px;
}

.about-feature-text p {
  font-size: .8rem;
  color: var(--grey-text);
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  border-color: rgba(198,167,94,.3);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(198,167,94,.12), rgba(198,167,94,.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(198,167,94,.2);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: color var(--transition);
}

.service-card:hover .service-icon i { color: var(--navy); }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9rem;
  color: var(--grey-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-card .link-arrow {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-card:hover .link-arrow { gap: 14px; }

/* ---------- WHY CHOOSE ---------- */
.why-section { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(198,167,94,.2);
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  border: 1px solid rgba(198,167,94,.1);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(198,167,94,.08);
  border-color: rgba(198,167,94,.3);
  transform: translateX(8px);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item-icon i { color: var(--navy); font-size: 1.1rem; }

.why-item-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}
.why-item-text p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.6;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--grey-bg); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform .5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
  display: none;
}

.testimonial-card.active { display: block; }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-stars i { color: var(--gold); font-size: 1.1rem; }

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--grey-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  padding-left: 32px;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 4rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}

.testimonial-info h4 { font-size: 1rem; margin-bottom: 4px; }
.testimonial-info span {
  font-size: .85rem;
  color: var(--grey-text);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 8px;
}

.slider-arrow {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--navy);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ---------- JOBS PREVIEW ---------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  position: relative;
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(198,167,94,.3);
  transform: translateY(-4px);
}

.job-type-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-permanent { background: rgba(16,185,129,.1); color: #10B981; }
.badge-temp { background: rgba(198,167,94,.1); color: var(--gold-dark); }
.badge-contract { background: rgba(59,130,246,.1); color: #3B82F6; }

.job-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--grey-text);
}
.job-meta-item i { color: var(--gold); width: 16px; }

.job-salary {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ---------- TRAINING HIGHLIGHT ---------- */
.training-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-accent) 100%);
  position: relative;
  overflow: hidden;
}

.training-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198,167,94,.08) 0%, transparent 70%);
}

.training-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

.training-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(198,167,94,.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.training-card:hover {
  background: rgba(198,167,94,.08);
  border-color: rgba(198,167,94,.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.training-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.training-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.training-card p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.6;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230D1B2A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(13,27,42,.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FORMS ---------- */
.form-section { background: var(--grey-bg); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
}

.form-header {
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .3px;
}

.form-group label .required {
  color: var(--error);
  margin-left: 4px;
}

.form-control {
  padding: 13px 16px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--grey-dark);
  background: var(--white);
  transition: all var(--transition);
  width: 100%;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(198,167,94,.1);
}

.form-control.error { border-color: var(--error); }
.form-control.success { border-color: var(--success); }

textarea.form-control {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group .error-msg {
  font-size: .78rem;
  color: var(--error);
  display: none;
}
.form-group.has-error .error-msg { display: block; }

/* File Upload */
.file-upload-wrap {
  position: relative;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 2px dashed var(--grey-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--grey-text);
  font-size: .9rem;
}
.file-upload-label:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198,167,94,.04);
}
.file-upload-label i { color: var(--gold); font-size: 1.2rem; }

input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* GDPR Checkbox */
.gdpr-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(198,167,94,.05);
  border: 1px solid rgba(198,167,94,.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.gdpr-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.gdpr-consent-text {
  font-size: .82rem;
  color: var(--grey-text);
  line-height: 1.6;
}
.gdpr-consent-text a { color: var(--gold); text-decoration: underline; }

.recaptcha-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--grey-text);
  margin-top: 8px;
}
.recaptcha-notice i { color: var(--success); }

/* Form Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
  background: rgba(16,185,129,.05);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-lg);
}
.form-success.show { display: block; }
.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 16px;
}
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--grey-text); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-accent) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-head);
  margin-top: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: .7rem; }

/* ---------- FEATURE SECTIONS ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(198,167,94,.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(198,167,94,.15), rgba(198,167,94,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(198,167,94,.2);
}
.feature-icon i { color: var(--gold); font-size: 1.4rem; }

.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { font-size: .88rem; color: var(--grey-text); line-height: 1.7; }

/* ---------- BENEFITS SECTION ---------- */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}

.benefit-item:hover {
  border-color: rgba(198,167,94,.3);
  box-shadow: var(--shadow-sm);
}

.benefit-item i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- JOB LISTING PAGE ---------- */
.jobs-filters {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.job-listing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(198,167,94,.3);
  transform: translateY(-2px);
}

.job-listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--grey-bg);
  border-radius: 50px;
  font-size: .78rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--grey-dark);
}
.job-tag i { color: var(--gold); font-size: .8rem; }

.job-listing-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  min-width: 160px;
}

.job-schema-salary {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
  text-align: right;
}

/* ---------- CORPORATE PAGE ---------- */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.compliance-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--grey-light);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}

.compliance-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.compliance-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compliance-card h3 i { color: var(--gold); }

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--grey-text);
}
.compliance-list li i { color: var(--success); font-size: .85rem; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198,167,94,.15);
  border: 1px solid rgba(198,167,94,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--gold); font-size: 1rem; }

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item-text span {
  font-family: var(--font-head);
  font-size: .50rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item-text a,
.contact-item-text p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.contact-item-text a:hover { color: var(--gold-light); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--grey-light);
  margin-top: 32px;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-light);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--navy-accent);
}

.legal-content p {
  font-size: .95rem;
  color: var(--grey-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: .95rem;
  color: var(--grey-text);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content strong { color: var(--navy); }

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-info-box {
  background: rgba(198,167,94,.08);
  border: 1px solid rgba(198,167,94,.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-info-box p {
  margin: 0;
  font-size: .9rem;
  color: var(--navy);
}

/* ---------- COOKIE BANNER ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 20px 20px;
  z-index: 9990;
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
  /* Hidden by default via transform (not display:none, to allow CSS transition) */
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 180px;
}
.cookie-text p {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  line-height: 1.6;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  border-top: 3px solid rgba(198,167,94,.2);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand-col img {
  height: auto;
  width: 100%;
  max-width: 380px;
  margin-bottom: 20px;
  filter: brightness(1.1) drop-shadow(0 4px 16px rgba(198,167,94,.35));
  object-fit: contain;
}

.footer-brand-col p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(198,167,94,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(198,167,94,.2);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .6rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,.55);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-certifications {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-badge {
  background: rgba(198,167,94,.1);
  border: 1px solid rgba(198,167,94,.25);
  color: var(--gold);
  font-size: .7rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}
.footer-bottom a:hover { color: var(--gold); }

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- SECTION BACKGROUNDS ---------- */
.bg-navy    { background: var(--navy); }
.bg-grey    { background: var(--grey-bg); }
.bg-white   { background: var(--white); }
.bg-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-accent) 100%);
}

/* ---------- NOTIFICATION TOAST ---------- */
.toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  min-width: 320px;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-family: var(--font-head);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateX(200%);
  transition: transform .3s ease;
}
.toast.show { transform: translateX(0); }
.toast-success { background: var(--success); color: white; }
.toast-error   { background: var(--error); color: white; }
.toast i { font-size: 1.2rem; }

/* ---------- LOADING SPINNER ---------- */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,.2);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- SECTION DIVIDERS ---------- */
.wave-divider {
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; }

/* ==========================================================
   RESPONSIVE DESIGN – Mobile First approach
   ========================================================== */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .nav-inner { height: 72px; }
  .nav-menu { gap: 2px; }
  .nav-menu > li > a { padding: 8px 10px; font-size: .75rem; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .section-padding { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 560px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { max-width: 560px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .training-cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .filters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== MOBILE 768px ===== */
@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
  .section-padding-sm { padding: 40px 0; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 0 70px; }
  .hero-description { font-size: 1rem; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btns .btn { justify-content: center; }
  .trust-bar { gap: 12px; }
  .trust-item span { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }

  /* About */
  .about-text { padding-left: 0; }
  .about-features { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card { padding: 28px 20px; }

  /* Why */
  .why-item { padding: 18px; }

  /* Testimonials */
  .testimonial-card { padding: 28px 20px; }
  .testimonial-quote { font-size: 1rem; padding-left: 24px; }
  .slider-arrows { display: none; }

  /* Jobs */
  .jobs-grid { grid-template-columns: 1fr; }
  .job-listing-card { grid-template-columns: 1fr; gap: 12px; }
  .job-listing-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .job-schema-salary { text-align: left; }

  /* Training */
  .training-cards { grid-template-columns: 1fr; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .filters-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .benefits-list { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta { padding: 56px 0; }
  .final-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .final-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { padding: 48px 0 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal-links { justify-content: center; gap: 12px; }

  /* Sticky call */
  .sticky-call .call-text { display: none; }
  .sticky-call { padding: 14px 16px; }

  /* Cookie banner */
  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; font-size: .78rem; padding: 11px 14px; }

  /* Page hero */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 1.75rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 28px 24px; }

  /* Breadcrumb */
  .breadcrumb { flex-wrap: wrap; gap: 6px; font-size: .8rem; }

  /* Section title centering on mobile */
  .section-subtitle { margin-bottom: 32px; }

  /* Nav right: show language selector */
  .nav-right .lang-selector { display: block; }
}

/* ===== SMALL MOBILE 480px ===== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  .hero-content { padding: 90px 0 60px; }
  .hero-badge { font-size: .65rem; padding: 6px 14px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(198,167,94,.1); padding: 12px; }
  .stat-item:last-child, .stat-item:nth-child(even) { border-right: none; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: .75rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 16px; }

  .cookie-actions { flex-direction: column; gap: 8px; }
  .cookie-actions .btn { flex: none; width: 100%; }

  .about-badge { position: static; margin-top: 16px; right: auto; bottom: auto; }
  .about-image-wrap { overflow: visible; }

  .btn { padding: 12px 24px; font-size: .82rem; }
  .btn-lg { padding: 14px 28px; font-size: .9rem; }

  .form-card { padding: 20px 16px; }
  .footer-top { padding: 36px 0 24px; }

  .final-cta-btns .btn { max-width: 100%; }
  .page-hero { padding: 100px 0 48px; }
  .page-hero p { font-size: 1rem; }

  /* Jobs filters on very small screens */
  .jobs-filters { padding: 20px 16px; }

  /* Testimonial on very small screens */
  .testimonial-card { padding: 24px 16px; }
  .testimonial-quote { font-size: .95rem; }

  /* Why items */
  .why-item { padding: 16px; gap: 14px; }
  .why-item-icon { width: 40px; height: 40px; flex-shrink: 0; }

  /* Training cards */
  .training-card { padding: 28px 20px; }

  /* Benefit items */
  .benefit-item { padding: 14px 16px; }

  /* Job listing */
  .job-listing-actions { flex-direction: column; }
  .job-tag { font-size: .72rem; }
  .job-listing-meta { gap: 8px; }
}

/* ---------- ANIMATED COUNTERS ---------- */
.counter-wrap { overflow: hidden; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay utilities */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ---------- TOUCH DEVICES IMPROVEMENTS ---------- */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover { transform: none; }
  .why-item:hover { transform: none; }
  .feature-card:hover { transform: none; }
  .job-card:hover { transform: none; }
  .training-card:hover { transform: none; }
  .benefit-item:hover { transform: none; }
  .btn { min-height: 48px; }
  .cookie-actions .btn { min-height: 48px; }
  .slider-dot { width: 16px; height: 16px; }
}

/* ---------- OVERFLOW PROTECTION ---------- */
section, .container { max-width: 100%; }
img { max-width: 100%; height: auto; }
html, body { overflow-x: hidden; max-width: 100%; }
.page-hero h1 { word-break: break-word; overflow-wrap: break-word; }

/* ---------- iOS SAFARI FIXES ---------- */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
}

/* ---------- FORMS – prevent iOS zoom ---------- */
@media (max-width: 768px) {
  .form-control,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea { font-size: 16px !important; }
  select.form-control { -webkit-appearance: none; appearance: none; }
}

/* ---------- QUICK-CONTACT BAR RESPONSIVE ---------- */
.quick-contact-bar { flex-wrap: wrap; gap: 12px; }
@media (max-width: 768px) {
  .quick-contact-bar { flex-direction: column; gap: 8px; }
  .quick-contact-bar > * { width: 100%; justify-content: center; }
}

/* ---------- BACK TO TOP + STICKY CALL RESPONSIVE ---------- */
@media (max-width: 480px) {
  #back-to-top { bottom: 80px !important; right: 16px !important; width: 40px !important; height: 40px !important; }
  .sticky-call { bottom: 16px; right: 16px; }
}


/* ==========================================================
   SGM MOBILE OVERHAUL – Professional Responsive Fix
   ========================================================== */

/* ── GLOBAL: Prevent any horizontal scroll ── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  -webkit-overflow-scrolling: touch;
}
*, *::before, *::after { max-width: 100%; }
section { overflow-x: hidden; }

/* ── Safe area (notch / home bar) ── */
#navbar {
  padding-top: env(safe-area-inset-top, 0px);
}
#cookie-banner {
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}
.sticky-call {
  bottom: max(30px, calc(env(safe-area-inset-bottom, 0px) + 16px));
}

/* ── Smooth scroll offset for fixed navbar ── */
html { scroll-padding-top: 100px; }
@media (max-width: 900px) { html { scroll-padding-top: 82px; } }

/* ── Better tap targets & font rendering ── */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* ==========================================================
   NAVBAR – Compact but premium on mobile
   ========================================================== */
@media (max-width: 900px) {
  /* Prevent logo overflowing nav horizontally */
  .nav-logo { min-width: 0; overflow: hidden; }
  .nav-logo img { flex-shrink: 0; }

  /* Hamburger: bigger touch target */
  .hamburger {
    width: 44px; height: 44px;
    background: rgba(198,167,94,.08);
    border: 1px solid rgba(198,167,94,.2);
    border-radius: 10px;
    transition: background .2s, border-color .2s;
  }
  .hamburger:hover, .hamburger:active {
    background: rgba(198,167,94,.2);
    border-color: rgba(198,167,94,.45);
  }

  /* Lang button compact */
  .lang-btn { padding: 7px 10px !important; font-size: .68rem !important; }

  /* Slim right controls */
  .nav-right { gap: 8px; flex-shrink: 0; }

  /* Mobile menu items: bigger tap area */
  .nav-menu.mobile-open > li > a { min-height: 58px !important; }
  .nav-menu.mobile-open .dropdown-menu a { min-height: 48px !important; }
}

@media (max-width: 480px) {
  /* Show only flag emoji on tiny screens */
  .lang-current { display: none; }
  .lang-btn { padding: 7px 8px !important; gap: 2px !important; }
  .lang-btn i { display: none !important; }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 90px 0 64px; max-width: 100%; }
  .hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); margin-bottom: 14px; }
  .hero-description { font-size: .95rem; margin-bottom: 24px; line-height: 1.75; }
  .hero-badge {
    font-size: .65rem; padding: 7px 14px; letter-spacing: 1.5px;
    white-space: normal; text-align: center; justify-content: center;
  }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btns .btn { justify-content: center; width: 100%; min-height: 54px; }
  .trust-bar { gap: 8px; padding-top: 22px; }
  .trust-item i { font-size: 1.2rem; }
  /* Keep icons but hide text on narrow screens */
  .trust-item span { display: none; }
  .hero-scroll { display: none; }
  /* Disable parallax on touch */
  .hero-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-content { padding: 76px 0 52px; }
  .hero h1 { font-size: clamp(1.45rem, 7.5vw, 1.9rem); }
  .hero-description { font-size: .88rem; }
}

/* ==========================================================
   STATS BAR
   ========================================================== */
@media (max-width: 768px) {
  .stats-bar { padding: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item {
    padding: 22px 14px;
    border-right: 1px solid rgba(198,167,94,.12);
    border-bottom: 1px solid rgba(198,167,94,.12);
  }
  .stat-item:nth-child(2n)  { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)   { border-bottom: none; }
  .stat-number { font-size: 2rem; }
  .stat-label  { font-size: .72rem; letter-spacing: .4px; }
}
@media (max-width: 380px) {
  .stat-number { font-size: 1.7rem; }
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
@media (max-width: 768px) {
  .about-grid { gap: 28px; }
  .about-image-wrap { max-width: 100%; overflow: visible; }
  .about-image-wrap img { border-radius: var(--radius); width: 100%; }
  .about-badge { position: static; margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; }
  .about-text { padding-left: 0; }
  .about-features { grid-template-columns: 1fr; gap: 10px; }
  .about-feature { padding: 14px 16px; gap: 12px; }
  .about-feature-text h4 { font-size: .88rem; }
  .about-feature-text p  { font-size: .78rem; }
}

/* ==========================================================
   SERVICES GRID
   ========================================================== */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .service-card { padding: 22px 14px; }
  .service-icon { width: 54px; height: 54px; margin-bottom: 14px; }
  .service-icon i { font-size: 1.3rem; }
  .service-card h3 { font-size: .95rem; margin-bottom: 8px; }
  .service-card p  { font-size: .82rem; margin-bottom: 14px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ==========================================================
   WHY SECTION
   ========================================================== */
@media (max-width: 768px) {
  .why-grid { gap: 24px; }
  .why-list  { gap: 10px; }
  .why-item  { padding: 16px; gap: 14px; }
  .why-item:hover { transform: none; }  /* disable on touch */
  .why-item-icon { width: 42px; height: 42px; flex-shrink: 0; }
  .why-item-icon i { font-size: 1rem; }
  .why-item-text h4 { font-size: .92rem; }
  .why-item-text p  { font-size: .83rem; }
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
@media (max-width: 768px) {
  .testimonial-card { padding: 28px 20px; }
  .testimonial-quote { font-size: .94rem; padding-left: 18px; line-height: 1.75; }
  .testimonial-quote::before { font-size: 3rem; top: -4px; }
  .testimonial-avatar { width: 48px; height: 48px; font-size: 1rem; }
  .slider-controls { margin-top: 22px; }
}
@media (max-width: 480px) {
  .testimonial-card { padding: 22px 16px; }
  .testimonial-quote { font-size: .88rem; }
}

/* ==========================================================
   JOBS
   ========================================================== */
@media (max-width: 768px) {
  .jobs-grid { grid-template-columns: 1fr; gap: 14px; }
  .job-card { padding: 22px; }
  .job-card h3 { font-size: .98rem; }
  .job-meta-item { font-size: .82rem; }

  .job-listing-card {
    grid-template-columns: 1fr; gap: 14px; padding: 22px;
  }
  .job-listing-actions { align-items: stretch; flex-direction: row; flex-wrap: wrap; min-width: unset; gap: 8px; }
  .job-listing-actions .btn { flex: 1; justify-content: center; min-height: 46px; }
  .job-schema-salary { font-size: 1.1rem; text-align: left; }
}
@media (max-width: 480px) {
  .job-listing-card { padding: 18px 16px; }
  .job-listing-actions { flex-direction: column; }
  .job-listing-actions .btn { flex: none; }
  .job-tag { font-size: .72rem; }
  .jobs-filters { padding: 18px 14px; }
  .filters-grid { grid-template-columns: 1fr !important; gap: 10px; }
}

/* ==========================================================
   TRAINING
   ========================================================== */
@media (max-width: 768px) {
  .training-cards { grid-template-columns: 1fr; gap: 12px; margin: 28px 0; }
  .training-card {
    padding: 20px 18px; text-align: left;
    display: flex; align-items: flex-start; gap: 16px;
  }
  .training-card i { font-size: 1.9rem; margin-bottom: 0; flex-shrink: 0; margin-top: 2px; }
  .training-card h3 { font-size: .95rem; margin-bottom: 4px; }
  .training-card p  { font-size: .83rem; }
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
@media (max-width: 768px) {
  .final-cta { padding: 48px 0; }
  .final-cta h2 { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .final-cta p  { font-size: .94rem; margin-bottom: 24px; }
  .final-cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .final-cta-btns .btn { width: 100%; max-width: 320px; min-height: 54px; justify-content: center; }
}
@media (max-width: 480px) {
  .final-cta { padding: 38px 0; }
  .final-cta-btns .btn { max-width: 100%; }
}

/* ==========================================================
   FEATURES / COMPLIANCE / BENEFITS
   ========================================================== */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 20px 18px; display: flex; align-items: flex-start; gap: 14px; }
  .feature-icon { flex-shrink: 0; margin-bottom: 0; width: 48px; height: 48px; }
  .feature-card h3 { font-size: .95rem; margin-bottom: 6px; }
  .feature-card p  { font-size: .83rem; }

  .compliance-grid { grid-template-columns: 1fr; gap: 12px; }
  .compliance-card { padding: 20px; }
  .compliance-list li { font-size: .85rem; }

  .benefits-list { grid-template-columns: 1fr; gap: 8px; }
  .benefit-item { padding: 14px 16px; gap: 12px; }
  .benefit-item span { font-size: .85rem; }
}

/* ==========================================================
   FORMS
   ========================================================== */
@media (max-width: 768px) {
  .form-card { padding: 28px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-group.full-width { grid-column: 1; }
  .form-header { margin-bottom: 22px; }

  /* Prevent iOS auto-zoom on inputs (must be ≥16px) */
  input, select, textarea, .form-control { font-size: 16px !important; min-height: 50px; }
  textarea.form-control { min-height: 110px; }
  .form-card .btn-primary,
  .form-card .btn-navy { width: 100%; min-height: 54px; justify-content: center; }
}
@media (max-width: 480px) {
  .form-card { padding: 22px 14px; }
}

/* ==========================================================
   CONTACT
   ========================================================== */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-card { padding: 28px 20px; }
  .contact-item { padding: 14px 0; gap: 12px; }
  .contact-item-icon { width: 38px; height: 38px; flex-shrink: 0; }
  .contact-item-text a,
  .contact-item-text p { font-size: .87rem; word-break: break-word; }
}

/* ==========================================================
   PAGE HERO (inner pages)
   ========================================================== */
@media (max-width: 768px) {
  .page-hero { padding: 108px 0 54px; }
  .page-hero::after { height: 40px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6.5vw, 2rem); word-break: break-word; }
  .page-hero p { font-size: .93rem; }
  .breadcrumb { font-size: .77rem; gap: 5px; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .page-hero { padding: 90px 0 42px; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
@media (max-width: 768px) {
  .footer-top { padding: 44px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-brand-col img { max-width: 200px; }
  .footer-brand-col p { font-size: .85rem; }
  .footer-col h4 { font-size: .82rem; margin-bottom: 14px; }
  .footer-links a { font-size: .84rem; min-height: 34px; align-items: center; }
  .footer-contact-item { font-size: .84rem; }
  .footer-bottom { padding: 18px 0; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .footer-legal-links a { font-size: .77rem; }
  .footer-bottom p { font-size: .74rem; }
  .cert-badge { font-size: .65rem; }
}

/* ==========================================================
   COOKIE BANNER
   ========================================================== */
@media (max-width: 640px) {
  #cookie-banner { padding: 16px; }
  .cookie-inner { flex-direction: column; gap: 12px; align-items: stretch; }
  .cookie-text p { font-size: .8rem; line-height: 1.5; }
  .cookie-actions { width: 100%; gap: 8px; }
  .cookie-actions .btn { flex: 1; justify-content: center; min-height: 44px; font-size: .77rem; padding: 10px 10px; }
}
@media (max-width: 380px) {
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { flex: none; width: 100%; }
}

/* ==========================================================
   STICKY CALL BUTTON
   ========================================================== */
@media (max-width: 768px) {
  .sticky-call {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: 16px; padding: 14px 18px;
  }
  .sticky-call .call-text { display: none; }
  .sticky-call i { font-size: 1.25rem; }
}

/* ==========================================================
   SECTION HEADINGS
   ========================================================== */
@media (max-width: 768px) {
  .section-label { font-size: .68rem; letter-spacing: 2px; }
  .section-title { font-size: clamp(1.3rem, 5vw, 2rem) !important; margin-bottom: 10px; }
  .section-subtitle { font-size: .9rem; margin-bottom: 26px; line-height: 1.65; }
  .gold-line { width: 46px; margin: 10px 0 22px; }
  .gold-line.centered { margin: 10px auto 22px; }
}

/* ==========================================================
   BUTTONS – universal touch feel
   ========================================================== */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  .btn:active { transform: scale(0.97) !important; opacity: .9; }
  .btn-lg { min-height: 56px; padding: 15px 28px; }
  .btn-sm { min-height: 42px; }
}

/* ==========================================================
   SPACING
   ========================================================== */
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section-padding { padding: 52px 0; }
  .section-padding-sm { padding: 38px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section-padding { padding: 44px 0; }
  .section-padding-sm { padding: 30px 0; }
}
@media (max-width: 360px) {
  .container { padding: 0 12px; }
}

/* ==========================================================
   LEGAL PAGES
   ========================================================== */
@media (max-width: 768px) {
  .legal-content h2 { font-size: 1.25rem; margin: 26px 0 10px; }
  .legal-content h3 { font-size: .98rem; }
  .legal-content p,
  .legal-content ul li { font-size: .87rem; }
  .legal-info-box { padding: 14px 16px; }
}

/* ==========================================================
   MISC IMPROVEMENTS
   ========================================================== */
/* Prevent long URLs / phone numbers from breaking layout */
a[href^="tel"], a[href^="mailto"] { word-break: break-all; }

/* Toast – anchor to bottom on mobile */
@media (max-width: 600px) {
  .toast { top: auto; bottom: 80px; right: 10px; left: 10px; min-width: unset; font-size: .84rem; }
}

/* Back-to-top above sticky call */
@media (max-width: 480px) {
  #back-to-top { bottom: 80px !important; right: 14px !important; width: 40px !important; height: 40px !important; }
  .sticky-call { bottom: 16px; right: 16px; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================
   END MOBILE OVERHAUL
   ========================================================== */
