/* ==============================================================================
   AKINCI OTO KURTARMA — LUXURY AUTOMOTIVE STYLESHEET v2
   Professional. Refined. Photography-First. Mobile-Perfect.
   ============================================================================== */

:root {
  --bg-deep: #080A0D;
  --bg-surface: #0F1217;
  --bg-elevated: #161B23;
  --bg-subtle: #1C2230;
  --border-hairline: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.14);
  --text-primary: #F0F0F2;
  --text-secondary: #9A9AA8;
  --text-muted: #5E5E72;
  --accent-gold: #C9A227;
  --accent-gold-light: #E8B84B;
  --accent-gold-dark: #A8831A;
  --accent-gold-glow: rgba(201, 162, 39, 0.12);
  --accent-crimson: #C0392B;
  --accent-whatsapp: #25D366;
  --accent-whatsapp-dark: #1DBE5A;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Arial Black", sans-serif;
  --container-max: 1240px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --transition: all 0.22s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* -------------------------------------------------------------------------- */
/* TYPOGRAPHY */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #FFFFFF;
}

/* Hero — biggest but not overwhelming */
.headline-hero {
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Section titles — tasteful and tight */
.headline-section {
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold-light);
  margin-bottom: 0.6rem;
  font-family: var(--font-sans);
}

/* -------------------------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-spacing {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section-spacing {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* -------------------------------------------------------------------------- */
/* BUTTONS */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: #0A0C10;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F0C840 0%, var(--accent-gold-light) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.4);
  color: #0A0C10;
}

.btn-whatsapp {
  background: var(--accent-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--accent-whatsapp-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.btn-ghost {
  background: transparent;
  color: var(--accent-gold-light);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.btn-ghost:hover {
  background: var(--accent-gold-glow);
  color: var(--accent-gold-light);
}

.btn-lg {
  padding: 0.9rem 1.9rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
}

/* -------------------------------------------------------------------------- */
/* HEADER & NAVIGATION */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 13, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-hairline);
  height: 68px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .site-header {
    height: 56px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-logo:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 195px;
  display: block;
}

@media (max-width: 640px) {
  .brand-logo-img {
    height: 36px;
    max-width: 165px;
  }
}

.nav-desktop {
  flex: 1;
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.header-cta-group {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-cta-group { display: flex; }
}

.header-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mobile-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  color: #FFFFFF;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu-trigger:hover {
  background: var(--bg-elevated);
  border-color: var(--border-medium);
}

@media (min-width: 1024px) {
  .mobile-menu-trigger { display: none; }
}

/* -------------------------------------------------------------------------- */
/* MOBILE NAVIGATION — Slide-in Panel (not fullscreen takeover) */
/* -------------------------------------------------------------------------- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #0B0E14;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  border-left: 1px solid var(--border-hairline);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

/* Backdrop */
.mobile-nav-overlay::before {
  display: none;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(2px);
}

.mobile-nav-backdrop.show {
  display: block;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-hairline);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  color: #FFFFFF;
  background: var(--bg-subtle);
}

.mobile-nav-menu {
  list-style: none;
  padding: 0.75rem 0;
  flex: 1;
}

.mobile-nav-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.mobile-nav-menu li a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--accent-gold);
  padding-left: 1.75rem;
}

.mobile-nav-menu li a .num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  min-width: 20px;
}

.mobile-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* -------------------------------------------------------------------------- */
/* MOBILE STICKY BOTTOM BAR */
/* -------------------------------------------------------------------------- */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  background: rgba(11, 14, 20, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-medium);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

@media (min-width: 1024px) {
  .mobile-action-bar { display: none; }
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-action-btn.call {
  background: var(--bg-subtle);
  color: #FFFFFF;
  border: 1px solid var(--border-medium);
}

.mobile-action-btn.whatsapp {
  background: var(--accent-whatsapp);
  color: #FFFFFF;
}

/* -------------------------------------------------------------------------- */
/* HERO SECTION — Full-bleed photography, Mobile-first Emergency Layout */
/* -------------------------------------------------------------------------- */
.hero-editorial {
  position: relative;
  min-height: calc(100vh - 56px);
  min-height: calc(100dvh - 56px);
  min-height: calc(100svh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-editorial {
    min-height: 90vh;
    justify-content: center;
    padding-bottom: 0;
  }
}

/* Hero Multi-image Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .hero-slide img {
    object-position: center center;
  }
}

/* Mobile overlay: deep bottom gradient for crystal clear thumb buttons */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(0deg,
      rgba(8, 10, 13, 0.98) 0%,
      rgba(8, 10, 13, 0.88) 38%,
      rgba(8, 10, 13, 0.40) 65%,
      rgba(8, 10, 13, 0.05) 100%);
}

@media (min-width: 1024px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, 
        rgba(8, 10, 13, 0.97) 0%, 
        rgba(8, 10, 13, 0.84) 42%, 
        rgba(8, 10, 13, 0.20) 70%, 
        rgba(8, 10, 13, 0.03) 100%),
      linear-gradient(0deg, rgba(8, 10, 13, 0.5) 0%, transparent 35%);
  }
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(480px, 620px);
    gap: 2rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}


/* Emergency badge — pulses red on mobile */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .hero-badge {
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #22c55e; /* green = available now */
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse-available 1.8s ease-in-out infinite;
}

@keyframes pulse-available {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  margin-bottom: 0.45rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(1.45rem, 5.5vw, 1.8rem);
    line-height: 1.15;
  }
}

@media (min-width: 768px) {
  .hero-title {
    margin-bottom: 1rem;
  }
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 0.92rem;
  color: rgba(240, 240, 242, 0.7);
  max-width: 520px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* Mobile: hide lead text — user just wants to call */
@media (max-width: 767px) {
  .hero-lead { display: none; }
}

/* HERO CTAs — Mobile-first emergency layout */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}

/* WhatsApp button on mobile: full width, extra tall, green, prominent */
.hero-cta-group .btn-whatsapp-hero {
  width: 100%;
  background: var(--accent-whatsapp);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.78rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.hero-cta-group .btn-whatsapp-hero:hover {
  background: var(--accent-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* Call button on mobile: full width, dark, secondary */
.hero-cta-group .btn-call-hero {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.68rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-cta-group .btn-call-hero:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
  .hero-cta-group .btn-whatsapp-hero {
    width: auto;
    font-size: 1.05rem;
    padding: 1.1rem 1.5rem;
  }
  .hero-cta-group .btn-call-hero {
    width: auto;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}

.hero-stats {
  display: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .hero-stats {
    display: flex;
  }
}


.hero-stat-item .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-item .num.gold {
  color: var(--accent-gold-light);
}

.hero-stat-item .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero Slider Navigation & Dot Indicators */
.hero-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .hero-slider-nav {
    margin-top: 1.25rem;
    padding-top: 0.85rem;
  }
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-dot {
  width: 22px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot.active {
  background: var(--accent-gold);
  width: 38px;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
}

.hero-slide-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  font-family: var(--font-sans);
}


.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-hairline);
}

.trust-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon.gold {
  background: var(--accent-gold-glow);
  color: var(--accent-gold-light);
}

.trust-icon.green {
  background: rgba(37, 211, 102, 0.12);
  color: var(--accent-whatsapp);
}

.trust-icon.red {
  background: rgba(192, 57, 43, 0.12);
  color: #E74C3C;
}

.trust-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* -------------------------------------------------------------------------- */
/* INSTAGRAM GRID */
/* -------------------------------------------------------------------------- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }
}

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: var(--bg-surface);
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ig-tile:hover img {
  transform: scale(1.08);
}

.ig-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: #FFFFFF;
}

.ig-tile:hover .ig-tile-overlay {
  opacity: 1;
}

/* -------------------------------------------------------------------------- */
/* PHOTO CARDS — for services / works */
/* -------------------------------------------------------------------------- */
.photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.photo-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.photo-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card:hover .photo-card-img img {
  transform: scale(1.06);
}

.photo-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(8, 10, 13, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-gold-light);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.photo-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.photo-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.photo-card-body p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.card-link:hover {
  color: #FFFFFF;
  gap: 0.6rem;
}

/* -------------------------------------------------------------------------- */
/* SERVICE ICON CARDS (without photo) */
/* -------------------------------------------------------------------------- */
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-elevated);
  border-color: rgba(201, 162, 39, 0.25);
  transform: translateY(-3px);
}

.service-card-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* -------------------------------------------------------------------------- */
/* TRUST / STATS BAND */
/* -------------------------------------------------------------------------- */
.trust-band {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  padding: 2rem 0;
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-hairline);
}

@media (min-width: 768px) {
  .trust-band-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-band-item {
  background: var(--bg-surface);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.trust-band-item .big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.trust-band-item .big span {
  color: var(--accent-gold-light);
}

.trust-band-item small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* -------------------------------------------------------------------------- */
/* PHOTO GALLERY MOSAIC */
/* -------------------------------------------------------------------------- */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .photo-mosaic {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 240px 240px;
  }
}

.photo-mosaic-item {
  overflow: hidden;
  position: relative;
}

.photo-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-mosaic-item:hover img {
  transform: scale(1.05);
}

.photo-mosaic-item:first-child {
  grid-row: 1 / 3;
}

.photo-mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,13,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.photo-mosaic-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
}

/* -------------------------------------------------------------------------- */
/* TRANSPORT PROTOCOL STEPS */
/* -------------------------------------------------------------------------- */
.transport-mode-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.transport-mode-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
}

.transport-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .transport-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .transport-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-hairline);
  position: relative;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  opacity: 0.5;
}

.step-phase {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.step-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* -------------------------------------------------------------------------- */
/* DISTRICT PILLS */
/* -------------------------------------------------------------------------- */
.district-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.district-pill {
  padding: 0.4rem 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.district-pill:hover {
  background: var(--bg-elevated);
  border-color: rgba(201, 162, 39, 0.4);
  color: #FFFFFF;
}

.district-pill.priority {
  border-color: rgba(201, 162, 39, 0.3);
  color: var(--text-primary);
}

/* -------------------------------------------------------------------------- */
/* GRIDS */
/* -------------------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.asym-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .asym-grid-2 { grid-template-columns: 1.3fr 0.7fr; }
}

/* -------------------------------------------------------------------------- */
/* ACCORDION (FAQ) */
/* -------------------------------------------------------------------------- */
.accordion-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1rem 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header .icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  display: none;
}

.accordion-item.active .accordion-body { display: block; }

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

.form-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px var(--accent-gold-glow);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px;
  padding-right: 2.4rem;
}

select.form-control option,
select.form-control optgroup {
  background-color: #0F1217;
  color: #FFFFFF;
}

select.form-control optgroup {
  font-weight: 700;
  color: var(--accent-gold);
  background-color: #161B23;
}


/* -------------------------------------------------------------------------- */
/* MODAL */
/* -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.active { display: flex; }

.modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 1.75rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-hairline);
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: #FFFFFF;
  background: var(--bg-elevated);
}

/* -------------------------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: #060709;
  border-top: 1px solid var(--border-hairline);
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
}

@media (max-width: 1023px) {
  .site-footer {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-secondary);
  padding-left: 3px;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--text-secondary); }

/* -------------------------------------------------------------------------- */
/* BLOG ARTICLE */
/* -------------------------------------------------------------------------- */
.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #CCCCD4;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-body p { margin-bottom: 1.35rem; }

.article-body ul, .article-body ol {
  margin-bottom: 1.35rem;
  padding-left: 1.35rem;
}

.article-body li { margin-bottom: 0.4rem; }

.blog-quick-answer {
  background: var(--bg-surface);
  border-left: 3px solid var(--accent-gold);
  padding: 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* BREADCRUMB */
/* -------------------------------------------------------------------------- */
.breadcrumb-nav {
  padding: 0.875rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.breadcrumb-nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-nav li + li::before {
  content: "/";
  padding-right: 0.4rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-nav a { color: var(--text-muted); }
.breadcrumb-nav a:hover { color: var(--text-secondary); }
.breadcrumb-nav .current { color: var(--accent-gold-light); }

/* -------------------------------------------------------------------------- */
/* FLASH MESSAGES */
/* -------------------------------------------------------------------------- */
.flash-alert {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.flash-alert.success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #A7F3D0;
}

.flash-alert.error {
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: #FCA5A5;
}

.flash-alert.info {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: #FDE68A;
}

/* -------------------------------------------------------------------------- */
/* SECTION SEPARATOR / DIVIDER STYLE */
/* -------------------------------------------------------------------------- */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-hairline);
}

/* -------------------------------------------------------------------------- */
/* EDITORIAL TABLE */
/* -------------------------------------------------------------------------- */
.editorial-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  font-size: 0.875rem;
}

.editorial-table th, .editorial-table td {
  padding: 0.875rem 1.1rem;
  border: 1px solid var(--border-hairline);
  text-align: left;
}

.editorial-table th {
  background: var(--bg-elevated);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #FFFFFF;
}

.editorial-table td { color: var(--text-secondary); }

/* -------------------------------------------------------------------------- */
/* LIGHTBOX MODAL & GALLERY STYLES */
/* -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 1rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 7, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 95vw;
  max-height: 92vh;
  user-select: none;
}

.lightbox-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 82vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-medium);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-caption-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.5rem 0.85rem;
  color: #FFFFFF;
  background: rgba(14, 17, 23, 0.85);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hairline);
  gap: 1rem;
}

.lightbox-caption {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--border-hairline);
  flex-shrink: 0;
}

.lightbox-btn {
  position: absolute;
  z-index: 10;
  background: rgba(18, 22, 30, 0.85);
  border: 1px solid var(--border-medium);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.lightbox-btn:hover {
  background: var(--accent-gold);
  color: #080A0D;
  border-color: var(--accent-gold);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

/* Photo tile hover zoom effects */
.gallery-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-trigger:hover .gallery-zoom-overlay,
.work-gallery-tile:hover .gallery-zoom-overlay {
  opacity: 1;
}

.gallery-zoom-btn {
  background: rgba(8, 10, 13, 0.85);
  color: #FFFFFF;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--border-hairline);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transform: translateY(6px);
  transition: transform 0.2s ease;
}

.lightbox-trigger:hover .gallery-zoom-btn,
.work-gallery-tile:hover .gallery-zoom-btn {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 38px; height: 38px; }
  .lightbox-img { max-height: 74vh; }
  .lightbox-caption-bar { font-size: 0.78rem; padding: 0.4rem 0.6rem; }
}

