/* ============================================================
   FRIENDS MOBILE — style.css
   Theme: Premium dark-first, electric blue accent, geometric
   Font: Syne (display) + DM Sans (body)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); transition: background .4s, color .4s; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --accent: #00c6ff;
  --accent2: #0072ff;
  --accent-glow: rgba(0,198,255,.25);
  --green: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(0,0,0,.35);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}
[data-theme="dark"] {
  --bg: #080c14;
  --bg2: #0d1220;
  --bg3: #111827;
  --card: #111827;
  --card-border: rgba(255,255,255,.07);
  --text: #e8eaf0;
  --text-muted: #8090a8;
  --nav-bg: rgba(8,12,20,.85);
}
[data-theme="light"] {
  --bg: #f0f4fc;
  --bg2: #ffffff;
  --bg3: #e8edf7;
  --card: #ffffff;
  --card-border: rgba(0,0,0,.08);
  --text: #0d1220;
  --text-muted: #5a6880;
  --nav-bg: rgba(240,244,252,.9);
}

/* ── UTILITY ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.mt-20 { margin-top: 20px; }

.section-tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(0,198,255,.3);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}
.accent-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { color: var(--text-muted); margin-top: 14px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: .95rem;
  cursor: pointer; transition: var(--transition); border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,198,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,198,255,.5); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ─────────────────────────────────────────────────────────── */
/* LOADING SCREEN                                              */
/* ─────────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }

.loader-phone { margin-bottom: 24px; }
.phone-body {
  width: 52px; height: 96px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 40px var(--accent-glow);
  animation: phonePulse 1.5s ease-in-out infinite;
}
.phone-screen {
  position: absolute; inset: 6px 5px 14px;
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  padding: 6px 4px;
}
.phone-signal { display: flex; gap: 2px; justify-content: center; }
.phone-signal span {
  width: 3px; background: var(--accent); border-radius: 2px;
  animation: signalBars .8s ease-in-out infinite alternate;
}
.phone-signal span:nth-child(1) { height: 6px; animation-delay: 0s; }
.phone-signal span:nth-child(2) { height: 10px; animation-delay: .15s; }
.phone-signal span:nth-child(3) { height: 14px; animation-delay: .3s; }
.phone-btn {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 4px; background: rgba(255,255,255,.4); border-radius: 2px;
}
@keyframes phonePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes signalBars { from{opacity:.3} to{opacity:1} }

.loader-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  color: var(--text); letter-spacing: -.02em;
}
.loader-name span { color: var(--accent); }
.loader-bar {
  width: 180px; height: 3px;
  background: var(--card-border);
  border-radius: 3px; margin: 16px auto 0;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  animation: loadBar 2s ease forwards;
}
@keyframes loadBar { from{width:0} to{width:100%} }

/* ─────────────────────────────────────────────────────────── */
/* NAVBAR                                                      */
/* ─────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--text);
}
.nav-logo b { color: var(--accent); }
.logo-icon { font-size: 1.5rem; }
.nav-links {
  display: flex; gap: 4px;
}
.nav-link {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: var(--accent-glow); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.theme-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--card-border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
.theme-btn:hover { border-color: var(--accent); }
.theme-icon { position: absolute; transition: var(--transition); }
[data-theme="dark"] .sun { opacity: 1; transform: scale(1); }
[data-theme="dark"] .moon { opacity: 0; transform: scale(0); }
[data-theme="light"] .sun { opacity: 0; transform: scale(0); }
[data-theme="light"] .moon { opacity: 1; transform: scale(1); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--nav-bg); backdrop-filter: blur(16px);
    flex-direction: column; padding: 16px;
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-110%); opacity: 0;
    transition: var(--transition); pointer-events: none;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: all; }
}

/* ─────────────────────────────────────────────────────────── */
/* HERO                                                        */
/* ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
  max-width: 1200px; margin: 0 auto;
  gap: 60px;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--card-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--card-border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,198,255,.12), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-glow); border: 1px solid rgba(0,198,255,.3);
  color: var(--accent); padding: 6px 14px; border-radius: 999px;
  font-size: .82rem; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  color: var(--text); margin-bottom: 20px;
}
.hero-sub {
  color: var(--text-muted); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Floating Phone */
.hero-visual {
  flex: 0 0 300px;
  display: flex; align-items: center; justify-content: center;
}
.floating-phone { position: relative; animation: phoneFloat 4s ease-in-out infinite; }
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
.fp-body {
  width: 140px; height: 280px;
  background: linear-gradient(160deg, #1e2d45, #0d1220);
  border-radius: 28px;
  border: 2px solid rgba(0,198,255,.3);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px var(--card-border), inset 0 0 40px rgba(0,198,255,.05);
}
.fp-screen {
  position: absolute; inset: 8px 7px 18px;
  background: linear-gradient(160deg, #0a1628, #0f1e35);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; padding: 16px 10px;
  gap: 12px;
}
.fp-status {
  width: 40px; height: 4px;
  background: rgba(0,198,255,.4);
  border-radius: 4px;
}
.fp-app-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; width: 100%; flex: 1;
}
.fp-app {
  aspect-ratio: 1; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,198,255,.2), rgba(0,114,255,.1));
  animation: appPulse 2s ease-in-out infinite;
}
.fp-app:nth-child(2) { animation-delay: .3s; }
.fp-app:nth-child(3) { animation-delay: .6s; }
.fp-app:nth-child(4) { animation-delay: .9s; }
.fp-app:nth-child(5) { animation-delay: 1.2s; }
.fp-app:nth-child(6) { animation-delay: 1.5s; }
@keyframes appPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.fp-bar {
  width: 50%; height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
}
.fp-home {
  position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px;
  background: rgba(255,255,255,.2); border-radius: 4px;
}
.fp-shadow {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 20px;
  background: radial-gradient(ellipse, rgba(0,198,255,.25), transparent);
  border-radius: 50%;
}
.fp-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,198,255,.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ringPulse 3s ease-in-out infinite;
}
.fp-ring-1 { width: 220px; height: 220px; animation-delay: 0s; }
.fp-ring-2 { width: 300px; height: 300px; animation-delay: 1s; }
@keyframes ringPulse { 0%,100%{opacity:.3;transform:translate(-50%,-50%) scale(1)} 50%{opacity:.6;transform:translate(-50%,-50%) scale(1.03)} }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: .78rem;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 12px; display: flex;
  justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--accent); border-radius: 2px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { flex: none; }
  .hero-scroll-hint { display: none; }
}

/* ─────────────────────────────────────────────────────────── */
/* STATS STRIP                                                 */
/* ─────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 40px 24px;
}
.stats-container {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-plus { color: var(--accent); font-size: 1.6rem; font-weight: 700; }
.stat-item p { color: var(--text-muted); font-size: .88rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--card-border); }
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ─────────────────────────────────────────────────────────── */
/* ABOUT                                                       */
/* ─────────────────────────────────────────────────────────── */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
}

.about-card-stack {
  position: relative; height: 320px;
}
.acard {
  position: absolute;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow); backdrop-filter: blur(8px);
  font-weight: 500;
  transition: var(--transition);
}
.acard:hover { transform: scale(1.04); }
.acard span { font-size: 1.8rem; }
.acard-1 { top: 0; left: 0; right: 60px; }
.acard-2 { top: 100px; right: 0; left: 60px; }
.acard-3 { bottom: 0; left: 0; right: 40px; }
.about-blob {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-glow), transparent);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: -1;
}

.about-desc { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.about-features { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.af-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .95rem; }
.af-item span { color: var(--accent); font-size: 1.1rem; }

/* ─────────────────────────────────────────────────────────── */
/* MARQUEE                                                     */
.about-image {
    animation: floatImage 4s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.08);
}
/* ─────────────────────────────────────────────────────────── */
.marquee-section {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 24px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center; color: var(--text-muted);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; gap: 0;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}
.marquee-inner span {
  padding: 10px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--text-muted);
  border-right: 1px solid var(--card-border);
  white-space: nowrap;
  transition: var(--transition);
}
.marquee-inner span:hover { color: var(--accent); }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─────────────────────────────────────────────────────────── */
/* SERVICES                                                    */
/* ─────────────────────────────────────────────────────────── */
.services { background: var(--bg3); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 20px;
}
.service-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--transition); cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.25); border-color: rgba(0,198,255,.25); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────── */
/* ACCESSORIES                                                 */
/* ─────────────────────────────────────────────────────────── */
.accessories { background: var(--bg); }
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.acc-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 24px 16px;
  text-align: center; transition: var(--transition);
}
.acc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.2); border-color: rgba(0,198,255,.25); background: linear-gradient(160deg, var(--card), rgba(0,198,255,.04)); }
.acc-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.acc-card h4 { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.acc-card p { color: var(--text-muted); font-size: .82rem; line-height: 1.5; }
.acc-cta {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.acc-cta p { color: var(--text-muted); }
.acc-cta strong { color: var(--accent); }

/* ─────────────────────────────────────────────────────────── */
/* WHY CHOOSE US                                               */
/* ─────────────────────────────────────────────────────────── */
.why {
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.why::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,198,255,.06), transparent);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px;
}
.why-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.why-card:hover { border-color: rgba(0,198,255,.3); transform: translateY(-4px); }
.why-icon { font-size: 2rem; }
.why-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.why-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

/* ─────────────────────────────────────────────────────────── */
/* REVIEWS                                                     */
/* ─────────────────────────────────────────────────────────── */
.reviews { background: var(--bg3); }
.google-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 12px;
}
.g-logo {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; color: #4285f4;
  font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.g-logo-sm {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; color: #4285f4;
  font-weight: 900; font-size: .78rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.stars { color: #fbbc05; letter-spacing: 2px; font-size: 1.1rem; }
.rating-text { color: var(--text); font-weight: 600; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px;
}
.review-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0,198,255,.2); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--av, var(--accent2));
  color: #fff; font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; color: var(--text); font-size: .95rem; }
.review-stars { color: #fbbc05; font-size: .9rem; letter-spacing: 1px; margin-top: 2px; }
.g-badge {
  margin-left: auto; width: 28px; height: 28px; border-radius: 50%;
  background: #fff; color: #4285f4; font-weight: 900;
  font-size: .8rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-text { color: var(--text-muted); font-size: .88rem; line-height: 1.65; font-style: italic; }
.reviews-cta { margin-top: 44px; text-align: center; }

/* ─────────────────────────────────────────────────────────── */
/* GALLERY                                                     */
/* ─────────────────────────────────────────────────────────── */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.g-item-1 { grid-column: span 2; }
.g-item-4 { grid-column: span 2; }
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-item-1, .g-item-4 { grid-column: span 1; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  border: 1px solid var(--card-border);
}
.gallery-placeholder {
  aspect-ratio: 16/10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
}
.gallery-placeholder span { font-size: 3rem; }
.gallery-placeholder p { color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.gp-1 { background: linear-gradient(135deg, #0a1628, #0d2040); }
.gp-2 { background: linear-gradient(135deg, #0a2010, #0d3520); }
.gp-3 { background: linear-gradient(135deg, #1a0a28, #2d0d40); }
.gp-4 { background: linear-gradient(135deg, #1a1200, #2d2000); }
.gp-5 { background: linear-gradient(135deg, #001a20, #003040); }
.gp-6 { background: linear-gradient(135deg, #200010, #400020); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,198,255,.15);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  font-size: 1rem; font-weight: 600; color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: var(--card); border: 1px solid var(--card-border);
  color: var(--text); font-size: 1.2rem;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lightbox-content { text-align: center; }
.lightbox-visual {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 2px solid rgba(0,198,255,.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; margin: 0 auto 16px;
}
.lightbox-caption { color: #fff; font-family: 'Syne', sans-serif; font-size: 1.2rem; }

/* ─────────────────────────────────────────────────────────── */
/* CONTACT                                                     */
/* ─────────────────────────────────────────────────────────── */
.contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-glow); border: 1px solid rgba(0,198,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ci-item h4 { font-weight: 600; color: var(--text); margin-bottom: 4px; }
.ci-item p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: #fff;
}
.s-wa { background: #25d366; }
.s-fb { background: #1877f2; }
.s-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.s-yt { background: #ff0000; }
.social-btn:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

.map-placeholder {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.map-inner { text-align: center; padding: 40px; }
.map-pin-anim { position: relative; display: inline-flex; margin-bottom: 16px; }
.map-pin { font-size: 3rem; animation: pinBounce 1.5s ease-in-out infinite; }
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.map-pulse {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 10px;
  background: radial-gradient(ellipse, rgba(0,198,255,.4), transparent);
  border-radius: 50%;
}
.map-text { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.map-sub { color: var(--text-muted); margin-top: 6px; }

/* ─────────────────────────────────────────────────────────── */
/* FOOTER                                                      */
/* ─────────────────────────────────────────────────────────── */
.footer { background: var(--bg3); }
.footer-top { padding: 60px 24px 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-logo { font-size: 1.15rem; }
.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--text); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--text-muted); font-size: .88rem;
  padding: 4px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-info { color: var(--text-muted); font-size: .88rem; padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  color: var(--text-muted); font-size: .82rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom strong { color: var(--accent); }

/* ─────────────────────────────────────────────────────────── */
/* FLOATING BUTTONS                                            */
/* ─────────────────────────────────────────────────────────── */
.fab {
  position: fixed; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  color: #fff; border: none;
}
.fab:hover { transform: scale(1.12); }
.fab-wa {
  background: var(--green);
  bottom: 150px; right: 20px;
}
.fab-call {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  bottom: 90px; right: 20px;
}
.fab-top {
  background: var(--card); border: 1.5px solid var(--card-border);
  color: var(--text); font-size: 1.2rem; font-weight: 700;
  bottom: 30px; right: 20px;
  opacity: 0; pointer-events: none;
}
.fab-top.visible { opacity: 1; pointer-events: all; }

/* ─────────────────────────────────────────────────────────── */
/* SCROLLBAR                                                   */
/* ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
