/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

:root {
  --navy:    #050b1f;
  --navy2:   #0a1535;
  --blue:    #0057ff;
  --cyan:    #00eaff;
  --cyan2:   #00bfff;
  --magenta: #ff2d78;
  --white:   #ffffff;
  --glass:   rgba(255,255,255,0.04);
  --border:  rgba(0,234,255,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* ===== NAV ===== */
header {
  position: fixed; width: 100%;
  background: rgba(5,11,31,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav {
  max-width: 1200px; margin: auto;
  display: flex; justify-content: space-between;
  align-items: center; padding: 14px 24px;
}

.logo {
  display: flex; align-items: center;
  gap: 10px; font-size: 1.3rem; font-weight: 700;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 14px rgba(0,234,255,0.5);
}

.logo-accent { color: var(--cyan); }

.menu a {
  color: rgba(255,255,255,0.7);
  margin-left: 26px; text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.menu a:hover { color: var(--cyan); }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--cyan); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy2); padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex; justify-content: center; align-items: center;
  text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 55%, #071640 0%, var(--navy) 75%);
}

#fiberCanvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 1;
}

.hero-content { position: relative; z-index: 2; padding: 20px; }

.badge {
  display: inline-block;
  background: rgba(0,234,255,0.08);
  border: 1px solid rgba(0,234,255,0.25);
  color: var(--cyan); padding: 6px 18px;
  border-radius: 30px; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 1.5px;
  margin-bottom: 22px; text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem; margin-bottom: 32px;
}

.hero-btns { margin-bottom: 50px; }

.hero-stats {
  display: flex; justify-content: center;
  align-items: center; gap: 28px; flex-wrap: wrap;
}

.stat { text-align: center; }
.stat span { display: block; font-size: 1.9rem; font-weight: 700; color: var(--cyan); }
.stat small { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--cyan); font-size: 1.4rem;
  animation: bounce 1.8s infinite; z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 28px; border-radius: 30px;
  text-decoration: none; margin: 6px;
  display: inline-block; font-weight: 600;
  font-size: 0.9rem; transition: all 0.25s;
  cursor: pointer; border: none;
}

.primary {
  background: linear-gradient(90deg, var(--cyan2), var(--cyan));
  color: #001020;
  box-shadow: 0 0 18px rgba(0,234,255,0.3);
}
.primary:hover { box-shadow: 0 0 30px rgba(0,234,255,0.6); transform: translateY(-2px); }

.whatsapp { background: #1a9e4a; color: white; box-shadow: 0 0 14px rgba(26,158,74,0.3); }
.whatsapp:hover { box-shadow: 0 0 26px rgba(26,158,74,0.55); transform: translateY(-2px); }

.ghost { border: 1px solid rgba(255,255,255,0.3); color: white; background: transparent; }
.ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===== SECTION SHARED ===== */
section { padding: 110px 24px; }

.section-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; color: var(--cyan);
  text-transform: uppercase; margin-bottom: 12px;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }

.section-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem; margin-top: 8px;
}

/* ===== PLANS ===== */
.plans {
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
}

.plan-grid {
  max-width: 1200px; margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.plan {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 32px 22px; border-radius: 18px;
  transition: all 0.3s; position: relative; text-align: center;
}
.plan:hover { transform: translateY(-10px); border-color: var(--cyan); box-shadow: 0 0 30px rgba(0,234,255,0.12); }
.plan.featured { border: 2px solid var(--cyan); background: rgba(0,234,255,0.05); box-shadow: 0 0 40px rgba(0,234,255,0.1); }
.plan.plan-pro { border-color: rgba(255,45,120,0.4); }
.plan.plan-pro:hover { border-color: var(--magenta); box-shadow: 0 0 30px rgba(255,45,120,0.18); }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan2), var(--cyan));
  color: #001020; font-size: 0.7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}

.plan-speed { font-size: 2.8rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.plan-speed span { font-size: 1rem; color: var(--cyan); font-weight: 400; }

.price { font-size: 1.25rem; font-weight: 700; color: var(--cyan); margin-bottom: 20px; }
.price span { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-weight: 400; }

.plan-features { list-style: none; margin-bottom: 24px; text-align: left; }
.plan-features li { font-size: 0.83rem; color: rgba(255,255,255,0.6); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ===== PROMO ===== */
.promo {
  text-align: center;
  background: linear-gradient(180deg, var(--navy2) 0%, #0d0520 100%);
}

.promo-grid {
  max-width: 780px; margin: 50px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.promo-card {
  background: linear-gradient(135deg, #0a0d2e, #0d1545);
  border: 1px solid rgba(255,45,120,0.25);
  border-radius: 20px; padding: 36px 28px;
  text-align: center; transition: all 0.3s;
}
.promo-card:hover { transform: translateY(-8px); box-shadow: 0 0 40px rgba(255,45,120,0.18); }
.promo-card.promo-featured { border-color: var(--magenta); box-shadow: 0 0 28px rgba(255,45,120,0.12); }

.promo-badge {
  display: inline-block; background: var(--magenta);
  color: white; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; padding: 5px 16px;
  border-radius: 20px; margin-bottom: 20px;
}

.promo-speeds { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.promo-speeds span { font-size: 1.8rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.promo-speeds .boosted { font-size: 2.4rem; color: var(--cyan); text-shadow: 0 0 20px rgba(0,234,255,0.45); }
.promo-speeds .arrow { font-size: 1.6rem; color: var(--magenta); animation: pulse 1.2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.promo-price {
  font-size: 1.55rem; font-weight: 700; color: var(--cyan);
  background: rgba(0,234,255,0.07);
  border: 1px solid rgba(0,234,255,0.2);
  border-radius: 30px; padding: 8px 20px;
  display: inline-block; margin-bottom: 10px;
}
.promo-price small { font-size: 0.73rem; color: rgba(255,255,255,0.45); font-weight: 400; }
.promo-duration { font-size: 0.78rem; letter-spacing: 2px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 22px; }

/* ===== POSTER GALLERY ===== */
.posters {
  text-align: center;
  background: linear-gradient(180deg, #0d0520, var(--navy2));
}

.poster-grid {
  max-width: 1100px; margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.poster-grid img {
  width: 100%; border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.poster-grid img:hover {
  transform: scale(1.03);
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,234,255,0.2);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed;
  inset: 0; background: rgba(0,0,0,0.92);
  z-index: 9998; align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2rem; color: white; cursor: pointer;
  line-height: 1;
}

/* ===== BOOKING ===== */
.booking {
  text-align: center;
  background: linear-gradient(180deg, var(--navy2), #0d0520);
}

.booking form {
  max-width: 480px; margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 14px;
}

.booking input, .booking select {
  padding: 14px 18px; border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: white; font-size: 0.95rem;
  outline: none; transition: border 0.2s;
}
.booking input::placeholder { color: rgba(255,255,255,0.3); }
.booking input:focus, .booking select:focus { border-color: var(--cyan); box-shadow: 0 0 12px rgba(0,234,255,0.12); }
.booking select option { background: #0a1535; color: white; }

/* ===== SERVICE AREAS ===== */
.service-areas {
  text-align: center;
  background: linear-gradient(180deg, var(--navy), var(--navy2));
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.4);
  background: rgba(0,212,255,0.06);
}

.area-icon { font-size: 2rem; margin-bottom: 0.3rem; }
.area-card h3 { font-size: 1rem; font-weight: 600; margin: 0; color: #fff; }
.area-card p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.4; }

/* ===== LOCAL SEO SECTIONS ===== */
.local-seo { padding: 0; }

.local-area {
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.local-area.alt { background: rgba(255,255,255,0.02); }

.local-area-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.local-area-text h2 {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.local-area-text p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.local-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.local-features li { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.local-area-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.area-badge-icon { font-size: 3rem; }
.area-badge-name { font-weight: 700; font-size: 1.1rem; color: #fff; }

.area-badge-tag {
  font-size: 0.75rem;
  color: #00d4ff;
  background: rgba(0,212,255,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0,212,255,0.3);
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
  background: linear-gradient(180deg, #0d0520, var(--navy));
}
.contact-btns { margin-top: 32px; }

/* ===== FLOATING ===== */
.floating {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.floating:hover { transform: scale(1.1); }

/* ===== FOOTER ===== */
footer {
  text-align: center; padding: 40px 20px;
  background: #02061a;
  border-top: 1px solid var(--border);
}
.footer-logo { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.footer-logo span { color: var(--cyan); }
footer p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-top: 6px; }
.footer-copy { margin-top: 16px !important; font-size: 0.76rem !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu { display: none; }
  .hamburger { display: block; }
  .plan-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .promo-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .poster-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .poster-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .local-area-inner { grid-template-columns: 1fr; }
  .local-area-badge { display: none; }
  .local-area-text h2 { font-size: 1.5rem; }
}