:root {
  --navy: #0A1F44;
  --steel: #1565C0;
  --cyan: #00B4D8;
  --gold: #C9A84C;
  --white: #F8FAFC;
  --gray: #1E2A38;
  --light: #EFF4FB;
  --muted: #7A8EA8;
  --wa: #25D366;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--gray); overflow-x: hidden; }

/* ── ROPE SIGNATURE ── */
.rope-line {
  position: fixed; right: 28px; top: 0;
  width: 4px; height: 100vh; z-index: 10; pointer-events: none;
  background: repeating-linear-gradient(180deg,var(--gold) 0px,var(--gold) 6px,transparent 6px,transparent 12px,var(--cyan) 12px,var(--cyan) 18px,transparent 18px,transparent 24px);
  opacity: 0.35; border-radius: 2px;
}
.rope-knot {
  position: fixed; right: 22px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gold); border: 2px solid var(--navy);
  z-index: 11; transition: top 0.3s ease; box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10,31,68,0.97); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: var(--white); letter-spacing: 2px; }
.logo-text span { color: var(--cyan); }
.logo-sub { font-size: 8px; color: var(--gold); letter-spacing: 1.5px; font-weight: 600; line-height: 1.3; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: rgba(248,250,252,0.8); text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 4px; letter-spacing: 0.5px; transition: all 0.2s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(0,180,216,0.15); }
.nav-cta { background: var(--cyan) !important; color: var(--navy) !important; font-weight: 700 !important; }
.nav-cta:hover { background: #00CFF4 !important; transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: flex; gap: 4px; }
.lang-btn {
  background: none; border: 1px solid rgba(201,168,76,0.4); color: var(--muted);
  font-size: 11px; font-weight: 600; letter-spacing: 1px; padding: 5px 10px;
  border-radius: 3px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.lang-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: 4px; transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(10,31,68,0.98); backdrop-filter: blur(16px);
  z-index: 190; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 40px 24px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  color: var(--white); font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  text-decoration: none; padding: 14px 32px; border-radius: 6px; width: 100%; text-align: center;
  transition: all 0.2s; cursor: pointer;
}
.mobile-drawer a:hover, .mobile-drawer a.active { background: rgba(0,180,216,0.15); color: var(--cyan); }
.mobile-drawer .drawer-cta { background: var(--cyan) !important; color: var(--navy) !important; }
.mobile-lang { display: flex; gap: 8px; margin-top: 20px; }

/* ── WHATSAPP FLOATING ── */
.wa-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 300;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); cursor: pointer;
  text-decoration: none; transition: all 0.25s; position: relative;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }
.wa-pulse {
  position: absolute; top: -2px; right: -2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #FF4444; border: 2px solid var(--white);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.wa-tooltip {
  background: var(--gray); color: var(--white);
  font-size: 12px; font-weight: 600; padding: 8px 14px;
  border-radius: 6px; white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(-10px); transition: all 0.2s;
  position: absolute; left: 68px; top: 50%; transform: translateY(-50%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wa-fab:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ── PAGES ── */
.page { display: none; padding-top: 70px; }
.page.active { display: block; }

/* ── HERO ── */
.hero { min-height: 92vh; background: var(--navy); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0.95) 45%, rgba(21,101,192,0.6) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 60px 80px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 4px; color: var(--cyan); text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--cyan); }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(52px, 7vw, 90px);
  font-weight: 900; color: var(--white); line-height: 0.95; text-transform: uppercase;
  letter-spacing: -1px; margin-bottom: 28px;
}
.hero h1 .accent { color: var(--cyan); }
.hero h1 .gold { color: var(--gold); }
.hero-desc { font-size: 16px; color: rgba(248,250,252,0.75); line-height: 1.7; max-width: 500px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: absolute; right: 80px; bottom: 60px; display: flex; gap: 48px; z-index: 2; }
.stat-block { text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.hero-badges {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,168,76,0.3);
  display: flex; justify-content: center; gap: 60px; padding: 18px 40px; z-index: 2;
}
.badge-item { display: flex; align-items: center; gap: 10px; color: rgba(248,250,252,0.85); font-size: 13px; font-weight: 500; }
.badge-icon { font-size: 22px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--cyan); color: var(--navy); padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s;
}
.btn-primary:hover { background: #00CFF4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,216,0.35); }
.btn-outline {
  background: transparent; color: var(--white); padding: 13px 30px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; border: 2px solid rgba(248,250,252,0.4);
  border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTIONS ── */
section { padding: 90px 80px; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 4px; color: var(--cyan); text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--cyan); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px,4vw,52px); font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: -0.5px; line-height: 1.05; margin-bottom: 16px;
}
.section-title .accent { color: var(--steel); }
.section-desc { font-size: 15px; color: #4A5568; line-height: 1.75; max-width: 560px; }

/* ── VALUES STRIP ── */
.values-strip { background: var(--navy); padding: 60px 80px; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.value-card { background: rgba(255,255,255,0.04); padding: 36px 28px; border-left: 1px solid rgba(255,255,255,0.07); transition: background 0.25s; }
.value-card:first-child { border-left: none; }
.value-card:hover { background: rgba(0,180,216,0.08); }
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: rgba(248,250,252,0.6); line-height: 1.6; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; background: #D0DCE8; }
.service-card { background: var(--white); padding: 44px 36px; position: relative; transition: all 0.3s; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg,var(--steel),var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(21,101,192,0.12); }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900; color: var(--light); line-height: 1; margin-bottom: -8px; letter-spacing: -2px; }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-title { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: #5A6882; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { background: var(--light); color: var(--steel); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }

/* ── BEFORE/AFTER ── */
.ba-section { background: var(--navy); padding: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ba-text .section-title { color: var(--white); }
.ba-text .section-desc { color: rgba(248,250,252,0.65); }
.ba-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-img { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; position: relative; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); }
.ba-label { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; padding: 4px 10px; border-radius: 2px; }
.ba-img.after img { filter: saturate(1.1) brightness(1.05); }
.ba-label.after-label { background: var(--cyan); }

/* ── WHY ── */
.why-section { background: var(--light); padding: 90px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-badge { min-width: 48px; height: 48px; background: var(--navy); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.why-item-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.why-item-desc { font-size: 13px; color: #5A6882; line-height: 1.6; }
.why-visual { position: relative; }
.why-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; filter: brightness(0.9) saturate(1.1); }
.why-cert { position: absolute; bottom: -20px; left: -20px; background: var(--gold); color: var(--navy); padding: 20px 24px; border-radius: 6px; box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.cert-num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; line-height: 1; }
.cert-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ── ABOUT ── */
.about-hero { background: linear-gradient(135deg,var(--navy) 60%,var(--steel) 100%); padding: 100px 80px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-headline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(42px,5vw,68px); font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 0.95; letter-spacing: -1px; }
.about-headline .accent { color: var(--cyan); }
.about-tagline { font-size: 15px; color: rgba(248,250,252,0.7); line-height: 1.75; margin-top: 24px; }
.about-mission { background: var(--gold); color: var(--navy); padding: 32px; border-radius: 6px; }
.mission-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; opacity: 0.7; }
.mission-text { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; line-height: 1.4; text-transform: uppercase; }
.about-values { padding: 90px 80px; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; background: #D0DCE8; }
.val-card { background: var(--white); padding: 44px 36px; transition: all 0.3s; }
.val-card:hover { background: var(--light); }
.val-icon { font-size: 40px; margin-bottom: 20px; }
.val-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.val-desc { font-size: 14px; color: #5A6882; line-height: 1.7; }
.team-strip { background: var(--navy); padding: 80px; }
.team-strip .section-title { color: var(--white); }
.team-strip .section-desc { color: rgba(248,250,252,0.6); }
.team-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.team-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.team-card:hover { background: rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.3); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg,var(--steel),var(--cyan)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.team-name { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--cyan); letter-spacing: 1px; text-transform: uppercase; }
.team-cert { display: inline-block; margin-top: 12px; background: rgba(201,168,76,0.15); color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: 1px; padding: 4px 10px; border-radius: 2px; text-transform: uppercase; }

/* ── SERVICES PAGE ── */
.services-hero { background: var(--navy); padding: 100px 80px 70px; text-align: center; }
.services-hero .section-title { color: var(--white); }
.services-hero .section-eyebrow { justify-content: center; }
.services-hero .section-eyebrow::before { display: none; }
.services-hero .section-desc { color: rgba(248,250,252,0.65); margin: 0 auto; text-align: center; }
.services-full { padding: 80px; background: var(--white); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 64px 0; border-bottom: 1px solid #E2EAF4; }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.sd-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 80px; font-weight: 900; color: var(--light); letter-spacing: -4px; line-height: 1; margin-bottom: -12px; }
.sd-icon { font-size: 48px; margin-bottom: 16px; }
.sd-title { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 8px; }
.sd-subtitle { font-size: 13px; color: var(--cyan); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.sd-desc { font-size: 15px; color: #4A5568; line-height: 1.75; margin-bottom: 24px; }
.sd-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sd-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #5A6882; }
.sd-list li::before { content: '▸'; color: var(--cyan); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.sd-visual { background: var(--light); border-radius: 8px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; border: 2px solid #D0DCE8; }

/* ── REALISATIONS PAGE ── */
.real-hero { background: linear-gradient(135deg,var(--navy),var(--steel)); padding: 100px 80px 70px; text-align: center; }
.real-hero .section-title { color: var(--white); }
.real-hero .section-eyebrow { justify-content: center; }
.real-hero .section-eyebrow::before { display: none; }

.filter-bar {
  background: var(--white); padding: 28px 80px;
  border-bottom: 1px solid #E2EAF4; display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.filter-label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-right: 6px; }
.filter-btn {
  background: var(--light); border: 1.5px solid transparent; color: var(--navy);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; padding: 8px 18px;
  border-radius: 20px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--steel); color: var(--steel); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.gallery-section { padding: 60px 80px; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 0; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer;
  background: var(--light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(10,31,68,0.92) 100%);
  opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 4px;
}
.gallery-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); text-transform: uppercase; margin-bottom: 4px; }
.gallery-loc { font-size: 12px; color: rgba(248,250,252,0.6); }
.gallery-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

/* Stats bar in realisations */
.real-stats {
  background: var(--navy); padding: 50px 80px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  border-top: 3px solid var(--gold);
}
.rs-item { padding: 30px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.rs-item:last-child { border-right: none; }
.rs-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.rs-num span { color: var(--gold); }
.rs-label { font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 80vh; border-radius: 4px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; line-height: 1;
}
.lightbox-caption {
  margin-top: 14px; text-align: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--white); letter-spacing: 1px; text-transform: uppercase;
}
.lightbox-sub { font-size: 13px; color: var(--muted); margin-top: 4px; text-align: center; }

/* ── CONTACT PAGE ── */
.contact-hero { background: linear-gradient(135deg,var(--navy),var(--steel)); padding: 100px 80px 80px; text-align: center; }
.contact-hero .section-title { color: var(--white); }
.contact-hero .section-eyebrow { justify-content: center; }
.contact-hero .section-eyebrow::before { display: none; }
.contact-body { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.contact-info { background: var(--navy); padding: 70px 60px; }
.contact-info-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { min-width: 46px; height: 46px; background: rgba(0,180,216,0.15); border: 1px solid rgba(0,180,216,0.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ci-label { font-size: 11px; color: var(--cyan); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.ci-value { font-size: 15px; color: rgba(248,250,252,0.9); line-height: 1.5; font-weight: 500; }
.ci-value a { color: inherit; text-decoration: none; }
.ci-value a:hover { color: var(--cyan); }
.contact-hours { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hours-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(248,250,252,0.65); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-row:last-child { border-bottom: none; }

.contact-form { background: var(--white); padding: 70px 60px; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); text-transform: uppercase; margin-bottom: 10px; }
.form-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 32px; display: flex; align-items: center; gap: 6px; }
.form-subtitle span { color: var(--wa); font-size: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 1.5px; text-transform: uppercase; }
input, textarea, select {
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--gray);
  border: 1.5px solid #C9D8EA; border-radius: 4px; padding: 12px 14px;
  background: var(--white); transition: border-color 0.2s; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--steel); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 8px; background: var(--wa); color: var(--white); border: none; border-radius: 4px;
  padding: 16px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; width: 100%; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: #1fba57; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.form-submit svg { width: 20px; height: 20px; fill: white; }

.map-section { background: var(--light); padding: 60px 80px; }
.map-placeholder { width: 100%; height: 300px; background: linear-gradient(135deg,#1E2A38 0%,#0A1F44 100%); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 2px solid #D0DCE8; margin-top: 40px; }
.map-placeholder .map-icon { font-size: 48px; }
.map-placeholder p { color: rgba(248,250,252,0.7); font-size: 14px; letter-spacing: 0.5px; }
.map-placeholder strong { color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; }

/* ── FOOTER ── */
footer { background: var(--gray); padding: 60px 80px 32px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { font-size: 28px; margin-bottom: 6px; }
.footer-tagline { font-size: 12px; color: rgba(248,250,252,0.5); line-height: 1.6; margin-top: 14px; max-width: 240px; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(248,250,252,0.55); text-decoration: none; font-size: 13px; transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(248,250,252,0.35); }
.footer-motto { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 4px; color: rgba(248,250,252,0.3); text-transform: uppercase; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section, .about-hero, .ba-section, .why-section, .services-hero, .services-full,
  .contact-hero, .real-hero, .gallery-section, .filter-bar, footer { padding: 60px 20px; }
  .hero-content { padding: 60px 20px; }
  .hero-stats { display: none; }
  .hero-badges { flex-wrap: wrap; gap: 12px; padding: 14px 20px; }
  .values-strip { grid-template-columns: 1fr 1fr; padding: 40px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .ba-section { grid-template-columns: 1fr; padding: 60px 20px; }
  .why-section { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; padding: 80px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-cards { grid-template-columns: 1fr 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; direction: ltr; padding: 40px 0; }
  .service-detail.reverse { direction: ltr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .real-stats { grid-template-columns: 1fr 1fr; padding: 40px 20px; }
  .team-strip, .values-strip { padding: 60px 20px; }
  .rope-line, .rope-knot { display: none; }
  .wa-fab { bottom: 16px; left: 16px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .team-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .real-stats { grid-template-columns: 1fr 1fr; }
}
