/* ============================================
   Azaan Energy & Co. – Bulk LPG
   Multi-page · Light / Dark · Mobile-first
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ---------- Theme Variables ---------- */
:root {
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --orange: #f97316;
  --orange-bright: #fb923c;
  --orange-dim: rgba(249, 115, 22, 0.15);
  --blue: #1e3a8a;
  --blue-light: #3b82f6;

  /* Light theme (default) */
  --bg: #f8fafc;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --shadow: 0 10px 40px -12px rgba(15, 23, 42, 0.12);
  --hero-overlay: linear-gradient(160deg, #0f172a 0%, #1e3a8a 55%, #0f172a 100%);
  --card-hover-border: rgba(249, 115, 22, 0.45);
  --input-bg: #f1f5f9;
  --footer-bg: #0f172a;
  --footer-text: #94a3b8;
}

[data-theme="dark"] {
  --bg: #0a0f1a;
  --bg-alt: #0f172a;
  --bg-card: #131c2e;
  --bg-nav: rgba(10, 15, 26, 0.88);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-soft: #64748b;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.22);
  --shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
  --hero-overlay: linear-gradient(160deg, #0a0f1a 0%, #0f172a 50%, #111827 100%);
  --card-hover-border: rgba(249, 115, 22, 0.4);
  --input-bg: #0f172a;
  --footer-bg: #000000;
  --footer-text: #64748b;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.font-display { font-family: var(--font-display); }

/* ---------- Typography helpers ---------- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 0.7rem;
}

/* ---------- Navbar (centered logo) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 96px;
  gap: 1rem;
}

/* Left & right link groups */
.nav-links-left,
.nav-links-right {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links-left { justify-content: flex-end; }
.nav-links-right { justify-content: flex-start; }

.nav-links-left a,
.nav-links-right a {
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.25s;
}
.nav-links-left a:hover,
.nav-links-right a:hover,
.nav-links-left a.active,
.nav-links-right a.active {
  color: var(--orange);
}
.nav-links-left a.active::after,
.nav-links-right a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Center logo badge */
.nav-logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nav-logo-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--orange);
  box-shadow:
    0 0 0 6px var(--bg),
    0 12px 32px -8px rgba(249, 115, 22, 0.35),
    0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin-bottom: -36px;
  position: relative;
  padding: 10px;
}

.nav-logo-badge:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 6px var(--bg),
    0 16px 40px -6px rgba(249, 115, 22, 0.45),
    0 6px 16px rgba(0,0,0,0.2);
}

.nav-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Actions on far right - for mobile we keep theme + menu */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

/* On desktop, actions sit in the right column after links */
.nav-cta { display: none; }

@media (min-width: 1024px) {
  .nav-links-left,
  .nav-links-right {
    display: flex;
  }
  .menu-btn {
    display: none !important;
  }
  .nav-cta {
    display: inline-flex !important;
  }
  .nav-inner {
    grid-template-columns: 1fr auto 1fr;
  }
  .nav-right-cluster {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
  }
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.menu-btn {
  display: flex;
  width: 42px;
  height: 42px;
  border-radius: 0.7rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}
.menu-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--bg-alt);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.drawer-links a {
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.drawer-links a:hover,
.drawer-links a.active {
  background: var(--orange-dim);
  color: var(--orange);
}
.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.drawer-close:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

/* Mobile: simpler 2-col nav (logo left, actions right) */
@media (max-width: 1023px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
    height: 72px;
  }
  .nav-links-left,
  .nav-links-right {
    display: none !important;
  }
  .nav-logo-badge {
    width: 58px;
    height: 58px;
    margin-bottom: 0;
    border-width: 2px;
    padding: 6px;
    box-shadow:
      0 0 0 3px var(--bg),
      0 8px 20px -6px rgba(249, 115, 22, 0.3);
  }
  .nav-logo-center {
    justify-content: flex-start;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 25%, rgba(249, 115, 22, 0.2), transparent),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(59, 130, 246, 0.15), transparent);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #fb923c;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #fb923c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(251, 146, 60, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero h1 span {
  background: linear-gradient(135deg, #fb923c, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  color: rgba(226, 232, 240, 0.85);
  font-size: 1.1rem;
  max-width: 28rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fb923c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 0.2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual img {
  max-width: 380px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
}
.hero-float {
  position: absolute;
  bottom: -1rem;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: var(--shadow);
}
.hero-float i {
  font-size: 1.8rem;
  color: var(--orange);
  animation: flame 2s ease-in-out infinite alternate;
}
@keyframes flame {
  0% { transform: scale(1) rotate(-4deg); }
  100% { transform: scale(1.1) rotate(4deg); }
}
.hero-float-title { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-float-val { font-weight: 700; font-size: 1.1rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--orange-dim);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--bg-alt);
}

.grid-2 {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Route steps ---------- */
.route-steps {
  display: grid;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .route-steps { grid-template-columns: repeat(4, 1fr); }
  .route-steps::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.4;
    z-index: 0;
  }
}
.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

/* ---------- Cities ---------- */
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.city-tag {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border-strong);
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-textarea { resize: vertical; min-height: 110px; }

.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ---------- Contact info ---------- */
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--orange-dim);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 0.75rem; color: var(--text-soft); }
.contact-value { font-weight: 600; font-size: 1.05rem; }
.contact-value a:hover { color: var(--orange); }

/* ---------- Footer ---------- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-logo img { height: 52px; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-about { font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  color: #fb923c;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: var(--footer-text);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px -6px rgba(249, 115, 22, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -6px rgba(249, 115, 22, 0.6);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 9.5rem 0 3.5rem;
  background: var(--hero-overlay);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(249, 115, 22, 0.18), transparent);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
}
.page-header p {
  color: rgba(226, 232, 240, 0.8);
  margin-top: 0.75rem;
  max-width: 32rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 1rem;
}
.breadcrumb a { color: #fb923c; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.list-check { margin-top: 1.5rem; }
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.list-check .check {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: var(--orange-dim);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 640px) {
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-float { right: 50%; transform: translateX(50%); bottom: -2rem; }
  .section { padding: 3.5rem 0; }
}

/* ---------- Form status messages ---------- */
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-status--success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
[data-theme="dark"] .form-status--success {
  color: #34d399;
}
.form-status--error {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
[data-theme="dark"] .form-status--error {
  color: #f87171;
}
.form-status--info {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
[data-theme="dark"] .form-status--info {
  color: #60a5fa;
}

/* ---------- Theme-aware logos ---------- */
.logo-dark { display: none; }
.logo-light { display: block; }

[data-theme="dark"] .logo-dark { display: block; }
[data-theme="dark"] .logo-light { display: none; }

.nav-logo img,
.footer-logo img,
.drawer-header img,
.hero-visual img {
  height: auto;
}
.nav-logo img { height: 48px; width: auto; }
.footer-logo img { height: 52px; width: auto; }
.drawer-header img { height: 40px; width: auto; }

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img.logo-light,
.nav-logo img.logo-dark,
.footer-logo img.logo-light,
.footer-logo img.logo-dark,
.drawer-header img.logo-light,
.drawer-header img.logo-dark {
  display: none;
}
.logo-light { display: block !important; }
.logo-dark { display: none !important; }
[data-theme="dark"] .logo-light { display: none !important; }
[data-theme="dark"] .logo-dark { display: block !important; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-visual .logo-light,
.hero-visual .logo-dark {
  max-width: 380px;
  width: 100%;
}

/* ---------- Mobile drawer close button ---------- */
.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.drawer-close:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.drawer-panel {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-links a {
  font-size: 1.05rem;
  padding: 1rem 1.1rem;
}

/* ---------- Image Slider ---------- */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
}

.slider-caption h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.slider-caption p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 5;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.slider-btn:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.05);
}
.slider-btn--prev { left: 0.75rem; }
.slider-btn--next { right: 0.75rem; }

.slider-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 5;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.slider-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

/* When caption exists, push dots up */
.slider.has-captions .slider-dots {
  bottom: auto;
  top: 0.85rem;
}

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Tall featured cell on larger screens */
@media (min-width: 1024px) {
  .gallery-item.featured {
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}

/* Logo theme switch inside badge */
.nav-logo-badge .logo-light { display: block !important; }
.nav-logo-badge .logo-dark { display: none !important; }
[data-theme="dark"] .nav-logo-badge .logo-light { display: none !important; }
[data-theme="dark"] .nav-logo-badge .logo-dark { display: block !important; }

.nav-right-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}


/* ===== Navbar hard fixes ===== */
@media (min-width: 1024px) {
  button.menu-btn,
  .menu-btn {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .nav-cta {
    display: inline-flex !important;
  }
  .nav-links-left,
  .nav-links-right {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .nav-links-left,
  .nav-links-right {
    display: none !important;
  }
  .nav-cta {
    display: none !important;
  }
  .menu-btn {
    display: flex !important;
  }
}


/* =========================================================
   LAYOUT FIXES – 3-column navbar · hero slider · card spacing
   ========================================================= */

/* --- Navbar: explicit 3 zones --- */
.navbar .nav-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  min-height: 96px !important;
  gap: 0.75rem !important;
}

.nav-zone-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  min-width: 0;
}

.nav-zone-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-zone-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-width: 0;
}

.nav-zone-right .nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-zone-left a,
.nav-zone-right > nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-zone-left a:hover,
.nav-zone-right > nav a:hover,
.nav-zone-left a.active,
.nav-zone-right > nav a.active {
  color: var(--orange);
}
.nav-zone-left a.active::after,
.nav-zone-right > nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-zone-right > nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav-zone-left .desktop-only-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .nav-zone-left .desktop-only-links,
  .nav-zone-right > nav {
    display: flex !important;
  }
  .menu-btn { display: none !important; }
  .nav-cta { display: inline-flex !important; }
}

@media (max-width: 1023px) {
  .navbar .nav-inner {
    grid-template-columns: auto 1fr auto !important;
    min-height: 72px !important;
  }
  .nav-zone-left {
    display: none !important;
  }
  .nav-zone-center {
    justify-content: flex-start;
  }
  .nav-zone-right {
    justify-content: flex-end;
  }
  .nav-zone-right > nav {
    display: none !important;
  }
  .nav-logo-badge {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 0 !important;
    padding: 6px !important;
  }
}

/* Larger centered logo */
.nav-logo-badge {
  width: 108px !important;
  height: 108px !important;
  padding: 12px !important;
  margin-bottom: -32px !important;
}

/* --- Hero with side slider --- */
.hero {
  min-height: 100vh;
  padding: 9rem 0 5rem !important;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-slider {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 60px -20px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 3;
  background: #0f172a;
}

.hero-slider .slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider .slider-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider .slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider .slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.55), transparent 50%);
}

.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider .slider-btn--prev { left: 0.75rem; }
.hero-slider .slider-btn--next { right: 0.75rem; }
.hero-slider .slider-btn:hover { background: var(--orange); }

.hero-slider .slider-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}
.hero-slider .slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
}
.hero-slider .slider-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

/* Floating badge over hero image */
.hero-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 6;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 1rem;
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.hero-image-badge i {
  color: var(--orange);
  font-size: 1.5rem;
}

/* --- Fix compressed feature cards --- */
.grid-4 {
  display: grid !important;
  gap: 1.5rem !important;
  grid-template-columns: 1fr !important;
}
@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}
@media (min-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.75rem !important;
  }
}

/* Inside about grid, cards should breathe */
.grid-2 > .grid-4 {
  align-self: stretch;
}
.grid-2 > .grid-4 .card {
  padding: 1.75rem 1.5rem !important;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}
.feature-cards .card {
  padding: 1.85rem 1.6rem !important;
  min-height: 170px;
}

/* Longer sections on home */
.section {
  padding: 5.5rem 0 !important;
}
@media (min-width: 768px) {
  .section {
    padding: 6.5rem 0 !important;
  }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fb923c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* =========================================================
   CLASSIC NAVBAR – logo left, menu + actions right
   ========================================================= */
.navbar .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.25rem !important;
  min-height: 92px !important;
  height: auto !important;
  grid-template-columns: none !important;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand img {
  height: 72px !important;
  width: auto !important;
  object-fit: contain;
}
.nav-brand .logo-light { display: block !important; }
.nav-brand .logo-dark { display: none !important; }
[data-theme="dark"] .nav-brand .logo-light { display: none !important; }
[data-theme="dark"] .nav-brand .logo-dark { display: block !important; }

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.35rem;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-left: 0 !important;
}

@media (min-width: 1100px) {
  .nav-menu { display: flex !important; }
  .menu-btn { display: none !important; }
  .nav-cta { display: inline-flex !important; }
  .nav-brand img { height: 84px !important; }
}
@media (max-width: 1099px) {
  .nav-menu { display: none !important; }
  .nav-cta { display: none !important; }
  .menu-btn { display: flex !important; }
  .nav-brand img { height: 58px !important; }
  .navbar .nav-inner { min-height: 76px !important; }
}

/* Hide old center-logo leftovers if any */
.nav-zone-left,
.nav-zone-center,
.nav-zone-right,
.nav-logo-center,
.nav-links-left,
.nav-links-right {
  /* kept harmless if unused */
}

/* FAQ accordion – animated + glass */
.faq-page-wrap {
  position: relative;
  overflow: hidden;
}
.faq-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.faq-bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-float 12s ease-in-out infinite alternate;
}
.faq-bg-orbs .orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(249, 115, 22, 0.35);
  top: -60px;
  right: -40px;
  animation-delay: 0s;
}
.faq-bg-orbs .orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.3);
  bottom: 10%;
  left: -80px;
  animation-delay: -4s;
}
.faq-bg-orbs .orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(249, 115, 22, 0.2);
  top: 45%;
  right: 15%;
  animation-delay: -7s;
}
@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.08); }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: color-mix(in srgb, var(--bg-card) 82%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}
.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(249, 115, 22, 0.25);
}
.faq-item[open] {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 16px 40px -18px rgba(249, 115, 22, 0.3);
  background: color-mix(in srgb, var(--bg-card) 92%, rgba(249, 115, 22, 0.06));
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item[open] summary {
  color: var(--orange);
}

.faq-item summary .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(249, 115, 22, 0.4);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: rgba(249, 115, 22, 0.15);
  border-color: var(--orange);
}

/* Animated body open/close */
.faq-item .faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] .faq-body {
  grid-template-rows: 1fr;
}
.faq-item .faq-body-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item .faq-body-inner > div {
  padding: 0 1.4rem 1.35rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.faq-item[open] .faq-body-inner > div {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback if color-mix unsupported */
@supports not (background: color-mix(in srgb, white 50%, black)) {
  .faq-item {
    background: var(--bg-card);
  }
}


/* Safety checklist */
.safety-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .safety-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Larger navbar logo */
.nav-brand img {
  height: 80px !important;
  width: auto !important;
  max-height: 80px;
}
@media (min-width: 1100px) {
  .nav-brand img { height: 92px !important; max-height: 92px; }
  .navbar .nav-inner { min-height: 100px !important; }
}
@media (max-width: 1099px) {
  .nav-brand img { height: 60px !important; max-height: 60px; }
}

/* ---------- Quote success modal ---------- */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.quote-modal.open {
  opacity: 1;
  visibility: visible;
}
.quote-modal[hidden] {
  display: none !important;
}
.quote-modal.open[hidden] {
  display: flex !important;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}
.quote-modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 25px 60px -20px rgba(0,0,0,0.45);
  transform: translateY(12px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-modal.open .quote-modal-card {
  transform: translateY(0) scale(1);
}
.quote-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
}
.quote-modal-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.quote-modal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.quote-modal-card .btn {
  min-width: 120px;
}


/* =========================================================
   CLEAN STRAIGHT NAVBAR (final override)
   Logo left · links in a straight line · actions right
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar .container.nav-inner,
.navbar .nav-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  min-height: 72px !important;
  height: 72px !important;
  grid-template-columns: none !important;
}

.nav-brand {
  display: flex !important;
  align-items: center;
  flex-shrink: 0;
  margin: 0 !important;
}
.nav-brand img {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain;
}
.nav-brand .logo-light { display: block !important; }
.nav-brand .logo-dark { display: none !important; }
[data-theme="dark"] .nav-brand .logo-light { display: none !important; }
[data-theme="dark"] .nav-brand .logo-dark { display: block !important; }

.nav-menu {
  display: none;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.15rem 1.1rem !important;
  flex: 1 1 auto;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.nav-menu a {
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0.35rem 0 !important;
  position: relative;
  line-height: 1.2;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.navbar .nav-actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-shrink: 0;
  margin: 0 !important;
}

/* Desktop: show full menu in one line */
@media (min-width: 1100px) {
  .navbar .nav-inner {
    height: 78px !important;
    min-height: 78px !important;
  }
  .nav-brand img {
    height: 58px !important;
    max-height: 58px !important;
  }
  .nav-menu {
    display: flex !important;
  }
  .menu-btn {
    display: none !important;
  }
  .nav-cta {
    display: inline-flex !important;
  }
}

/* Tablet / mobile: hamburger only */
@media (max-width: 1099px) {
  .nav-menu {
    display: none !important;
  }
  .nav-cta {
    display: none !important;
  }
  .menu-btn {
    display: flex !important;
  }
  .nav-brand img {
    height: 46px !important;
    max-height: 46px !important;
  }
  .navbar .nav-inner {
    height: 64px !important;
    min-height: 64px !important;
  }
}

/* Kill leftover center-logo / zone layouts */
.nav-zone-left,
.nav-zone-center,
.nav-zone-right,
.nav-logo-center,
.nav-logo-badge,
.nav-links-left,
.nav-links-right {
  display: none !important;
}
.nav-brand {
  display: flex !important;
}


/* Logo: transparent color on light, white on dark backgrounds */
.logo-light { display: block !important; }
.logo-dark { display: none !important; }
[data-theme="dark"] .logo-light { display: none !important; }
[data-theme="dark"] .logo-dark { display: block !important; }

/* On dark page sections (hero, page-header) force white logo if navbar is over dark area —
   navbar itself already switches with theme. Footer on dark theme uses white logo. */
.footer .logo-light { display: block !important; }
.footer .logo-dark { display: none !important; }
[data-theme="dark"] .footer .logo-light { display: none !important; }
[data-theme="dark"] .footer .logo-dark { display: block !important; }

.nav-brand img,
.footer-logo img {
  background: transparent !important;
  mix-blend-mode: normal;
}

/* ---------- Photo grid (operations images) ---------- */
.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}
.photo-item {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
}
.photo-item.featured {
  grid-column: span 1;
}
@media (min-width: 1024px) {
  .photo-item.featured {
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-item:hover img {
  transform: scale(1.05);
}
.photo-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}
