/* ============================================================
   TOP FLIGHT TECHNOLOGY — Design System
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --navy-950: #050d1a;
  --navy-900: #0b1f3a;
  --navy-800: #112845;
  --navy-700: #1a3a5c;
  --navy-600: #24476f;
  --gold-400: #f9c846;
  --gold-500: #f5a623;
  --gold-600: #e0941a;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;

  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Sora', 'Inter', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(11,31,58,.08);
  --shadow-md: 0 4px 20px rgba(11,31,58,.10);
  --shadow-lg: 0 12px 40px rgba(11,31,58,.14);
  --shadow-xl: 0 24px 64px rgba(11,31,58,.18);

  --transition: 250ms ease;
  --section-py: 5.5rem;

  /* Fixed navbar clearance — logo 38px + 2×1.1rem padding ≈ 76px desktop */
  --navbar-h: 76px;
}

/* --- 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(--slate-900);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.25);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 580px;
  line-height: 1.7;
}

/* --- Layout --- */
.section-py { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.bg-subtle  { background: var(--slate-50); }

/* ============================================================
   NAVBAR
   ============================================================ */
.glass-nav {
  background: transparent;
  backdrop-filter: blur(0);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 1.1rem 0;
}

.glass-nav.scrolled {
  background: rgba(5,13,26,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  padding: .75rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff !important;
}

.navbar-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  /* slight drop-shadow so logo pops on dark nav */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
  transition: transform var(--transition);
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.06);
}

.navbar-brand-name {
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-line1 {
  font-size: 1rem;
  color: #fff;
}

.brand-line2 {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .01em;
}

.brand-ltd {
  color: var(--gold-400);
}

/* On large screens, revert to single-line */
@media (min-width: 992px) {
  .navbar-brand-name {
    flex-direction: row;
    align-items: baseline;
    gap: .35rem;
    font-size: 1.175rem;
  }
  .brand-line1 { font-size: inherit; }
  .brand-line2 { font-size: inherit; font-weight: 800; color: #fff; letter-spacing: -.02em; }
  .brand-ltd   { color: var(--gold-400); }
}

.nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  font-size: .93rem;
  padding: .45rem .85rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-link:hover { color: #fff !important; }
.nav-link:hover::after { transform: scaleX(1); }

.btn-nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  font-weight: 700;
  padding: .5rem 1.3rem !important;
  border-radius: var(--radius-full) !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-nav-cta:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
}

.btn-nav-cta::after { display: none; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 2;
}

/* ── Track & Slides ── */
.hc-track {
  position: relative;
  min-height: 100vh;
}

.hc-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  display: flex;
  /* flex-start so content always anchors below the navbar,
     regardless of how tall the slide content is */
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hc-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* ── Slide Backgrounds ── */
.hc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hc-bg--1 {
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(245,166,35,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(11,31,58,.60)   0%, transparent 60%),
    linear-gradient(145deg, rgba(5,13,26,.82) 0%, rgba(11,31,58,.70) 100%),
    -webkit-image-set(url('../img/sliders/hero-01.webp') 1x, url('../img/sliders/hero-01.jpeg') 1x);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(245,166,35,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(11,31,58,.60)   0%, transparent 60%),
    linear-gradient(145deg, rgba(5,13,26,.82) 0%, rgba(11,31,58,.70) 100%),
    image-set(url('../img/sliders/hero-01.webp') type('image/webp'), url('../img/sliders/hero-01.jpeg') type('image/jpeg'));
}

.hc-bg--2 {
  background-image:
    radial-gradient(ellipse 70% 60% at 82% 28%, rgba(245,166,35,.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at  5% 72%, rgba(26,58,92,.55)   0%, transparent 60%),
    linear-gradient(135deg, rgba(5,13,26,.78) 0%, rgba(17,40,69,.68) 100%),
    -webkit-image-set(url('../img/sliders/hero-02.webp') 1x, url('../img/sliders/hero-02.jpeg') 1x);
  background-image:
    radial-gradient(ellipse 70% 60% at 82% 28%, rgba(245,166,35,.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at  5% 72%, rgba(26,58,92,.55)   0%, transparent 60%),
    linear-gradient(135deg, rgba(5,13,26,.78) 0%, rgba(17,40,69,.68) 100%),
    image-set(url('../img/sliders/hero-02.webp') type('image/webp'), url('../img/sliders/hero-02.jpeg') type('image/jpeg'));
}

.hc-bg--3 {
  background-image:
    radial-gradient(ellipse 65% 80% at 30% 50%, rgba(245,166,35,.12) 0%, transparent 52%),
    radial-gradient(ellipse 70% 60% at 90% 18%, rgba(11,31,58,.65)   0%, transparent 60%),
    linear-gradient(160deg, rgba(5,13,26,.80) 0%, rgba(17,40,69,.65) 100%),
    -webkit-image-set(url('../img/sliders/hero-03.webp') 1x, url('../img/sliders/hero-03.jpeg') 1x);
  background-image:
    radial-gradient(ellipse 65% 80% at 30% 50%, rgba(245,166,35,.12) 0%, transparent 52%),
    radial-gradient(ellipse 70% 60% at 90% 18%, rgba(11,31,58,.65)   0%, transparent 60%),
    linear-gradient(160deg, rgba(5,13,26,.80) 0%, rgba(17,40,69,.65) 100%),
    image-set(url('../img/sliders/hero-03.webp') type('image/webp'), url('../img/sliders/hero-03.jpeg') type('image/jpeg'));
}

/* ── Container sits above bg layers ── */
.hc-container {
  position: relative;
  z-index: 3;
  /* Clear the fixed navbar + comfortable breathing room */
  padding-top:    calc(var(--navbar-h) + 2.25rem);
  padding-bottom: 4.5rem;
  width: 100%;
}

/* ── Content entrance animation ── */
.hc-animate {
  opacity: 0;
  transform: translateY(28px);
}

.hc-slide.active.entering .hc-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* ── Navigation Arrows ── */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .95rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hc-prev { left: 1.5rem; }
.hc-next { right: 1.5rem; }

.hc-arrow:hover {
  background: rgba(245,166,35,.22);
  border-color: rgba(245,166,35,.45);
  transform: translateY(-50%) scale(1.1);
}

/* ── Dot Navigation ── */
.hc-dots {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 10;
  align-items: center;
}

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.hc-dot.active          { width: 30px; background: var(--gold-500); }
.hc-dot:not(.active):hover { background: rgba(255,255,255,.55); }

/* ── Auto-advance progress bar ── */
.hc-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  z-index: 10;
}

/* ── Slide 2 › Service Grid ── */
.hc-services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hc-svc-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  backdrop-filter: blur(10px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hc-svc-card:hover {
  background: rgba(245,166,35,.12);
  border-color: rgba(245,166,35,.3);
  transform: translateY(-4px);
}

.hc-svc-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,.15);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 1.1rem;
}

.hc-svc-card span {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  line-height: 1.35;
}

/* ── Slide 2 › Service Pills ── */
.hc-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.hc-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.hc-pill i { color: var(--gold-500); }

.hc-pill:hover {
  background: rgba(245,166,35,.14);
  border-color: rgba(245,166,35,.32);
  color: var(--gold-400);
}

/* ── Slide 3 › CTA Panel ── */
.hc-cta-panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.hc-cta-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-500);
}

.hc-cta-header i { font-size: 1.25rem; }

.hc-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.hc-cta-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.065);
}

.hc-cta-list li:last-child { border-bottom: none; }
.hc-cta-list li > i       { color: var(--gold-500); font-size: .8rem; flex-shrink: 0; }

.hc-cta-contact {
  border-top: 1px solid rgba(255,255,255,.11);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.hc-cta-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
}

.hc-cta-contact-item i { color: var(--gold-500); width: 14px; }

/* ── Slide 3 › Trust Strip ── */
.hc-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hc-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: rgba(255,255,255,.72);
}

.hc-trust-item i { color: var(--gold-500); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

.hero-subtitle {
  font-size: .97rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-full);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-hero-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,166,35,.45);
  color: var(--navy-900);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.3);
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.hero-stats-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: .85rem 1rem;
  margin-bottom: .75rem;
  transition: background var(--transition);
}

.hero-stat-item:last-child { margin-bottom: 0; }
.hero-stat-item:hover { background: rgba(255,255,255,.13); }

.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,.18);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-stat-label {
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
}

.hero-stat-desc {
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  margin-top: .1rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,.12);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.about-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-100);
}

.value-item:last-child { border-bottom: none; }

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: .95rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon,
.service-card:hover h5,
.service-card:hover p { position: relative; z-index: 1; }
.service-card:hover .service-icon { background: rgba(245,166,35,.2); color: var(--gold-400); }
.service-card:hover h5 { color: #fff; }
.service-card:hover p { color: rgba(255,255,255,.72); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,.1);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: .9rem;
  color: var(--slate-600);
  line-height: 1.65;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-600);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, var(--slate-100), var(--slate-200));
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-500);
  font-size: 2.5rem;
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.project-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.project-thumb {
  height: 200px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-600));
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 3rem;
}

.project-body { padding: 1.5rem; }

.project-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
}

.project-badge.completed { background: rgba(16,185,129,.12); color: #059669; }
.project-badge.ongoing   { background: rgba(245,166,35,.15); color: var(--gold-600); }

.project-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.project-card p {
  font-size: .88rem;
  color: var(--slate-600);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,.12);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label { font-size: .78rem; color: var(--slate-500); margin-bottom: .1rem; }
.contact-info-value { font-weight: 600; font-size: .95rem; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-control-custom {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--slate-900);
  background: var(--slate-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--navy-600);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,31,58,.08);
}

.form-control-custom::placeholder { color: var(--slate-300); }

.form-group { margin-bottom: 1.1rem; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .9rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 0;
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: .75rem;
  max-width: 280px;
}

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: .6rem; }

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-links a:hover { color: var(--gold-500); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}

.footer-contact-item i { color: var(--gold-500); width: 16px; }

.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}

.social-icon:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.4); margin: 0; }

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.back-to-top:hover { color: var(--gold-500); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,.55);
  color: #fff;
}

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

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-shell { min-height: 100vh; background: var(--slate-50); }

.sidebar {
  background: var(--navy-900);
  color: #fff;
  min-height: 100vh;
  padding: 1.5rem 1rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.72);
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: .25rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(245,166,35,.15);
  color: #fff;
}

.sidebar-link i { color: var(--gold-500); width: 18px; text-align: center; }

.stat-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

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

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }

/* ============================================================
   PHASE 2 — HERO COUNTERS
   ============================================================ */
.hero-counters {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-counter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-counter-item .counter-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
}

.hero-counter-item .counter-suffix {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-400);
  vertical-align: top;
  margin-top: .1rem;
}

.hero-counter-item .counter-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-top: .2rem;
}

/* ============================================================
   PHASE 2 — COMPANY HISTORY TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-500), var(--navy-600));
}

.timeline-item {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 3px solid var(--gold-500);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px rgba(245,166,35,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(245,166,35,.15);
}

.timeline-content {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-year {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.25);
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  margin-bottom: .6rem;
}

.timeline-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: .4rem;
}

.timeline-content p {
  font-size: .9rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PHASE 2 — SERVICE LEARN MORE LINK
   ============================================================ */
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-500);
  border: 2px solid var(--gold-500);
  border-radius: 50px;
  padding: .45rem 1.1rem;
  margin-top: 1.1rem;
  transition: background var(--transition), color var(--transition), gap var(--transition), border-color var(--transition);
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.service-learn-more:hover,
.service-card:hover .service-learn-more {
  background: var(--gold-500);
  color: #1a1a1a;
  gap: .7rem;
  border-color: var(--gold-500);
}

/* ============================================================
   PHASE 2 — GALLERY IMAGE MODE
   ============================================================ */
.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover .gallery-item-inner img { transform: scale(1.07); }

.gallery-item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── Video play button on gallery thumbnails ── */
.gallery-item-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, .88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
  pointer-events: none;
  transition: transform .25s, color .25s;
}
.gallery-item:hover .gallery-item-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  color: #fff;
}

/* ============================================================
   PHASE 2 — PROJECT CARD IMAGE THUMBNAIL
   ============================================================ */
.project-thumb-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--slate-100);
}

.project-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover .project-thumb-img img { transform: scale(1.05); }

.project-location {
  font-size: .75rem;
  color: var(--slate-500);
  font-weight: 500;
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.project-location i { color: var(--gold-500); }

/* Additional project badge colours */
.project-badge.active    { background: rgba(59,130,246,.12); color: #2563eb; }
.project-badge.planning  { background: rgba(139,92,246,.12); color: #7c3aed; }
.project-badge.on_hold   { background: rgba(245,158,11,.15); color: #b45309; }
.project-badge.cancelled { background: rgba(239,68,68,.12);  color: #dc2626; }

/* ============================================================
   PHASE 2 — GOOGLE MAPS EMBED
   ============================================================ */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}

.map-embed iframe { display: block; }

/* ============================================================
   PHASE 2 — SERVICE DETAIL PAGES
   ============================================================ */
.service-hero {
  background:
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.service-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.75;
}

.service-breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.service-breadcrumb a { color: var(--gold-400); }
.service-breadcrumb a:hover { color: var(--gold-500); }

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid rgba(245,166,35,.3);
}

.process-step-body h5 { font-weight: 700; font-size: 1rem; margin-bottom: .3rem; }
.process-step-body p  { font-size: .9rem; color: var(--slate-600); margin: 0; }

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-700);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  margin: .25rem;
}

.service-cta-card {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.service-cta-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(245,166,35,.08);
}

/* ============================================================
   DARK SECTION THEMES  (alternating navy variants)
   ============================================================ */

/* Custom properties scoped to dark sections */
.section-navy,
.section-navy-alt {
  --section-text:   #ffffff;
  --section-muted:  rgba(255,255,255,.68);
  --section-dimmed: rgba(255,255,255,.42);
  --card-bg:        rgba(255,255,255,.065);
  --card-border:    rgba(255,255,255,.11);
  --card-hover-bg:  rgba(255,255,255,.11);
  --divider:        rgba(255,255,255,.09);
}

/* Deeper variant — About, Gallery, Contact */
.section-navy {
  background: linear-gradient(180deg, var(--navy-950) 0%, #0d2341 100%);
}

/* Slightly brighter variant — Services, Projects */
.section-navy-alt {
  background: linear-gradient(180deg, #0f2745 0%, var(--navy-900) 100%);
}

/* ── Typography ── */
.section-navy .section-title,
.section-navy-alt .section-title,
.section-navy h2, .section-navy h3,
.section-navy h4, .section-navy h5,
.section-navy-alt h2, .section-navy-alt h3,
.section-navy-alt h4, .section-navy-alt h5 { color: var(--section-text); }

.section-navy .section-subtitle,
.section-navy-alt .section-subtitle { color: var(--section-muted); }

/* ── About — value items ── */
.section-navy .value-item,
.section-navy-alt .value-item { border-bottom-color: var(--divider); }

.section-navy .value-item strong,
.section-navy-alt .value-item strong { color: var(--section-text); }

.section-navy .value-item p,
.section-navy-alt .value-item p { color: var(--section-muted) !important; }

.section-navy .value-icon,
.section-navy-alt .value-icon {
  background: rgba(245,166,35,.14);
  border: 1px solid rgba(245,166,35,.22);
}

/* ── About — core-value cards ── */
.section-navy .about-card,
.section-navy-alt .about-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: none;
}
.section-navy .about-card:hover,
.section-navy-alt .about-card:hover {
  background: var(--card-hover-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,.32);
}
.section-navy .about-card h5,
.section-navy-alt .about-card h5 { color: var(--section-text); }

.section-navy .about-card p,
.section-navy-alt .about-card p { color: var(--section-muted) !important; }

/* ── Services — service cards ── */
.section-navy .service-card,
.section-navy-alt .service-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: none;
}
.section-navy .service-card:hover,
.section-navy-alt .service-card:hover {
  border-color: rgba(245,166,35,.22);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.section-navy .service-card h5,
.section-navy-alt .service-card h5 { color: var(--section-text); }

.section-navy .service-card p,
.section-navy-alt .service-card p { color: var(--section-muted); }

/* ── Gallery — filter bar ── */
.section-navy .filter-btn,
.section-navy-alt .filter-btn {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
}
.section-navy .filter-btn:hover,
.section-navy .filter-btn.active,
.section-navy-alt .filter-btn:hover,
.section-navy-alt .filter-btn.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

/* ── Projects — project cards ── */
.section-navy .project-card,
.section-navy-alt .project-card {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: none;
}
.section-navy .project-card:hover,
.section-navy-alt .project-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.38);
  border-color: rgba(245,166,35,.2);
}
.section-navy .project-card h5,
.section-navy-alt .project-card h5 { color: var(--section-text); }

.section-navy .project-card p,
.section-navy-alt .project-card p { color: var(--section-muted); }

.section-navy .project-location,
.section-navy-alt .project-location { color: var(--section-muted); }

.section-navy .project-thumb-img,
.section-navy-alt .project-thumb-img { background: rgba(255,255,255,.04); }

/* ── Contact — info items ── */
.section-navy .contact-info-label,
.section-navy-alt .contact-info-label { color: var(--section-dimmed); }

.section-navy .contact-info-value,
.section-navy-alt .contact-info-value { color: var(--section-text); }

/* Contact info icon bg already gold — keep as-is */

/* ── Contact — form card ── */
.section-navy .contact-form-card,
.section-navy-alt .contact-form-card {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.11);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.section-navy .contact-form-card h4,
.section-navy-alt .contact-form-card h4 { color: var(--section-text); }

.section-navy .form-label,
.section-navy-alt .form-label { color: rgba(255,255,255,.82); }

.section-navy .form-control-custom,
.section-navy-alt .form-control-custom {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.13);
  color: #fff;
}
.section-navy .form-control-custom:focus,
.section-navy-alt .form-control-custom:focus {
  background: rgba(255,255,255,.11);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.section-navy .form-control-custom::placeholder,
.section-navy-alt .form-control-custom::placeholder { color: rgba(255,255,255,.28); }

.section-navy .btn-submit,
.section-navy-alt .btn-submit {
  background: var(--gold-500);
  color: var(--navy-900);
}
.section-navy .btn-submit:hover,
.section-navy-alt .btn-submit:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.38);
}

/* ── Map embed on dark ── */
.section-navy .map-embed,
.section-navy-alt .map-embed {
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* ── Alert boxes on dark ── */
.section-navy .alert-success,
.section-navy-alt .alert-success {
  background: rgba(16,185,129,.13);
  border-color: rgba(16,185,129,.28);
  color: #6ee7b7;
}
.section-navy .alert-danger,
.section-navy-alt .alert-danger {
  background: rgba(239,68,68,.13);
  border-color: rgba(239,68,68,.28);
  color: #fca5a5;
}

/* ── Bare p tags that had inline slate-600 color removed ── */
.section-navy .value-item p:not([class]),
.section-navy-alt .value-item p:not([class]),
.section-navy .about-card > p:not([class]),
.section-navy-alt .about-card > p:not([class]) { color: var(--section-muted); }

/* ── Section label already gold/transparent — works on dark; tweak bg slightly ── */
.section-navy .section-label,
.section-navy-alt .section-label {
  background: rgba(245,166,35,.13);
  border-color: rgba(245,166,35,.28);
}

/* ── "Get In Touch" heading in contact left col ── */
.section-navy .section-title,
.section-navy-alt .section-title { color: var(--section-text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  :root { --section-py: 4rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .hero-counters { gap: 1rem; }
  .timeline::before { left: 22px; }
  .timeline-icon { width: 46px; height: 46px; font-size: .9rem; }
  .hc-arrow { width: 42px; height: 42px; font-size: .85rem; }
  .hc-prev { left: .75rem; }
  .hc-next { right: .75rem; }
  .hc-services-showcase { gap: .75rem; }
}

@media (max-width: 767px) {
  :root { --section-py: 3rem; }
  .hc-container { padding-top: 6rem; padding-bottom: 4.5rem; }
  .hero-title { font-size: 2rem; }
  .hero-stats-card { margin-top: 2rem; }
  .hero-counters { gap: .75rem; }
  .hc-arrow { display: none; }
  .hc-services-showcase { grid-template-columns: repeat(2, 1fr); }
  .hc-trust-strip { gap: .6rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .contact-form-card { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline-content { padding: 1.1rem 1.25rem; }
  .service-cta-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .hero-counters { display: grid; grid-template-columns: 1fr 1fr; }
  .hc-services-showcase { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .hc-svc-card { padding: 1rem .75rem; }
}
