/* ============================================================
   918LandNHaul – Main Stylesheet
   Color palette: Blue #0A4D8C | Black #000000
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:       #0A4D8C;
  --primary-dark:  #073a6d;
  --primary-light: #1E88E5;
  --primary-glow:  rgba(10, 77, 140, 0.4);
  --accent:        #64b5f6;
  --black:         #000000;
  --dark:          #0d0d0d;
  --dark-2:        #111111;
  --white:         #ffffff;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-400:      #9ca3af;
  --gray-600:      #4b5563;
  --success:       #10b981;
  --warning:       #f59e0b;
  --danger:        #ef4444;
  --r-sm:          4px;
  --r:             8px;
  --r-lg:          16px;
  --r-xl:          24px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.12);
  --shadow:        0 4px 12px rgba(0,0,0,.15);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.25);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.35);
  --ease:          all 0.3s ease;
  --ease-fast:     all 0.15s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body  { font-family: 'Poppins', sans-serif; color: #1a1a1a; background: var(--white); line-height: 1.65; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; transition: var(--ease); }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea { resize: vertical; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
.text-primary { color: var(--primary); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section     { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .subtitle {
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: .875rem; }
.section-header p  { color: var(--gray-600); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm  { padding: .5rem 1.2rem; font-size: .875rem; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.navbar:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 100%);
}
.navbar.scrolled {
  background: rgba(5, 30, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  padding: .75rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}
.nav-logo-icon {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo-icon span { color: var(--accent); }
.nav-logo-text   { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name   { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.nav-logo-tagline{ font-size: .62rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: .6rem 1.4rem;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid var(--primary);
}
.nav-cta:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
}
.nav-overlay.active { display: block; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /*
    Add a real photo:
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
  */
  background: linear-gradient(145deg, #000000 0%, #0a1628 40%, #0A4D8C 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(30,136,229,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(10,77,140,.25) 0%, transparent 50%);
  z-index: 1;
}
/* When a real hero image is added, use this overlay instead:
.hero::before {
  background: linear-gradient(135deg,rgba(0,0,0,.85) 0%,rgba(10,77,140,.65) 100%);
}
*/
.hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(100,181,246,.12);
  border: 1px solid rgba(100,181,246,.3);
  color: var(--accent);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .3rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Services Grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary));
  transition: height .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,77,140,.25);
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px var(--primary-glow);
}
.service-card h3 { margin-bottom: .65rem; }
.service-card p  { color: var(--gray-600); margin-bottom: 1.5rem; font-size: .95rem; line-height: 1.65; }

/* ── Gallery Grid ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,77,140,.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--ease);
}
.gallery-item-overlay span { color: white; font-size: 2rem; }
.gallery-item:hover img                { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--ease);
  background: none; border: none;
}
.lightbox-close:hover { color: #ef4444; transform: rotate(90deg) scale(1.1); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: white; font-size: 1.8rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--primary); border-color: var(--primary); }

/* ── Quote Form ────────────────────────────────────────────── */
.form-section {
  background: linear-gradient(145deg, #000000 0%, #040d1a 40%, #0d1f3c 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,77,140,.3) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.form-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  max-width: 720px;
  margin: 0 auto;
}
.form-title    { color: var(--white); text-align: center; margin-bottom: .5rem; }
.form-subtitle { color: rgba(255,255,255,.55); text-align: center; margin-bottom: 2rem; font-size: .95rem; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group    { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: .45rem;
}
.form-control {
  width: 100%;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  color: var(--white);
  font-size: .97rem;
  font-family: inherit;
  transition: var(--ease);
}
.form-control::placeholder { color: rgba(255,255,255,.28); }
.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(30,136,229,.2);
}
.form-control.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
select.form-control option { background: #0d1f3c; color: var(--white); }
.error-msg { color: #fca5a5; font-size: .78rem; margin-top: .3rem; display: block; }
.honeypot  { display: none !important; visibility: hidden; }
.form-submit { text-align: center; margin-top: 1.75rem; }
.form-submit .btn { min-width: 220px; }
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--r);
  margin-bottom: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}
.alert-success {
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  color: #6ee7b7;
}
.alert-danger {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem; right: 1.25rem;
  font-size: 5rem;
  color: var(--primary);
  opacity: .08;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.stars          { color: #f59e0b; font-size: 1rem; margin-bottom: .875rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: .97rem;
}
.testimonial-author  { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar  {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.testimonial-name     { font-weight: 600; color: var(--dark); font-size: .9rem; }
.testimonial-location { color: var(--gray-400); font-size: .78rem; }

/* ── About Grid ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--primary);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-number { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-text   { font-size: .72rem; opacity: .85; text-transform: uppercase; letter-spacing: 1px; margin-top: .2rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  margin-top: 1.75rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: var(--r);
  transition: var(--ease);
}
.about-feature:hover { background: var(--gray-200); }
.about-feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  flex-shrink: 0;
}
.about-feature-text h4 { font-size: .85rem; color: var(--dark); margin-bottom: .15rem; }
.about-feature-text p  { font-size: .78rem; color: var(--gray-600); }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -250px; left: -100px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -175px; right: -50px;
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.8); margin-bottom: 2.25rem; font-size: 1.05rem; }
.cta-buttons    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Services Page ─────────────────────────────────────────── */
.service-detail-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
  transition: var(--ease);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,77,140,.3);
}
.service-detail-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px var(--primary-glow);
}
.service-detail-body h3      { margin-bottom: .75rem; font-size: 1.4rem; }
.service-detail-body p       { color: var(--gray-600); margin-bottom: 1.35rem; line-height: 1.75; }
.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.service-features-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--gray-600);
}
.service-features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
}

/* ── Page Hero (generic) ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #000000 0%, #06142a 50%, #0A4D8C 100%);
  padding: 9rem 0 5.5rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,.12) 0%, transparent 70%);
  top: -250px; right: -100px;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; position: relative; z-index: 1; }
.page-hero .breadcrumb { margin-bottom: 1.25rem; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb a       { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: white; }

/* ── Gallery Page ──────────────────────────────────────────── */
.gallery-empty       { text-align: center; padding: 5rem 2rem; color: var(--gray-400); }
.gallery-empty-icon  { font-size: 4rem; margin-bottom: 1rem; }
.gallery-empty h3    { font-size: 1.3rem; margin-bottom: .5rem; color: var(--gray-600); }
.gallery-empty p     { color: var(--gray-400); }

/* Gallery category label (top-left badge on image) */
.gallery-item-cat {
  position: absolute;
  top: .6rem; left: .6rem;
  background: rgba(10,77,140,.85);
  backdrop-filter: blur(4px);
  color: white;
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 50px;
  pointer-events: none;
  z-index: 1;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-cat { opacity: 0; }

/* ── Filter Tabs (Gallery page) ────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
  font-family: inherit;
  line-height: 1;
}
.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(0,0,0,.15);
}
.filter-tab.active .filter-count { background: rgba(255,255,255,.25); }

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
.fade-in-delay-5 { transition-delay: .5s; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #000000;
  color: rgba(255,255,255,.65);
  padding: 4.5rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  margin-top: .875rem;
  font-size: .88rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-heading {
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--primary);
}
.footer-links li { margin-bottom: .55rem; }
.footer-links a  { color: rgba(255,255,255,.55); font-size: .88rem; transition: var(--ease); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .88rem;
}
.footer-contact-icon { color: var(--primary-light); flex-shrink: 0; margin-top: 1px; }
.social-links { display: flex; gap: .625rem; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--ease);
  font-size: 1rem;
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ── Logo Image ────────────────────────────────────────────── */
.nav-logo-img {
  height: 58px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: auto;
  max-height: 120px;
  max-width: 220px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid  { gap: 2.5rem; }
}

@media (max-width: 900px) {
  .about-grid          { grid-template-columns: 1fr; }
  .about-badge         { bottom: 1rem; right: 1rem; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-features-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 285px; height: 100vh;
    background: #060e1c;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem;
    transition: right .3s ease;
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,.08);
  }
  .nav-menu.active { right: 0; }
  .nav-link        { font-size: 1.1rem; }
  .nav-toggle      { display: flex; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .hero-buttons    { flex-direction: column; align-items: flex-start; }
  .about-features  { grid-template-columns: 1fr; }
  .lightbox-prev   { left: -2rem; }
  .lightbox-next   { right: -2rem; }
}

@media (max-width: 480px) {
  .section    { padding: 3.5rem 0; }
  .btn        { padding: .75rem 1.5rem; }
  .btn-lg     { padding: .875rem 1.75rem; font-size: .97rem; }
  .gallery-grid        { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .services-grid       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .form-card           { padding: 1.75rem 1.25rem; }
  .service-detail-card { padding: 1.5rem; }
  .lightbox-prev,
  .lightbox-next       { display: none; }
}

@media (max-width: 380px) {
  .hero-stats { gap: 1.5rem; }
  .hero-stat-number { font-size: 1.6rem; }
}
