/* ============================================================
   Refill24x7 — Branch landing page styles
   Matches the main site's design tokens (Orbitron / Barlow,
   orange-gold-ember palette). Shared by /ravet and /moshi.
   ============================================================ */

:root {
  --orange: #ff8a00;
  --orange-dim: rgba(255,138,0,0.15);
  --gold: #ffca28;
  --gold-dim: rgba(255,202,40,0.15);
  --ember: #ff5722;
  --ember-dim: rgba(255,87,34,0.15);
  --green: #00ff88;
  --bg: #080605;
  --bg2: #0c0907;
  --bg3: #12100b;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.07);
  --text: #ffffff;
  --text-muted: #8f887c;
  --text-dim: #5f584c;
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Orbitron', monospace;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange-dim); border-radius: 2px; }

a { color: inherit; }

/* ─── GRID BG ─── */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,138,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,138,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  transform: translateZ(0);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 1.5rem;
  background: rgba(8,6,5,0.98);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; transition: opacity 0.2s; }
.nav-logo img:hover { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--orange); color: #000;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  border: none; border-radius: 10px; cursor: pointer;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.btn-call:hover { background: #fff; box-shadow: 0 0 30px rgba(255,138,0,0.5); transform: translateY(-1px); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--orange); color: #000;
  font-weight: 700; font-size: 15px; border: none; border-radius: 12px;
  cursor: pointer; text-decoration: none; font-family: var(--font-body);
  position: relative; overflow: hidden; transition: all 0.25s;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-primary:hover::after { animation: btnSheen 0.75s ease; }
@keyframes btnSheen { to { left: 140%; } }
.btn-primary:hover { background: #fff; box-shadow: 0 0 40px rgba(255,138,0,0.6); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--glass); color: var(--text);
  font-weight: 600; font-size: 15px; border: 1px solid var(--glass-border);
  border-radius: 12px; cursor: pointer; text-decoration: none;
  font-family: var(--font-body); transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
  position: relative; overflow: hidden;
  padding: 150px 1.5rem 70px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18;
  filter: saturate(0.55) sepia(0.35) hue-rotate(-12deg) brightness(0.9); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,6,5,0.4) 0%, rgba(8,6,5,0.78) 55%, var(--bg) 100%);
}
.orb { position: absolute; border-radius: 50%; pointer-events: none; animation: orbFloat 8s ease-in-out infinite; }
.orb-1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,138,0,0.18) 0%, rgba(255,138,0,0) 70%); top: -120px; left: -100px; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,202,40,0.15) 0%, rgba(255,202,40,0) 70%); top: 80px; right: -60px; animation-delay: -3s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.breadcrumb {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: 12px; color: var(--text-dim); margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 8px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border: 1px solid rgba(0,255,136,0.3);
  border-radius: 100px; background: rgba(0,255,136,0.05);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: pulse-green 2s infinite; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px var(--green), 0 0 0 0 rgba(0,255,136,0.5); }
  50% { box-shadow: 0 0 8px var(--green), 0 0 0 6px rgba(0,255,136,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 60%, var(--ember) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 26px rgba(255,170,40,0.28));
}
.hero-sub { color: var(--text-muted); font-size: 16.5px; line-height: 1.75; max-width: 640px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── QUICK INFO BAR ─── */
.info-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--glass-border); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden; margin-top: 44px;
}
.info-cell { background: var(--bg2); padding: 20px 18px; display: flex; gap: 13px; align-items: flex-start; }
.info-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  background: var(--orange-dim); color: var(--orange);
}
.info-k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 700; margin-bottom: 4px; }
.info-v { font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.info-v a { color: var(--text); text-decoration: none; }
.info-v a:hover { color: var(--orange); }
@media (max-width: 780px) { .info-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .info-bar { grid-template-columns: 1fr; } }

/* ─── SECTIONS ─── */
section { position: relative; z-index: 1; }
.section-pad { padding: 72px 1.5rem; }
.max-w { max-width: 1000px; margin: 0 auto; }
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 14px;
}
.grad-text { background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { color: var(--text-muted); font-size: 16px; max-width: 620px; line-height: 1.7; }
.section-header.center .section-desc { margin: 0 auto; }
.prose p { color: var(--text-muted); font-size: 15.5px; line-height: 1.85; margin-bottom: 18px; }
.prose strong { color: var(--text); }

/* ─── FEATURE CARDS ─── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 26px 22px; transition: all 0.3s;
}
.feat-card:hover { border-color: rgba(255,138,0,0.22); transform: translateY(-4px); }
.feat-ico {
  width: 52px; height: 52px; border-radius: 13px; background: var(--orange-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; color: var(--orange); margin-bottom: 16px;
}
.feat-card.gold .feat-ico { background: var(--gold-dim); color: var(--gold); }
.feat-card.ember .feat-ico { background: var(--ember-dim); color: #ff8a4c; }
.feat-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.feat-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 780px) { .feat-grid { grid-template-columns: 1fr; } }

/* ─── AREAS SERVED ─── */
.areas-wrap { background: var(--bg2); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border);
  font-size: 13.5px; font-weight: 600; color: #d7d2c8; transition: all 0.2s;
}
.chip i { color: var(--orange); font-size: 9px; }
.chip:hover { border-color: rgba(255,138,0,0.3); color: #fff; }

/* ─── MAP ─── */
.map-frame {
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 16/8; box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.05); }
.map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ─── FAQ ─── */
.faq-list { }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px; background: none; border: none; cursor: pointer;
  color: var(--text); font-family: var(--font-body); font-size: 16px; font-weight: 600; text-align: left;
}
.faq-btn i { color: var(--orange); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-btn i { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-body.open { max-height: 320px; }
.faq-body p { color: var(--text-muted); font-size: 15px; line-height: 1.75; padding: 0 4px 22px; }

/* ─── CROSS-LINK / OTHER BRANCH ─── */
.branch-link {
  display: flex; align-items: center; gap: 18px; text-decoration: none;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 24px 26px; transition: all 0.3s;
}
.branch-link:hover { border-color: rgba(255,138,0,0.3); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.branch-link-ico {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: var(--gold-dim); color: var(--gold);
}
.branch-link-k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); font-weight: 700; margin-bottom: 5px; }
.branch-link-t { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.branch-link-s { font-size: 13px; color: var(--text-muted); }
.branch-link-arrow { margin-left: auto; color: var(--orange); font-size: 15px; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: linear-gradient(135deg, rgba(255,138,0,0.08), rgba(255,87,34,0.06));
  border: 1px solid rgba(255,138,0,0.2); border-radius: var(--radius-lg);
  padding: 44px 40px; text-align: center;
}
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 800; margin-bottom: 12px; }
.cta-strip p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 26px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--glass-border); padding: 44px 1.5rem; background: var(--bg2); }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo { height: 44px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-nav a:hover { color: var(--orange); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ─── REACH US / DIRECTIONS ─── */
.reach-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .reach-grid { grid-template-columns: 1fr; gap: 28px; } }
.reach-steps { list-style: none; counter-reset: step; }
.reach-steps li {
  counter-increment: step; position: relative; padding: 0 0 22px 52px; font-size: 15px; line-height: 1.55; color: #d7d2c8;
}
.reach-steps li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--orange-dim); color: var(--orange);
  border: 1px solid rgba(255,138,0,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.reach-steps li::after {
  content: ''; position: absolute; left: 16px; top: 34px; bottom: 6px; width: 1px;
  background: linear-gradient(var(--glass-border), transparent);
}
.reach-steps li:last-child { padding-bottom: 0; }
.reach-steps li:last-child::after { display: none; }
.reach-steps strong { color: #fff; }
.reach-note {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 22px; font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.reach-note .rn-title { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; margin-bottom: 12px; font-size: 14px; }
.reach-note .rn-title i { color: var(--orange); }

/* ─── REVIEWS ─── */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 8px; }
.reviews-stars { color: #ffca28; font-size: 20px; letter-spacing: 2px; }
.reviews-score { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.reviews-embed { min-height: 120px; }

/* ─── PRICE CTA ─── */
.price-cta {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255,202,40,0.08), rgba(255,138,0,0.05));
  border: 1px solid rgba(255,202,40,0.22); border-radius: var(--radius-lg); padding: 30px 34px;
}
.price-cta-ico {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: var(--gold-dim); color: var(--gold);
}
.price-cta-t { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.price-cta-s { font-size: 14px; color: var(--text-muted); }
.price-cta .btn-primary { margin-left: auto; }
@media (max-width: 620px) { .price-cta .btn-primary { margin-left: 0; width: 100%; justify-content: center; } }

/* ─── CALL MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(4,3,2,0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  width: 100%; max-width: 380px;
  background: var(--bg2); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: modalPop 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalPop { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.modal-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; padding: 4px; line-height: 1; }
.modal-close:hover { color: var(--orange); }
.modal-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.call-link {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; transition: all 0.2s;
}
.call-link:last-child { margin-bottom: 0; }
.call-link:hover { border-color: rgba(255,138,0,0.35); transform: translateY(-2px); }
.call-icon { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.call-branch { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 700; margin-bottom: 3px; }
.call-num { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; white-space: nowrap; }
.call-tag { margin-left: auto; flex-shrink: 0; white-space: nowrap; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 10px; border-radius: 100px; background: var(--gold-dim); color: var(--gold); }

/* ─── CALL MODAL ─── end */

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
