/* ==========================================================================
   MEILLEUR SERVICES — PREMIUM NAVY BLUE & GOLDEN YELLOW DESIGN SYSTEM
   Refined Typography · Compact Navigation · Elegant Micro-Animations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Navy Blue & Yellow Color Palette */
  --navy-darkest: #03101f;
  --navy-primary: #0a192f;
  --navy-surface: #0d2349;
  --navy-card: #112240;
  --navy-light: #1a3a6e;

  --yellow-primary: #f5a623;
  --yellow-bright: #ffc107;
  --yellow-glow: #ffe066;
  --yellow-dark: #c98a00;
  --yellow-accent: #e8960e;

  --light-bg: #f5f7fa;
  --light-surface: #ffffff;
  --border-color: #e2e8f0;

  --text-dark: #0f172a;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #ffffff;

  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --shadow-xs: 0 1px 4px rgba(10, 25, 47, 0.06);
  --shadow-sm: 0 4px 12px rgba(10, 25, 47, 0.07);
  --shadow-md: 0 10px 28px rgba(10, 25, 47, 0.11);
  --shadow-lg: 0 20px 45px rgba(10, 25, 47, 0.16);
  --shadow-glow: 0 0 28px rgba(245, 166, 35, 0.3);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s ease;

  /* Typography Scale */
  --text-xs: 0.78rem;
  --text-sm: 0.88rem;
  --text-base: 0.98rem;
  --text-md: 1.05rem;
  --text-lg: 1.18rem;
  --text-xl: 1.32rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.2rem;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--light-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy-primary);
  letter-spacing: -0.4px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-yellow {
  color: var(--yellow-primary) !important;
}

.text-navy {
  color: var(--navy-primary) !important;
}

.bg-light {
  background-color: var(--light-bg);
}

.bg-navy {
  background-color: var(--navy-primary);
  color: var(--text-light);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-title span.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--navy-surface);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(245, 166, 35, 0.35);
}

.section-title h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy-primary);
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-bright));
  color: var(--navy-darkest);
  box-shadow: 0 5px 18px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5);
  color: var(--navy-darkest);
}

.btn-secondary {
  background: var(--navy-surface);
  color: var(--yellow-primary);
  border-color: rgba(245, 166, 35, 0.25);
}

.btn-secondary:hover {
  background: var(--navy-primary);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--yellow-primary);
}

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

.btn-outline:hover {
  background: var(--navy-primary);
  color: var(--yellow-primary);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: var(--text-xs);
}

/* ==========================================================================
   TOPBAR — thin, refined information bar
   ========================================================================== */

.topbar {
  background: var(--navy-darkest);
  color: #c9d4e4;
  font-size: var(--text-xs);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b0bfcf;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: var(--transition-fast);
}

.topbar-info a i {
  color: var(--yellow-primary);
  font-size: 0.78rem;
}

.topbar-info a:hover {
  color: var(--yellow-primary);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9d4e4;
  font-size: 0.7rem;
  transition: var(--transition-fast);
}

.topbar-social a:hover {
  background: var(--yellow-primary);
  color: var(--navy-darkest);
  transform: translateY(-2px);
}

/* ==========================================================================
   MAIN NAVIGATION HEADER — compact, refined
   ========================================================================== */

.main-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  /* fixed compact height */
}

/* --- Brand Logo --- */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-logo .logo-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--navy-primary), var(--navy-surface));
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(10, 25, 47, 0.25);
  border: 1.5px solid rgba(245, 166, 35, 0.5);
  flex-shrink: 0;
}

.brand-logo .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo .brand-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-primary);
  letter-spacing: -0.3px;
}

.brand-logo .brand-title .cleangun {
  color: var(--yellow-dark);
}

.brand-logo .brand-title .drshield {
  color: var(--navy-light);
}

.brand-logo .brand-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* --- Navigation Menu --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  /* tight gap — looks refined */
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: #334155;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  transition: all 0.2s ease;
  letter-spacing: 0.1px;
  position: relative;
}

.nav-link i.fa-chevron-down {
  font-size: 0.62rem;
  margin-top: 1px;
  transition: transform 0.22s ease;
  color: #64748b;
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
  color: var(--navy-primary);
}

/* Subtle animated bottom bar */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--yellow-primary);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--navy-primary);
  background: rgba(10, 25, 47, 0.03);
}

.nav-link:hover::after {
  left: 14px;
  right: 14px;
  opacity: 0.4;
}

.nav-item.active .nav-link {
  color: var(--navy-primary);
  font-weight: 700;
  background: rgba(245, 166, 35, 0.08);
}

.nav-item.active .nav-link::after {
  left: 10px;
  right: 10px;
  opacity: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-primary), var(--yellow-bright));
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.45);
}

/* --- Dropdown Menu (polished) --- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  /* flush to nav-item bottom — no gap */
  left: 0;
  min-width: 230px;
  background: var(--navy-primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px 0 10px;
  /* visual spacing inside */
  padding-top: 10px;
  /* the inner top padding gives visual breathing room */
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 200;
  border-top: 2px solid var(--yellow-primary);
  pointer-events: none;
}

/* bridge pseudo-element: fills any sub-pixel gap so hover never breaks */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.dropdown-item {
  display: block;
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #cdd8e8;
  border-left: 2px solid transparent;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(245, 166, 35, 0.12);
  color: var(--yellow-primary);
  border-left-color: var(--yellow-primary);
  padding-left: 22px;
}

/* --- CTA Button in Nav --- */
.nav-menu .btn-sm {
  margin-left: 10px;
  padding: 7px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
}

/* --- Mobile Toggle --- */
.mobile-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--navy-primary);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--light-bg);
}

/* ==========================================================================
   HERO BANNER — Premium Centered Layout
   ========================================================================== */

.hero-section {
  position: relative;
  background: url('../assets/images/meilleur_hero_bg.png') center center / cover no-repeat;
  color: #fff;
  padding: 60px 0 70px;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

/* Dark overlay — heavier left, fades right */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(3, 16, 31, 0.94) 0%,
      rgba(10, 25, 47, 0.85) 45%,
      rgba(10, 25, 47, 0.50) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Two-column hero: logo left | content right */
.hero-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Left column: logo */
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 230px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(245, 166, 35, 0.4));
  transition: transform 0.4s ease;
}

.hero-logo img:hover {
  transform: scale(1.04);
}

/* Right column: content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Eyebrow badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--yellow-primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}

/* Main headline */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title .yellow-glow {
  color: var(--yellow-primary);
  text-shadow: 0 0 28px rgba(245, 166, 35, 0.45);
}

/* Gold divider line */
.hero-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-primary), var(--yellow-bright));
  border-radius: 2px;
  margin: 0 0 20px;
}

/* Sub paragraph */
.hero-sub {
  font-size: var(--text-md);
  color: rgba(175, 192, 214, 0.9);
  line-height: 1.8;
  max-width: 660px;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

/* Inline stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--yellow-primary);
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.stat-plus {
  font-size: 1.1rem;
  color: var(--yellow-bright);
}

.stat-label {
  font-size: 0.7rem;
  color: #8da4bf;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-top: 4px;
  white-space: nowrap;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* CTA buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Glassmorphic Floating Card */
.glass-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(12, 33, 70, 0.88);
  backdrop-filter: blur(14px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: #fff;
}

.glass-floating-card i {
  font-size: 1.8rem;
  color: var(--yellow-primary);
}

.glass-floating-card .title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.glass-floating-card .desc {
  font-size: var(--text-xs);
  color: #8da4bf;
}

/* ==========================================================================
   FEATURE STRIP (Badge Row)
   ========================================================================== */

.badge-strip {
  background: var(--light-surface);
  margin-top: -45px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  border-top: 4px solid var(--yellow-primary);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(245, 166, 35, 0.1);
  color: var(--navy-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.badge-text h4 {
  font-size: var(--text-base);
  margin-bottom: 2px;
  color: var(--navy-primary);
  font-weight: 700;
}

.badge-text p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SPECTRUM GRID (Pure HTML/CSS)
   ========================================================================== */

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}

.spectrum-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spectrum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow-primary);
  transition: var(--transition);
}

.spectrum-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.4);
}

.spectrum-card:hover::before {
  width: 6px;
}

.spectrum-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.spectrum-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-primary);
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.spectrum-title h3 {
  font-size: var(--text-xl);
  color: var(--navy-primary);
  font-weight: 700;
}

.spectrum-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.spectrum-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text-body);
}

.spectrum-list li i {
  color: var(--yellow-dark);
  font-size: 0.78rem;
}

/* ==========================================================================
   DEPARTMENT ESCALATION MATRIX (Pure HTML/CSS)
   ========================================================================== */

.escalation-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.escalation-card {
  background: var(--navy-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border-top: 3px solid var(--yellow-primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.escalation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.escalation-level {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(245, 166, 35, 0.18);
  color: var(--yellow-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(245, 166, 35, 0.35);
}

.escalation-role {
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}

.escalation-dept {
  font-size: var(--text-sm);
  color: #8da4bf;
  margin-bottom: 16px;
  line-height: 1.5;
}

.escalation-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 14px;
  font-size: var(--text-sm);
}

.escalation-contact-info a {
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition-fast);
}

.escalation-contact-info a:hover {
  color: #fff;
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow-primary);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 166, 35, 0.4);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy-primary);
  color: var(--yellow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--yellow-primary);
  color: var(--navy-darkest);
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 10px;
  color: var(--navy-primary);
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--yellow-dark);
}

/* ==========================================================================
   STATS COUNTERS & ABOUT SECTION
   ========================================================================== */

.about-section {
  background: var(--light-surface);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat-box {
  background: var(--light-bg);
  padding: 20px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  border-top: 3px solid var(--yellow-primary);
  box-shadow: var(--shadow-xs);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   BLOG GRID & ARTICLES
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}

.blog-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  /* required for .blog-category absolute badge */
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Blog thumbnail image wrapper */
.blog-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--navy-surface);
  /* fallback if image fails */
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-thumbnail img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow-primary);
  color: var(--navy-darkest);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-title {
  font-size: var(--text-lg);
  margin-bottom: 10px;
  line-height: 1.45;
  color: var(--navy-primary);
  font-weight: 700;
}

.blog-title a:hover {
  color: var(--yellow-dark);
}

.blog-summary {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER — Navy Mega Footer
   ========================================================================== */

footer {
  background: var(--navy-darkest);
  color: #8da4bf;
  padding-top: 70px;
  font-size: var(--text-sm);
  border-top: 4px solid var(--yellow-primary);
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.footer-widget h3 {
  color: #e8eef6;
  font-size: var(--text-md);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--yellow-primary);
}

.footer-about p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #8da4bf;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-sm);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--yellow-primary);
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: var(--text-sm);
}

.footer-contact i {
  color: var(--yellow-primary);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  font-size: var(--text-xs);
  color: #5e7693;
}

.footer-bottom a {
  color: var(--yellow-primary);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */

.floating-actions {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.call {
  background: var(--yellow-primary);
  color: var(--navy-darkest);
}

.floating-btn:hover {
  transform: scale(1.12) rotate(8deg);
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-primary);
  color: var(--yellow-primary);
  border: 2px solid rgba(245, 166, 35, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(10, 25, 47, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.back-to-top:hover {
  background: var(--yellow-primary);
  color: var(--navy-darkest);
  transform: translateX(-50%) translateY(-3px);
  border-color: var(--yellow-primary);
}

/* ==========================================================================
   PAGE HERO BANNER (inner pages — correct navy variables)
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-primary) 55%, var(--navy-surface) 100%);
  color: #fff;
  padding: 55px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow-primary);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #fff;
  margin: 10px 0 10px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.page-hero .hero-desc {
  color: #8da4bf;
  max-width: 580px;
  font-size: var(--text-md);
  line-height: 1.65;
  margin: 0;
}

/* --- Breadcrumb Navigation --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.18s ease;
  padding: 0 2px;
}

.breadcrumb a:hover {
  color: var(--yellow-primary);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 6px;
  font-size: 0.65rem;
  user-select: none;
}

.breadcrumb-current {
  color: var(--yellow-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 2px;
}

/* ==========================================================================
   RESPONSIVE — MOBILE NAVIGATION
   ========================================================================== */

@media (max-width: 1060px) {
  .nav-menu {
    position: fixed;
    top: 62px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 62px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
    gap: 2px;
    transition: 0.35s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 10px 14px;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-item.active .nav-link {
    border-left: 3.5px solid var(--yellow-primary);
    background: rgba(245, 166, 35, 0.12);
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(245, 166, 35, 0.3);
    border-top: none;
    width: 100%;
    margin-left: 12px;
    padding: 4px 0;
    display: none;
    pointer-events: all;
    background: rgba(10, 25, 47, 0.04);
    border-radius: 0;
  }

  .nav-item.active-mobile .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    color: var(--navy-primary);
  }

  .nav-menu .btn-sm {
    margin: 10px 0 0;
    width: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    padding: 14px 16px;
    gap: 0;
  }

  .hero-stat {
    padding: 0 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 15px;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-stats {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .hero-stat-sep {
    display: none;
  }

  .hero-stat {
    width: 50%;
    padding: 6px 0;
  }

  .section-title h2 {
    font-size: var(--text-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topbar-info {
    display: none;
  }

  .badge-strip {
    grid-template-columns: 1fr;
  }
}