/* ============================================================
   Borders Hydro Clean — Shared Stylesheet
   JDWebDesigns™
   ============================================================ */

/* ── SELF-HOSTED FONTS (no Google Fonts latency) ── */
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: optional; src: url('assets/fonts/barlow-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: optional; src: url('assets/fonts/barlow-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: optional; src: url('assets/fonts/barlowcondensed-700.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 900; font-display: optional; src: url('assets/fonts/barlowcondensed-900.woff2') format('woff2'); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
section, nav, footer, div.stats, div.emergency-bar { max-width: 100%; overflow-x: hidden; }

body {
  font-family: 'Barlow', sans-serif;
  background: #111827;
  color: #f9fafb;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
  line-height: 1.6;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(12,46,91,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
}
.nav-logo { height: 54px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-wrap { background: rgba(255,252,245,0.95); padding: 4px 10px; display: inline-flex; align-items: center; flex-shrink: 0; border-radius: 6px; }
.nav-centre { display: flex; align-items: center; gap: 2rem; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a { color: #9ca3af; text-decoration: none; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; transition: color 0.2s; }
nav ul a:hover, nav ul a.active { color: #EF751F; }
.nav-cta { background: transparent; color: #EF751F; padding: 0.5rem 1.4rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; border: 2px solid #EF751F; text-decoration: none; transition: all 0.2s; }
.nav-cta:hover { background: #EF751F; color: #000; }

/* ── EMERGENCY BAR ── */
.emergency-bar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 200;
  background: #c75e18;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.55rem 1.5rem; flex-wrap: wrap;
  border-bottom: 2px solid #000;
}
.emergency-bar-text {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #000; line-height: 1.4;
}
.emergency-bar a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase;
  color: #000; text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
}
.pulse-dot {
  width: 9px; height: 9px; background: #000; border-radius: 50%;
  animation: pulse-ring 1.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,0,0,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px);
  background:
    radial-gradient(circle, rgba(239,117,31,0.18) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(255,252,245,0.92) 0%, rgba(248,243,232,0.96) 100%);
  background-size: 28px 28px, 100% 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center; padding: 0 2rem 80px; margin-top: -60px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #EF751F; margin-bottom: 1.5rem; }
.eyebrow::before, .eyebrow::after { content: ''; display: block; width: 32px; height: 1px; background: #EF751F; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem, 9vw, 6.5rem); font-weight: 900; text-transform: uppercase; line-height: 0.95; color: #f9fafb; margin-bottom: 1.5rem; max-width: 900px; letter-spacing: 0.5px; }
.hero h1 span { color: #EF751F; }
.hero p { font-size: 1.1rem; color: #2c3e50; max-width: 580px; line-height: 1.8; margin-bottom: 2.5rem; letter-spacing: 0.3px; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-p {
  background: #EF751F; color: #000; padding: 1rem 2.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 2px; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 0 0 0 rgba(239,117,31,0.7);
  animation: btn-pulse 2s ease-out infinite;
  transition: background 0.2s;
}
.btn-p:hover { background: #c75e18; animation: none; }
@keyframes btn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,117,31,0.65); }
  70%  { box-shadow: 0 0 0 14px rgba(239,117,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,117,31,0); }
}
.btn-o { background: transparent; color: #0C2E5B; padding: 1rem 2.5rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; border: 2px solid #0C2E5B; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-o:hover { border-color: #EF751F; color: #EF751F; }
.trust { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: #2c3e50; }
.trust-badge em { color: #EF751F; font-style: normal; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:
    radial-gradient(circle, rgba(239,117,31,0.18) 1.5px, transparent 1.5px),
    linear-gradient(to bottom, rgba(255,252,245,0.92) 0%, rgba(248,243,232,0.96) 100%);
  background-size: 28px 28px, 100% 100%;
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-hero .sec-label { margin-bottom: 0.75rem; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; text-transform: uppercase;
  color: #0C2E5B; line-height: 1; margin-bottom: 1rem; letter-spacing: 0.5px;
}
.page-hero h1 span { color: #EF751F; }
.page-hero p { color: #2c3e50; max-width: 560px; margin: 0 auto; line-height: 1.8; letter-spacing: 0.2px; }

/* ── STATS BAR ── */
.stats { background: #EF751F; padding: 1.5rem 2rem; display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: #000; line-height: 1; }
.stat-l { font-size: 0.82rem; font-weight: 700; color: rgba(0,0,0,0.87); text-transform: uppercase; letter-spacing: 0.8px; line-height: 1.4; }

/* ── HOW IT WORKS ── */
.how { padding: 6rem 2rem; background: #0D2E59; content-visibility: auto; contain-intrinsic-size: 0 500px; }
.sec-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #EF751F; text-align: center; margin-bottom: 0.5rem; line-height: 1.4; }
.sec-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-transform: uppercase; color: #f9fafb; text-align: center; margin-bottom: 3rem; letter-spacing: 0.5px; }
.how-steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.how-step { text-align: center; padding: 2.5rem 2rem; background: rgba(255,255,255,0.07); position: relative; }
.how-step::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: #EF751F; }
.how-num { font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 900; color: rgba(245,158,11,0.18); line-height: 1; margin-bottom: 0.5rem; }
.how-step h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: #f9fafb; margin-bottom: 0.6rem; letter-spacing: 0.3px; }
.how-step p { font-size: 0.88rem; color: #b0bec5; line-height: 1.8; letter-spacing: 0.2px; }
@media (min-width: 769px) {
  .how-step:not(:last-child)::before {
    content: '\276F';
    position: absolute; right: -1.1rem; top: 50%;
    transform: translateY(-50%);
    color: rgba(239,117,31,0.55);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem; font-weight: 900;
  }
}

/* ── SERVICES ── */
.services { padding: 6rem 2rem; background: radial-gradient(circle, rgba(239,117,31,0.18) 1.5px, transparent 1.5px) center/28px 28px, #f5f0e6; content-visibility: auto; contain-intrinsic-size: 0 800px; }
.svc-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.svc-card {
  background: #fff; padding: 2.2rem 2rem;
  border: 1px solid #e8e0d4;
  border-top: 3px solid transparent;
  transition: border-top-color 0.25s, transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 1rem;
}
.svc-card:hover { border-top-color: #EF751F; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.svc-icon-wrap {
  width: 54px; height: 54px; background: #EF751F;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-icon-wrap svg { width: 26px; height: 26px; fill: #000; }
.svc-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; color: #0D2E59; letter-spacing: 0.7px; }
.svc-card p { color: #6b7280; font-size: 0.9rem; line-height: 1.8; letter-spacing: 0.2px; flex: 1; }
.svc-tag { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #EF751F; border-left: 2px solid #EF751F; padding-left: 0.5rem; line-height: 1.4; }
.svc-cta-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: #EF751F; text-decoration: none;
  margin-top: auto; transition: gap 0.2s;
}
.svc-cta-link:hover { gap: 0.7rem; }

/* ── ABOUT ── */
.about { padding: 6rem 2rem; background: #0D2E59; content-visibility: auto; contain-intrinsic-size: 0 600px; }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .sec-label { color: #EF751F; text-align: left; }
.about-text h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; color: #f9fafb; margin: 0.5rem 0 1.2rem; line-height: 1.1; }
.about-text h2 span { color: #EF751F; }
.about-text p { color: #8fadc8; line-height: 1.9; letter-spacing: 0.2px; margin-bottom: 2rem; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.about-list li { display: flex; align-items: center; gap: 0.9rem; color: #f9fafb; font-size: 0.95rem; line-height: 1.7; }
.about-list li::before { content: ''; display: block; width: 8px; height: 8px; background: #EF751F; flex-shrink: 0; }
.about-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.ab { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-top: 3px solid #EF751F; padding: 2rem 1.5rem; text-align: center; will-change: transform; transform: translateZ(0); contain: layout; }
.ab-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: #EF751F; line-height: 1; }
.ab-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #8fadc8; margin-top: 0.4rem; }

/* ── WHY US ── */
.why { padding: 6rem 2rem; background: radial-gradient(circle, rgba(239,117,31,0.18) 1.5px, transparent 1.5px) center/28px 28px, #f5f0e6; content-visibility: auto; contain-intrinsic-size: 0 600px; }
.why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-text h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; color: #0D2E59; margin-bottom: 1rem; }
.why-text p { color: #4a5568; line-height: 1.9; letter-spacing: 0.2px; margin-bottom: 2rem; }
.chk { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.chk li { display: flex; align-items: center; gap: 0.8rem; color: #2d3748; line-height: 1.7; }
.chk li::before { content: '●'; color: #EF751F; font-size: 0.5rem; flex-shrink: 0; }
.reviews { display: flex; flex-direction: column; gap: 1rem; }
.rv { background: #fff; padding: 1.8rem; position: relative; }
.rv::before { content: '"'; position: absolute; top: 0.5rem; right: 1rem; font-family: Georgia, serif; font-size: 4rem; color: rgba(245,158,11,0.18); line-height: 1; }
.stars { color: #EF751F; margin-bottom: 0.5rem; }
.rv-txt { color: #4a5568; font-size: 0.9rem; line-height: 1.8; letter-spacing: 0.2px; font-style: italic; margin-bottom: 0.6rem; }
.rv-name { font-size: 0.82rem; color: #4a5568; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── BEFORE & AFTER ── */
.ba-section { padding: 5rem 2rem; background: radial-gradient(circle, rgba(239,117,31,0.18) 1.5px, transparent 1.5px), linear-gradient(to bottom, rgba(255,252,245,0.92) 0%, rgba(248,243,232,0.96) 100%); background-size: 28px 28px, 100% 100%; text-align: center; border-top: 4px solid #EF751F; }
.ba-section .sec-title { color: #0C2E5B; }
.ba-section .sec-title span { color: #EF751F; }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1100px; margin: 2.5rem auto 0; }
.ba-pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; background: #fff; border-radius: 6px; box-shadow: 0 8px 32px rgba(12,46,91,0.13); padding: 0.75rem; gap: 0.75rem; }
.ba-arrow { font-size: 1.8rem; color: #EF751F; font-weight: 900; line-height: 1; align-self: center; flex-shrink: 0; }
.ba-img-wrap { position: relative; overflow: hidden; border-radius: 4px; border: 4px solid #0C2E5B; box-shadow: 0 4px 18px rgba(12,46,91,0.18), inset 0 0 0 2px rgba(239,117,31,0.4); }
.ba-img-wrap img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ba-img-wrap:hover img { transform: scale(1.05); }
.ba-tag { position: absolute; bottom: 0.6rem; left: 0.6rem; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 3px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); line-height: 1.4; }
.ba-before { background: #1a1a1a; color: #fff; }
.ba-after  { background: #EF751F; color: #000; font-weight: 900; }

/* ── CTA / CONTACT ── */
.cta-s { padding: 6rem 2rem; background: #0D2E59; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
.cta-s h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; text-transform: uppercase; color: #f9fafb; line-height: 1; margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.cta-s h2 span { color: #EF751F; }
.cta-s p { color: #9ca3af; max-width: 480px; margin: 0.8rem auto 2rem; line-height: 1.8; letter-spacing: 0.2px; }
.call-big { display: inline-flex; align-items: center; gap: 0.8rem; background: #EF751F; color: #000; padding: 1.1rem 2.5rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; margin-bottom: 0.75rem; transition: background 0.2s; }
.call-big:hover { background: #c75e18; }
.call-land { display: inline-flex; align-items: center; gap: 0.8rem; color: #9ca3af; padding: 0.6rem 1rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; margin-bottom: 2rem; transition: color 0.2s; }
.call-land:hover { color: #EF751F; }
.form-wrap { background: #1f2937; padding: 2.5rem; max-width: 700px; margin: 0 auto; border: 1px solid #374151; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.ff { display: flex; flex-direction: column; gap: 0.5rem; }
.ff label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; line-height: 1.5; }
.fi { padding: 0.9rem 1rem; font-family: 'Barlow', sans-serif; font-size: 0.92rem; border: 1.5px solid #374151; background: #111827; color: #f9fafb; outline: none; transition: border-color 0.2s; width: 100%; line-height: 1.5; letter-spacing: 0.1px; }
.fi:focus { border-color: #EF751F; }
.fi::placeholder { color: #6b7280; opacity: 0.8; }
.form-full { margin-bottom: 1.2rem; }
.form-full label { display: block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; margin-bottom: 0.6rem; line-height: 1.5; }
.fta { width: 100%; min-height: 120px; resize: vertical; padding: 0.9rem 1rem; line-height: 1.6; letter-spacing: 0.1px; }
.btn-sub { background: #EF751F; color: #000; padding: 1rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; width: 100%; margin-top: 0.5rem; transition: background 0.2s; }
.btn-sub:hover { background: #c75e18; }
.form-notice { font-size: 0.82rem; color: #9ca3af; text-align: center; margin-top: 0.75rem; line-height: 1.7; }
.form-success { display: none; text-align: center; padding: 1.5rem; background: rgba(34,197,94,0.1); border: 1px solid #16a34a; color: #4ade80; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ── FOOTER ── */
footer {
  background: #080e18;
  padding: 0;
  border-top: 3px solid #EF751F;
  position: relative;
}
footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, rgba(239,117,31,0.07), transparent);
  pointer-events: none;
}
.ft-top { padding: 4rem 2rem 3rem; }
.ft-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 3.5rem; }
.ft-logo { height: 90px; width: auto; display: block; margin-bottom: 1.4rem; background: rgba(255,252,245,0.95); padding: 0.5rem 0.75rem; border-radius: 6px; filter: drop-shadow(0 2px 12px rgba(239,117,31,0.25)); }
.ft-brand p { color: #9ca3af; font-size: 0.85rem; line-height: 1.9; letter-spacing: 0.2px; margin-bottom: 1.4rem; }
.ft-contact-block { display: flex; flex-direction: column; gap: 0.6rem; }
.ft-ph {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #f9fafb; font-weight: 700; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem;
  letter-spacing: 0.5px; transition: color 0.2s;
}
.ft-ph:hover { color: #EF751F; }
.ft-ph-icon { width: 32px; height: 32px; background: #EF751F; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.ft-wa-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #4ade80; font-weight: 700; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem;
  letter-spacing: 0.5px; margin-top: 0.2rem; transition: color 0.2s;
}
.ft-wa-link:hover { color: #86efac; }
.ft-wa-icon { width: 32px; height: 32px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-wa-icon svg { width: 16px; height: 16px; fill: #fff; }
.ft-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 2.5px; text-transform: uppercase; color: #EF751F; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid #1f2937; line-height: 1.5; }
.ft-col a { display: flex; align-items: center; gap: 0.5rem; color: #9ca3af; text-decoration: none; font-size: 0.9rem; margin-bottom: 0.55rem; transition: color 0.2s; line-height: 1.6; }
.ft-col a::before { content: ''; display: block; width: 4px; height: 4px; background: #EF751F; border-radius: 50%; flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s; }
.ft-col a:hover { color: #EF751F; }
.ft-col a:hover::before { opacity: 1; }
.ft-col p { font-size: 0.9rem; color: #9ca3af; line-height: 2; letter-spacing: 0.1px; }
.ft-badge {
  background: rgba(239,117,31,0.08); border: 1px solid rgba(239,117,31,0.2);
  padding: 1.4rem 1.2rem; margin-top: 0.5rem;
}
.ft-badge-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 2.5px; text-transform: uppercase; color: #EF751F; margin-bottom: 0.8rem; line-height: 1.5; }
.ft-badge-items { display: flex; flex-direction: column; gap: 0.5rem; }
.ft-badge-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: #d1d5db; line-height: 1.6; }
.ft-badge-item span { color: #EF751F; font-weight: 700; }
.ft-bottom {
  border-top: 1px solid #1f2937; padding: 1.4rem 7rem 1.4rem 2rem;
  max-width: 100%; background: #040810;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 0.5rem; font-size: 0.85rem; color: #6b7280;
  align-items: center; line-height: 1.6;
}
.ft-bottom-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.ft-bottom span { color: #EF751F; }
.ft-bottom a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.ft-bottom a:hover { color: #EF751F; }
.ft-divider { color: #1f2937; }

/* ── SERVICE MAP IMAGE ── */
.service-map-image { width: 70%; max-width: 750px; height: auto; margin: 0 auto; border-radius: 8px; box-shadow: 0 8px 32px rgba(12,46,91,0.15); border: 1px solid rgba(12,46,91,0.2); display: block; }

/* ── SCROLL ANIMATIONS ── */
[data-aos] { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-on { opacity: 1; transform: none; }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-right"].aos-on { transform: none; }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="fade-left"].aos-on { transform: none; }
[data-aos="zoom"] { transform: scale(0.88); }
[data-aos="zoom"].aos-on { transform: none; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 1.5rem; right: 1.2rem; z-index: 800;
  width: 44px; height: 44px; background: #EF751F; color: #000;
  border: none; cursor: pointer; font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: #c75e18; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; z-index: 9000;
  transform: translateX(-50%) translateY(16px);
  background: #0D2E59; color: #EF751F; border-left: 3px solid #EF751F;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.85rem 1.8rem; opacity: 0; pointer-events: none;
  transition: opacity 0.4s, transform 0.4s; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── SECTION-SPECIFIC OVERRIDES ── */
.services .sec-title, .why .sec-title { color: #0D2E59; }
.services .sec-label { color: #EF751F; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #f9fafb; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #0C2E5B; z-index: 250; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  padding-top: 11rem; padding-bottom: 4rem; overflow-y: auto;
}

/* Landscape / short-screen phones — shrink menu items so they all fit */
@media (max-height: 520px) {
  .mobile-menu { gap: 1.2rem; padding-top: 7rem; padding-bottom: 2.5rem; }
  .mobile-menu a { font-size: 1.5rem; }
  .mobile-menu a.mob-cta { font-size: 1.1rem; padding: 0.5rem 1.5rem; margin-top: 0.5rem; }
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #f9fafb; text-decoration: none; }
.mobile-menu a:hover, .mobile-menu a.mob-cta, .mobile-menu a.active { color: #EF751F; }
.mobile-menu a.mob-cta { border: 2px solid #EF751F; padding: 0.7rem 2rem; margin-top: 1rem; font-size: 1.3rem; }

/* ── AVAILABLE INDICATOR ── */
.avail-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(5,46,22,0.85); border: 1px solid #16a34a;
  padding: 0.4rem 1rem; margin-bottom: 1.4rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #4ade80;
}
.avail-dot {
  width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0;
  animation: avail-pulse 1.8s ease-out infinite;
}
@keyframes avail-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ── CYCLING HERO TEXT ── */
#hero-service, #hero-action { display: block; transition: opacity 0.35s ease; }

/* ── REVIEW CAROUSEL ── */
.rv-carousel .rv { display: none; }
.rv-carousel .rv.rv-active { display: block; }
.rv-dots { display: flex; gap: 0.6rem; justify-content: center; margin-top: 1.2rem; }
.rv-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(239,117,31,0.25); border: none; cursor: pointer; padding: 0; transition: background 0.25s; }
.rv-dot.on { background: #EF751F; }

/* ── FLOATING CALL BUTTON (mobile only) ── */
.float-call { display: none; }
@media (max-width: 768px) {
  .float-call {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
    background: #EF751F; color: #000; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.9rem 1rem; text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 1.15rem; letter-spacing: 1px; text-transform: uppercase;
    box-shadow: 0 -3px 16px rgba(239,117,31,0.45);
    animation: float-bob 2.5s ease-in-out infinite;
  }
}
@keyframes float-bob {
  0%, 100% { box-shadow: 0 -3px 16px rgba(239,117,31,0.45); }
  50%       { box-shadow: 0 -3px 24px rgba(239,117,31,0.75); }
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-bar {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: #EF751F; z-index: 99999; pointer-events: none;
}

/* ── WHATSAPP FLOAT BUTTON ── */
.float-wa {
  position: fixed; bottom: 5rem; right: 1.2rem; z-index: 760;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.7); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 768px) { .float-wa { bottom: 4rem; } }

/* ── COOKIE BANNER ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8500;
  background: #0D2E59; border-top: 2px solid #EF751F;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.85rem 1.5rem; flex-wrap: wrap;
  transform: translateY(110%); transition: transform 0.4s ease;
}
.cookie-bar.visible { transform: none; }
.cookie-bar p {
  font-family: 'Barlow', sans-serif; font-size: 0.82rem;
  color: #9ca3af; flex: 1; min-width: 220px; margin: 0;
}
.cookie-bar p a { color: #EF751F; }
.cookie-btn-accept {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: #EF751F; color: #000; border: none; cursor: pointer;
  padding: 0.5rem 1.3rem; white-space: nowrap; flex-shrink: 0;
}
.cookie-btn-accept:hover { background: #c75e18; }
.cookie-btn-dismiss {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  background: transparent; color: #6b7280; border: 1px solid #374151;
  cursor: pointer; padding: 0.5rem 1rem; white-space: nowrap; flex-shrink: 0;
}
.cookie-btn-dismiss:hover { color: #9ca3af; border-color: #6b7280; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav ul, .nav-cta { display: none; }
  nav { justify-content: space-between; padding: 0 1.2rem; }
  .hamburger { display: flex; }
  .emergency-bar { flex-direction: column; gap: 0.2rem; padding: 0.5rem 1rem; text-align: center; }
  .hero { min-height: auto; padding: 0 1.2rem 60px; margin-top: 0; }
  .hero-logo-wrap { width: 100%; overflow: hidden; }
  .hero-logo-wrap img { margin-top: -4.5rem; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); min-height: 7rem; }
  .hero p { font-size: 0.92rem; }
  .trust { gap: 0.8rem; flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-p, .btn-o { text-align: center; justify-content: center; }
  .stats { gap: 0; padding: 0; flex-wrap: wrap; }
  .stat { flex: 1 1 50%; padding: 1.2rem 0.5rem; border-bottom: 1px solid rgba(0,0,0,0.15); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.15); }
  .how { padding: 4rem 1.2rem; }
  .how-steps { grid-template-columns: 1fr; gap: 1.2rem; }
  .services { padding: 4rem 1.2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .about { padding: 4rem 1.2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badges { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .ab { padding: 1.2rem 0.8rem; }
  .ab-num { font-size: 2rem; }
  .why { padding: 4rem 1.2rem; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-s { padding: 4rem 1.2rem; }
  .call-big { font-size: 1rem; padding: 1rem 1.5rem; width: 100%; justify-content: center; }
  .call-land { font-size: 0.9rem; }
  .form-wrap { padding: 1.5rem 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 1.2rem; }
  .ft-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ft-logo { height: 70px; }
  .ft-bottom { flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; padding: 1.4rem 1.5rem 1.4rem; }
  .ft-bottom-left { justify-content: center; }
  .page-hero { padding: 3.5rem 1.2rem 3rem; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-section { padding: 3rem 1.2rem; }
  .ba-img-wrap img { height: 160px; }
  /* Fix CSS grid min-width overflow bug on mobile */
  .why-inner > *, .about-inner > *, .how-steps > *, .ft-inner > * { min-width: 0; }
  /* Prevent long text overflowing clipped sections */
  .chk li, .about-list li, .how-step p, .how-step h3,
  .about-text p, .why-text p, .why-text h2, .sec-title { word-break: break-word; overflow-wrap: break-word; }
  body { padding-bottom: 56px; }
  .float-wa { bottom: 4.5rem; }
  .back-top { bottom: 9rem; }
}

/* ── TINY PHONES (≤ 360px) ── */
@media (max-width: 360px) {
  .hero-logo-wrap img { margin-top: -2rem; }
  .emergency-bar-text { font-size: 0.72rem; letter-spacing: 1px; }
  .emergency-bar a { font-size: 0.95rem; letter-spacing: 1px; }
  .btn-p { font-size: 1rem; padding: 0.85rem 1rem; letter-spacing: 1px; }
  .btn-o { font-size: 0.95rem; padding: 0.85rem 1rem; }
  .float-call { font-size: 0.9rem; letter-spacing: 0.5px; }
  .stat-n { font-size: 1.7rem; }
  .call-big { font-size: 0.9rem; padding: 0.85rem 1rem; }
  .form-wrap { padding: 1rem 0.75rem; }
  .about-badges { grid-template-columns: repeat(2, 1fr); }
  .ab { padding: 1rem 0.6rem; }
  .ab-num { font-size: 1.8rem; }
  .nav-logo { height: 44px; }
}

/* ── TABLET PORTRAIT (601px – 1024px) ── */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero { min-height: auto; padding-bottom: 5rem; }
  .stats { gap: 2rem; }
  .about-inner { gap: 3rem; }
  .why-inner { gap: 3rem; }
  .how-steps { gap: 1.5rem; }
  .svc-grid { gap: 1.2rem; }
  .ft-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .ft-brand { grid-column: 1 / -1; }
}

/* ── LARGE TABLETS & NEST HUB (1025px – 1280px) ── */
@media (min-width: 1025px) and (max-width: 1280px) {
  .about-inner { gap: 3.5rem; }
  .why-inner { gap: 3.5rem; }
  .ft-inner { gap: 2.5rem; }
}
