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

/* ═══════════════════════════════════════════════
   CUSTOM PROPERTIES
═══════════════════════════════════════════════ */
:root {
  --brand:    #1A6B8A;
  --brand-d:  #125069;
  --brand-l:  #2196b8;
  --brand-xl: #7dd3f0;
  --gold:     #f59e0b;
  --gold-d:   #d97706;
  --dark:     #080f1a;
  --dark2:    #0d1a2e;
  --dark3:    #111f38;
  --navy:     #0f2540;
  --text:     #1e293b;
  --muted:    #64748b;
  --light:    #f1f5f9;
  --border:   #e2e8f0;
  --white:    #ffffff;
  --radius:   10px;
  --radius-lg:16px;
  --radius-xl:24px;
  --shadow-sm:0 2px 8px rgba(0,0,0,0.08);
  --shadow:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.16);
  --trans:    0.25s ease;
  --trans-lg: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }
.reveal-delay-6 { transition-delay: 0.60s; }
.reveal-delay-7 { transition-delay: 0.70s; }
.reveal-delay-8 { transition-delay: 0.80s; }
.reveal-delay-9 { transition-delay: 0.90s; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-l);
  margin-bottom: 0.85rem;
}
.tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--brand-l);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-sub.light { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .tag { justify-content: center; }
.section-header.centered .tag::before { display: none; }

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5.5rem 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark2); }
.section-navy { background: var(--navy); }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--trans);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,107,138,0.4);
}
.btn-primary:hover {
  background: var(--brand-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,138,0.5);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-gold:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline-dark:hover {
  background: var(--brand);
  color: var(--white);
}
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-icon {
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   INFO STRIP (fixed)
═══════════════════════════════════════════════ */
.info-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.info-strip.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans), top var(--trans);
  padding: 0 2rem;
}
#navbar.scrolled {
  background: rgba(8, 15, 26, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  top: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height var(--trans);
}
#navbar.scrolled .nav-inner { height: 64px; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-text span {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--brand-l);
  border-radius: 2px;
}
.nav-cta {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all var(--trans) !important;
}
.nav-cta:hover {
  background: #fbbf24 !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.nav-cta svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 108px; left: 0; right: 0;
  background: rgba(8,15,26,0.99);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 2rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-drawer a {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--trans);
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a:hover { color: var(--brand-xl); }
.mobile-drawer .mob-cta {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 11rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(26,107,138,0.2) 0%, transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(33,150,187,0.08) 0%, transparent 45%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent, transparent 79px,
    rgba(255,255,255,0.015) 80px
  ), repeating-linear-gradient(
    0deg, transparent, transparent 79px,
    rgba(255,255,255,0.015) 80px
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--brand-xl); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.breadcrumb .current { color: var(--brand-xl); }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}
.hero-accent-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-l));
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-lg), box-shadow var(--trans-lg), border-color var(--trans);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,138,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-dark {
  background: var(--dark3);
  border-color: rgba(255,255,255,0.07);
}
.service-card-dark:hover { border-color: rgba(26,107,138,0.4); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(26,107,138,0.15), rgba(26,107,138,0.06));
  transition: background var(--trans);
}
.service-card:hover .svc-icon { background: linear-gradient(135deg, rgba(26,107,138,0.25), rgba(26,107,138,0.12)); }
.svc-icon svg {
  width: 28px; height: 28px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-dark .svc-icon { background: rgba(26,107,138,0.15); }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.service-card-dark h3 { color: var(--white); }
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.service-card-dark p { color: rgba(255,255,255,0.55); }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap var(--trans), color var(--trans);
}
.service-card:hover .service-card-link { gap: 0.55rem; color: var(--brand-l); }

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26,107,138,0.18) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  text-align: center;
}
.stat-divider {
  border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-l);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════
   WHY US / FEATURES
═══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.feature-item:hover {
  border-color: rgba(26,107,138,0.25);
  box-shadow: 0 4px 20px rgba(26,107,138,0.08);
}
.feature-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,107,138,0.15), rgba(26,107,138,0.05));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.feature-item p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark3);
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,26,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-overlay-icon svg {
  width: 22px; height: 22px;
  stroke: var(--white);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.gallery-placeholder svg {
  width: 36px; height: 36px;
  stroke: rgba(255,255,255,0.2);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--dark3);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
}
.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-entry:last-child { margin-bottom: 0; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(26,107,138,0.2);
  border: 1px solid rgba(26,107,138,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px; height: 20px;
  stroke: var(--brand-xl);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-entry-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.3rem;
}
.contact-entry a, .contact-entry span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  transition: color var(--trans);
}
.contact-entry a:hover { color: var(--brand-xl); }
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.85rem 1.5rem;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  justify-content: center;
  transition: background var(--trans), transform var(--trans);
}
.contact-wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--light);
  font-family: inherit;
  outline: none;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
  resize: vertical;
}
.form-group textarea { min-height: 120px; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,107,138,0.1);
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--brand-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,138,0.4);
}
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand-col .nav-logo-mark {
  width: 50px; height: 50px;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.footer-brand-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand-col p {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--trans), background var(--trans);
}
.footer-social a svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.6);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--trans);
}
.footer-social a:hover {
  border-color: var(--brand);
  background: rgba(26,107,138,0.15);
}
.footer-social a:hover svg { stroke: var(--brand-xl); }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans), padding-left var(--trans);
}
.footer-col ul li a:hover {
  color: var(--brand-xl);
  padding-left: 4px;
}
.footer-col p { font-size: 0.87rem; line-height: 1.75; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--brand-xl); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ═══════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: wa-bounce 3s ease-in-out 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-float svg {
  width: 28px; height: 28px;
  fill: var(--white);
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  z-index: 990;
  width: 44px; height: 44px;
  background: rgba(26,107,138,0.85);
  border: 1px solid rgba(26,107,138,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans), background var(--trans);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--brand); transform: translateY(-3px); }
.back-to-top svg {
  width: 20px; height: 20px;
  stroke: var(--white);
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   CONTENT PAGES (Impressum / Datenschutz)
═══════════════════════════════════════════════ */
.prose-section {
  padding: 4rem 0 5rem;
}
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.prose p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.prose a { color: var(--brand); }
.prose a:hover { color: var(--brand-l); text-decoration: underline; }
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ul li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}
.prose strong { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════
   MISC COMPONENTS
═══════════════════════════════════════════════ */
/* Info badge strip */
.info-strip {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.6rem 2rem;
}
.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.info-strip-item svg {
  width: 14px; height: 14px;
  stroke: var(--brand-xl);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.info-strip-item strong { color: rgba(255,255,255,0.8); }
.info-strip-item a { color: rgba(255,255,255,0.55); transition: color var(--trans); }
.info-strip-item a:hover { color: var(--brand-xl); }

/* Section divider diagonal */
.divider-bottom {
  position: relative;
}
.divider-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Testimonial cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-l));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testimonial-loc { font-size: 0.78rem; color: var(--muted); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--brand-d), var(--brand));
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px
  );
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-badge-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brand);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,107,138,0.45);
}
.about-badge-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-badge-label {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.2rem;
  font-weight: 500;
}
.about-text-col .section-sub { max-width: none; margin-bottom: 1.5rem; }
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(26,107,138,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg {
  width: 12px; height: 12px;
  stroke: var(--brand);
  fill: none; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.checklist-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-l));
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-d), var(--brand));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(26,107,138,0.4);
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 560px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --radius-xl: 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .services-grid, .features-grid, .gallery-grid, .gallery-grid.grid-4 {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .info-strip-inner { justify-content: center; }
  .page-hero { padding: 8rem 1.25rem 3rem; }
  .about-badge-card { bottom: -1rem; right: -0.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-num { font-size: 2.2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .info-strip { display: none !important; }
  #navbar { top: 0 !important; }
  .mobile-drawer { top: 72px !important; }
}
