/* ================================
   BAY AREA PRO PAINTING — v3
   Modern Dark Theme
   ================================ */

:root {
  --navy:      #0b1d3a;
  --navy-mid:  #112347;
  --navy-light:#1a3160;
  --gold:      #f0a500;
  --gold-light:#f7c040;
  --gold-dark: #c98800;
  --white:     #ffffff;
  --off:       #f4f6f9;
  --gray:      #6b7280;
  --text:      #1a202c;
  --shadow:    0 4px 24px rgba(11,29,58,0.13);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text);background:var(--white);overflow-x:hidden}

/* ================================
   HEADER — always transparent → solid on scroll
   ================================ */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent !important;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

header.solid {
  background: #060c1a !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon { width: 42px; height: 42px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-family: 'Oswald',sans-serif; font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; }
.nav-logo-text span:last-child  { font-family: 'Oswald',sans-serif; font-size: 19px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 13px; right: 13px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta.active::after { display: none; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.lang-toggle:hover { background: rgba(240,165,0,0.25); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: 6px; }
.hamburger span { display: block; width: 24px; height: 3px; background: #ffffff; transition: all 0.3s; border-radius: 2px; }

/* ================================
   HERO — TRUE FULL BLEED
   ================================ */

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  left: 0; top: 0;
}

.carousel { width: 100%; height: 100%; position: relative; }

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,12,26,0.87) 0%, rgba(11,29,58,0.6) 50%, rgba(0,0,0,0.2) 100%);
}

.carousel-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 60px;
  max-width: 820px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.35);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.carousel-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.carousel-content h1 span { color: var(--gold); }

.carousel-content p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.carousel-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  padding: 15px 36px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(240,165,0,0.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,165,0,0.5); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  padding: 15px 36px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }

/* carousel controls */
.carousel-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.carousel-dot.active { background: var(--gold); width: 28px; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.carousel-arrow:hover { background: rgba(240,165,0,0.2); border-color: var(--gold); }
.carousel-arrow.prev { left: 28px; }
.carousel-arrow.next { right: 28px; }

.free-badge {
  position: absolute;
  top: 100px;
  right: 52px;
  z-index: 5;
  background: var(--gold);
  color: var(--navy);
  width: 112px; height: 112px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 28px rgba(240,165,0,0.55);
  animation: pulseBadge 2.5s ease-in-out infinite;
}
.free-badge strong { font-family: 'Oswald',sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; line-height: 1; }
.free-badge span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 3px; }

@keyframes pulseBadge {
  0%,100% { box-shadow: 0 4px 28px rgba(240,165,0,0.55); }
  50%      { box-shadow: 0 6px 36px rgba(240,165,0,0.8); }
}

/* ================================
   STATS
   ================================ */

.stats-bar {
  background: var(--navy-mid);
  padding: 44px 24px;
  border-top: 3px solid var(--gold);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong { font-family: 'Oswald',sans-serif; font-size: clamp(38px,5vw,56px); font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-item span { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }
.stat-sep { width: 1px; height: 52px; background: rgba(255,255,255,0.1); }

/* ================================
   SHARED
   ================================ */

section { padding: 100px 24px; }
.wrap { max-width: 1280px; margin: 0 auto; }

.section-head { margin-bottom: 56px; }
.section-head h2, .section-head .label { display: block; }

.label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.label.dark { color: var(--navy); }

h2 {
  font-family: 'Oswald',sans-serif;
  font-size: clamp(32px,4vw,52px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
h2.light { color: var(--white); }
h2.dark  { color: var(--navy); }

.section-head p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
}
.section-head p.dark  { color: rgba(11,29,58,0.7); }
.section-head p.light { color: rgba(255,255,255,0.6); }

/* ================================
   SERVICES
   ================================ */

#services { background: var(--off); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.scard {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.scard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.scard:hover { transform: translateY(-7px); box-shadow: 0 16px 44px rgba(11,29,58,0.15); border-bottom-color: var(--gold); }
.scard:hover::before { opacity: 1; }

.scard-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(11,29,58,0.2);
}
.scard h3 { font-family: 'Oswald',sans-serif; font-size: 17px; font-weight: 600; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; letter-spacing: 0.5px; }
.scard p { color: var(--gray); font-size: 13.5px; line-height: 1.65; }

/* ================================
   GALLERY
   ================================ */

.sect-dark { background: var(--navy); }
.sect-dark h2 { color: var(--white); }
.sect-dark .section-head p { color: rgba(255,255,255,0.55); }

#gallery .section-head { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}
.gitem { position: relative; overflow: hidden; cursor: pointer; }
.gitem:first-child { grid-row: span 2; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gitem:hover img { transform: scale(1.07); }
.goverlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gitem:hover .goverlay { opacity: 1; }
.goverlay span { color: white; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.5px; }

/* ================================
   HOW IT WORKS — GOLD SECTION
   ================================ */

.sect-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); }
.sect-gold .label.dark { color: var(--navy); opacity: 0.7; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.how-step {
  background: rgba(255,255,255,0.12);
  padding: 44px 30px;
  transition: background 0.3s;
  backdrop-filter: blur(4px);
}
.how-step:hover { background: rgba(255,255,255,0.2); }

.how-num {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-family: 'Oswald',sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.how-step h3 { font-family: 'Oswald',sans-serif; font-size: 18px; font-weight: 600; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.how-step p  { color: rgba(11,29,58,0.72); font-size: 14px; line-height: 1.65; }

/* ================================
   OUR STORY
   ================================ */

#story { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 3px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
}
.story-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(240,165,0,0.4);
}
.story-badge strong { font-family: 'Oswald',sans-serif; font-size: 36px; font-weight: 700; display: block; line-height: 1; }
.story-badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 4px; }

.story-content h2 { margin-bottom: 24px; }
.story-content p { color: var(--gray); font-size: 15.5px; line-height: 1.8; margin-bottom: 18px; }

blockquote {
  margin-top: 30px;
  padding: 22px 28px;
  border-left: 4px solid var(--gold);
  background: var(--off);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.65;
}

/* ================================
   WHY US
   ================================ */

#why { background: var(--navy-mid); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(11,29,58,0.5));
}

.light { color: var(--white) !important; }
.light-sub { color: rgba(255,255,255,0.55) !important; font-size: 16px; line-height: 1.7; margin-bottom: 36px; }

.why-points { display: flex; flex-direction: column; gap: 24px; }
.wpoint { display: flex; gap: 18px; align-items: flex-start; }
.wicon {
  width: 50px; height: 50px;
  background: rgba(240,165,0,0.1);
  border: 1.5px solid rgba(240,165,0,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wpoint:hover .wicon { background: rgba(240,165,0,0.2); }
.wpoint h4 { font-family: 'Oswald',sans-serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 5px; text-transform: uppercase; }
.wpoint p  { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }

/* ================================
   CONTACT
   ================================ */

#contact { background: var(--off); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.cinfo { display: flex; flex-direction: column; gap: 16px; }
.ccard {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
  border-left: 4px solid transparent;
}
.ccard:hover { transform: translateX(5px); border-left-color: var(--gold); }
.ccard-icon { width: 50px; height: 50px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.ccard label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; cursor: pointer; }
.ccard span { font-size: 16px; font-weight: 700; color: var(--navy); display: block; word-break: break-word; }

.cform { background: var(--white); border-radius: 18px; padding: 44px; box-shadow: 0 8px 40px rgba(11,29,58,0.1); }
.cform h3 { font-family: 'Oswald',sans-serif; font-size: 26px; font-weight: 600; text-transform: uppercase; color: var(--navy); margin-bottom: 28px; letter-spacing: 1px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--navy); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde1ea;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter',sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.13);
}
.fg textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Inter',sans-serif;
}
.btn-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ================================
   FIXED CALL & WHATSAPP BUTTONS
   ================================ */

.fixed-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixed-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.fixed-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

.fixed-call {
  background: var(--gold);
  color: var(--navy);
  animation: pulseBadge 2.5s ease-in-out infinite;
}
.fixed-call:hover { animation: none; }

.fixed-wa {
  background: #25D366;
  color: #ffffff;
}

@media (max-width: 520px) {
  .fixed-btns { bottom: 20px; right: 16px; }
  .fixed-btn span { display: none; }
  .fixed-btn { padding: 14px; border-radius: 50%; }
}

/* ================================
   FOOTER DEV CREDIT
   ================================ */

.footer-dev {
  margin-top: 8px;
  color: rgba(255,255,255,0.2) !important;
  font-size: 12px !important;
}
.footer-dev a {
  color: var(--gold) !important;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-dev a:hover { opacity: 0.75; }

/* ================================
   SERVING BAR & FOOTER
   ================================ */

.serving-bar { background: var(--navy); padding: 24px; text-align: center; border-top: 1px solid rgba(240,165,0,0.2); }
.serving-bar p { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }
.serving-cities { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.serving-cities span { color: var(--gold); font-weight: 700; font-size: 15px; }
.serving-cities .dot { color: rgba(255,255,255,0.2); font-size: 18px; }

footer { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.05); padding: 24px; text-align: center; }
footer p { color: rgba(255,255,255,0.3); font-size: 13px; }
footer span { color: var(--gold); }
footer a { color: var(--gold); text-decoration: none; }

/* ================================
   LIGHTBOX
   ================================ */

.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 1000px; width: 100%; display: flex; align-items: center; justify-content: center; }
.lb-inner img { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); object-fit: contain; animation: lbIn 0.2s ease; }
@keyframes lbIn { from{opacity:0;transform:scale(0.96)} to{opacity:1;transform:scale(1)} }
.lb-caption { position: absolute; bottom: -36px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.lb-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: white; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10000; }
.lb-close:hover { background: rgba(240,165,0,0.3); border-color: var(--gold); }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2); color: white; width: 52px; height: 52px; border-radius: 50%; font-size: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10000; backdrop-filter: blur(4px); }
.lb-arrow:hover { background: rgba(240,165,0,0.25); border-color: var(--gold); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 700; letter-spacing: 2px; z-index: 10000; }

/* ================================
   ANIMATIONS
   ================================ */

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.scard:nth-child(2).fade-up{transition-delay:0.08s}
.scard:nth-child(3).fade-up{transition-delay:0.16s}
.scard:nth-child(4).fade-up{transition-delay:0.24s}
.scard:nth-child(5).fade-up{transition-delay:0.32s}
.gitem:nth-child(2).fade-up{transition-delay:0.1s}
.gitem:nth-child(3).fade-up{transition-delay:0.2s}
.gitem:nth-child(4).fade-up{transition-delay:0.15s}
.gitem:nth-child(5).fade-up{transition-delay:0.25s}

/* ================================
   RESPONSIVE
   ================================ */

@media(max-width:1024px){
  .how-grid{grid-template-columns:1fr 1fr}
  .story-grid,.why-grid{grid-template-columns:1fr;gap:48px}
  .story-img,.why-img{height:300px}
  .contact-grid{grid-template-columns:1fr}
}

@media(max-width:900px){
  nav { padding: 0 16px; height: 64px; }

  .nav-logo-icon { width: 32px !important; height: 32px !important; }
  .nav-logo-text span:first-child { font-size: 11px !important; letter-spacing: 1px; }
  .nav-logo-text span:last-child  { font-size: 15px !important; letter-spacing: 1px; }
  .nav-logo { gap: 8px; }

  .nav-right { display: flex; align-items: center; gap: 10px; }
  .hamburger { display: flex !important; width: 36px; height: 36px; align-items: center; justify-content: center; padding: 6px; }
  .hamburger span { width: 22px; }
  .nav-links{
    display:none;
    position:absolute;
    top:72px;left:0;right:0;
    background:#060c1a;
    backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
    flex-direction:column;
    gap:0;padding:10px 0;
    box-shadow:0 8px 32px rgba(0,0,0,0.5);
  }
  .nav-links.open{display:flex}
  .nav-links li{width:100%}
  .nav-links a{display:block;padding:14px 28px;border-radius:0;font-size:14px}
  .nav-links a.active::after{display:none}
  .nav-cta{margin:10px 28px 6px;border-radius:8px !important;text-align:center}
  .hamburger{display:flex}

  .carousel-content{padding:0 24px;max-width:100%}
  .free-badge{width:84px;height:84px;top:82px;right:16px}
  .free-badge strong{font-size:18px}

  .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .gitem:first-child{grid-column:span 2;grid-row:span 1;height:240px}
  .gitem{height:185px}

  .frow{grid-template-columns:1fr}
  .cform{padding:28px 22px}
  section{padding:70px 20px}
  .stat-sep{display:none}

  .lb-prev{left:8px}
  .lb-next{right:8px}
}

@media(max-width:520px){
  .carousel-content h1{font-size:36px}
  .carousel-btns{flex-direction:column}
  .btn-primary,.btn-outline{text-align:center}
  .how-grid{grid-template-columns:1fr}
  .free-badge{display:none}
}
