/* ============================================================
   LeitwolfK9 — Main Stylesheet
   Colour scheme: Original site (cyan #01b9f1, white/light body,
   black info bar, dark navy footer)
   ============================================================ */

@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 {
  --nav-bg:        #01b9f1;
  --nav-text:      #000000;
  --infobar-bg:    #000000;
  --infobar-text:  #ffffff;
  --body-bg:       #ffffff;
  --body-text:     #3b3c3c;
  --section-alt:   #f5f5f5;
  --card-bg:       #ffffff;
  --card-border:   #e0e0e0;
  --heading-color: #111111;
  --muted:         #777777;
  --cyan:          #01b9f1;
  --cyan-dark:     #0196c4;
  --cyan-glow:     rgba(1,185,241,0.12);
  --btn-bg:        #0e4b87;
  --btn-text:      #ffffff;
  --cta-bg:        #01b9f1;
  --cta-text:      #ffffff;
  --footer-bg:     #262631;
  --footer-text:   #e8e8e8;
  --footer-muted:  #bbbbbb;
  --radius:        4px;
  --shadow:        0 4px 20px rgba(0,0,0,0.10);
  --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(--body-bg);
  color: var(--body-text);
  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-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(--cyan);
  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(--btn-bg);
  color: var(--btn-text);
}
.btn-primary:hover {
  background: #0a3d6e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,75,135,0.3);
}
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.15); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo img { height: 52px; width: auto; }

/* Footer logo */
.footer-logo img { height: 44px; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: var(--nav-text);
  letter-spacing: 0.5px;
}
.header-phone svg { flex-shrink: 0; }
.header-phone a { color: var(--nav-text); }
.header-phone a:hover { color: #ffffff; }

/* Desktop Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nav-text);
  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(--nav-text);
  transform: scaleX(0);
  transition: transform .2s;
}
.primary-nav a:hover,
.primary-nav a.active { color: #ffffff; }
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); background: #ffffff; }

/* 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(--nav-text);
  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(--nav-bg);
  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(--nav-text);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: color .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: #ffffff; }
.mobile-nav .mobile-phone {
  margin-top: 32px;
  color: var(--nav-text);
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  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); }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.1) 100%
  );
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--body-bg), 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(--cyan);
  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(--cyan);
}
.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: #ffffff;
  margin-bottom: 20px;
  animation: fadeInUp .8s .15s ease both;
}
.hero-title em { font-style: normal; color: var(--cyan); }
.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  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.4);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.hero-dot.active { background: var(--cyan); 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.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  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(--cyan); border-color: var(--cyan); color: #000000; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ── Info Bar ───────────────────────────────────────────────── */
.info-bar {
  background: var(--infobar-bg);
  color: var(--infobar-text);
}
.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.info-bar-item:last-child { border-right: none; }
.info-bar-icon { flex-shrink: 0; opacity: 0.7; color: var(--cyan); }
.info-bar-label {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
  margin-bottom: 4px;
}
.info-bar-value {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   INTRO
══════════════════════════════════════════════════════════════ */
#intro {
  padding: 100px 0;
  background: var(--body-bg);
  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(1,185,241,0.05);
  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;
  color: var(--heading-color);
  margin-bottom: 24px;
}
.intro-heading em { font-style: normal; color: var(--cyan); }
.intro-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--section-alt);
  padding: 24px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  display: block;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--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);
  position: relative;
  z-index: 1;
}
.intro-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.35;
}
.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--cyan);
  color: #000000;
  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(--section-alt);
}
.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;
  color: var(--heading-color);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--cyan); }
.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--card-bg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { background: #f8fdff; box-shadow: 0 4px 20px rgba(1,185,241,0.12); }
.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(--cyan);
  opacity: 0.7;
}
.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(--heading-color);
}
.service-desc {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.6;
  flex: 1;
}

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */
#why-us {
  padding: 100px 0;
  background: var(--body-bg);
  position: relative;
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, var(--cyan-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);
}
.why-image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), 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: #ffffff;
}
.why-image-tag em { font-style: normal; color: var(--cyan); }
.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(--cyan);
  color: #000000;
  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;
  color: var(--heading-color);
  margin-bottom: 6px;
}
.why-point-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
══════════════════════════════════════════════════════════════ */
#contact-section {
  padding: 100px 0;
  background: var(--section-alt);
}
.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;
  color: var(--heading-color);
}
.contact-info-heading em { font-style: normal; color: var(--cyan); }
.contact-info-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
}
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--cyan-glow);
  border: 1px solid rgba(1,185,241,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.contact-detail-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 15px; font-weight: 500; color: var(--heading-color); }
.contact-detail-value a { transition: color .2s; }
.contact-detail-value a:hover { color: var(--cyan); }

/* Form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-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(--muted);
}
.form-group input,
.form-group textarea {
  background: var(--section-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--heading-color);
  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(--cyan); }
.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.08); border: 1px solid rgba(0,200,100,0.3); color: #1a7a4a; display: block; }
.form-msg.error   { background: rgba(220,50,50,0.08); border: 1px solid rgba(220,50,50,0.3); color: #c0392b; display: block; }

/* ══════════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--cta-bg);
  color: var(--cta-text);
  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;
  color: #ffffff;
}
.cta-band-sub { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.8); margin-top: 6px; }
.btn-dark {
  background: #000000;
  color: #ffffff;
}
.btn-dark:hover { background: #222222; color: var(--cyan); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.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-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  color: #ffffff;
}
.page-breadcrumb {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}
.page-breadcrumb a { color: var(--cyan); }
.page-breadcrumb a:hover { color: #ffffff; }

/* ══════════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════════ */
#gallery-section {
  padding: 80px 0;
  background: var(--body-bg);
}
.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(--section-alt);
}
.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(1,185,241,0.35); }
.gallery-zoom {
  width: 52px; height: 52px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  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.93);
  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(--cyan);
  color: #000000;
  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: #ffffff;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--cyan); border-color: var(--cyan); color: #000000; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
#about-section {
  padding: 100px 0;
  background: var(--body-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); }
.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(--body-bg);
  box-shadow: var(--shadow);
}
.about-img-stack { position: relative; }
.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;
  color: var(--heading-color);
  margin-bottom: 24px;
}
.about-heading em { font-style: normal; color: var(--cyan); }
.about-body { font-size: 15px; font-weight: 300; color: var(--body-text); 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(--body-text);
  line-height: 1.6;
}
.about-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
#contact-page { padding: 100px 0; background: var(--body-bg); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--cyan);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--footer-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-muted);
  font-size: 16px;
  transition: all .2s;
  font-family: var(--font-cond);
  font-weight: 700;
}
.footer-social:hover { background: var(--cyan); border-color: var(--cyan); color: #000000; }
.footer-col-title {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--footer-muted);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--footer-text); }
.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(--footer-muted);
  font-weight: 300;
  line-height: 1.6;
}
.footer-contact-item svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--footer-muted); transition: color .2s; }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; }
.footer-copy { font-size: 13px; color: var(--footer-muted); text-align: center; font-weight: 300; }
.footer-copy a { color: var(--cyan); }
.footer-copy a:hover { color: #ffffff; }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════════════ */
.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(--footer-bg);
  color: #ffffff;
  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 rgba(255,255,255,0.1);
  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); }
}
@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; }
  .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(255,255,255,0.08); }
}