/* ============================================================
   LeitwolfK9 — Main Stylesheet
   Aesthetic: Bold tactical/military with warm amber accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark-mid:   #1a1a1a;
  --mid:        #242424;
  --border:     #2e2e2e;
  --text-muted: #888888;
  --text-light: #cccccc;
  --white:      #f5f3ef;
  --amber:      #e8a020;
  --amber-dark: #c4861a;
  --amber-glow: rgba(232,160,32,0.12);
  --cyan:       #01b9f1;
  --cyan-dark:  #0196c4;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button, select { font-family: inherit; }

/* ── Utility ────────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-amber     { color: var(--amber); }
.text-cyan      { color: var(--cyan); }
.section-label  {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: all .25s ease;
}
.btn-primary {
  background: var(--amber);
  color: var(--black);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
  max-width: 80px;
}

/* ══════════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.8); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo img { height: 48px; width: auto; }

/* Footer logo */
.footer-logo img { height: 44px; }

.header-topbar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.5px;
}
.header-phone svg { flex-shrink: 0; }
.header-phone a { color: var(--amber); }
.header-phone a:hover { color: var(--white); }

/* Desktop Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all .2s;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform .2s;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }

/* Mobile Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--amber); }
.mobile-nav .mobile-phone {
  margin-top: 32px;
  color: var(--amber);
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 600;
  border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 72px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }

/* Gradient overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
}
/* Bottom fade */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}
.hero-content .container { width: 100%; }
.hero-text { max-width: 640px; }
.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp .8s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--amber);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp .8s .15s ease both;
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 36px;
  animation: fadeInUp .8s .3s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .8s .45s ease both;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.hero-dot.active {
  background: var(--amber);
  width: 28px;
  border-radius: 4px;
}

/* Slide arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--amber); border-color: var(--amber); color: var(--black); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ── Info Bar ───────────────────────────────────────────────── */
.info-bar {
  background: var(--amber);
  color: var(--black);
  padding: 0;
  overflow: hidden;
}
.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(0,0,0,0.12);
}
.info-bar-item:last-child { border-right: none; }
.info-bar-icon { flex-shrink: 0; opacity: 0.7; }
.info-bar-label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
  margin-bottom: 2px;
}
.info-bar-value {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   INTRO / ABOUT SNIPPET
══════════════════════════════════════════════════════════════ */
#intro {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#intro::before {
  content: 'K9';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 300px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}
.intro-heading em { font-style: normal; color: var(--amber); }
.intro-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--mid);
  padding: 24px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  display: block;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.intro-image-wrap {
  position: relative;
}
.intro-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.3;
}
.intro-image-wrap img { position: relative; z-index: 1; }
.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--black);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow);
}
.intro-badge strong {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1;
}
.intro-badge span {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
#services {
  padding: 100px 0;
  background: var(--black);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--dark);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { background: var(--mid); }
.service-card:hover::before { transform: scaleX(1); }
.service-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-num {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--amber);
  opacity: 0.6;
}
.service-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--white);
}
.service-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */
#why-us {
  padding: 100px 0;
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, var(--amber-glow), transparent 60%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(20%);
}
.why-image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 32px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.why-image-tag {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.why-image-tag em { font-style: normal; color: var(--amber); }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-point-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-point-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.why-point-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
══════════════════════════════════════════════════════════════ */
#contact-section {
  padding: 100px 0;
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.contact-info-heading em { font-style: normal; color: var(--amber); }
.contact-info-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--amber-glow);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.contact-detail-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.contact-detail-value a { transition: color .2s; }
.contact-detail-value a:hover { color: var(--amber); }

/* Form */
.contact-form-wrap {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; font-size: 13px; padding: 16px; margin-top: 8px; }
.form-msg {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form-msg.success { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); color: #4caf7d; display: block; }
.form-msg.error   { background: rgba(220,50,50,0.1); border: 1px solid rgba(220,50,50,0.3); color: #e05555; display: block; }

/* ══════════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--amber);
  color: var(--black);
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.cta-band-sub {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 6px;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-mid); color: var(--amber); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════════ */
.page-hero {
  height: 320px;
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero-content .container { }
.page-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
}
.page-breadcrumb {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 12px;
}
.page-breadcrumb a { color: var(--amber); }
.page-breadcrumb a:hover { color: var(--white); }

#gallery-section {
  padding: 80px 0;
  background: var(--black);
}
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--mid);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.5); }
.gallery-zoom {
  width: 52px; height: 52px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0;
  transform: scale(0.7);
  transition: all .3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--amber);
  color: var(--black);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--amber); border-color: var(--amber); color: var(--black); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
#about-section {
  padding: 100px 0;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(15%);
}
.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--dark);
  box-shadow: var(--shadow);
}
.about-content { padding-top: 24px; }
.about-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-heading em { font-style: normal; color: var(--amber); }
.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}
.about-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
#contact-page {
  padding: 100px 0;
  background: var(--dark);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand {}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 44px; }
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 40px; height: 40px;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all .2s;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-social:hover { background: var(--amber); border-color: var(--amber); color: var(--black); }
.footer-col-title {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
.footer-contact-item svg { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: color .2s; }
.footer-contact-item a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 300;
}
.footer-copy a { color: var(--amber); }
.footer-copy a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 888;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-button {
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.wa-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-button svg { color: white; }
.wa-tooltip {
  background: var(--dark-mid);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 24px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main   { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(5n+1) { grid-column: span 1; }
}
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .nav-toggle  { display: flex; }
  .mobile-nav  { display: flex; }
  .info-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .info-bar-item:nth-child(2) { border-right: none; }
  .intro-grid  { grid-template-columns: 1fr; gap: 48px; }
  .intro-image-wrap { display: none; }
  .intro-stats { grid-template-columns: repeat(3, 1fr); }
  .why-grid    { grid-template-columns: 1fr; }
  .why-image   { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row    { grid-template-columns: 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .header-topbar { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .hero-ctas  { flex-direction: column; }
  .info-bar-inner { grid-template-columns: 1fr; }
  .info-bar-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
}
