/* =========================================================
   GigaFiber BD — Premium ISP Stylesheet
   Aesthetic: Clean White · Electric Blue · Editorial Light
   ========================================================= */

/* ================================
   DESIGN TOKENS
================================ */
:root {
  --blue:          #0057FF;
  --blue-mid:      #0040CC;
  --blue-dark:     #002fa0;
  --blue-glow:     rgba(0, 87, 255, 0.2);
  --blue-soft:     rgba(0, 87, 255, 0.07);
  --blue-soft-md:  rgba(0, 87, 255, 0.12);
  --cyan:          #0099dd;
  --cyan-light:    #e8f4ff;

  /* Backgrounds */
  --bg:            #ffffff;
  --bg-soft:       #f5f8ff;
  --bg-subtle:     #eef3fd;
  --surface:       #ffffff;
  --navy:          #0a1628;
  --navy-card:     #071122;

  /* Borders */
  --border:        rgba(0, 87, 255, 0.1);
  --border-dark:   rgba(0, 87, 255, 0.2);
  --border-glow:   rgba(0, 87, 255, 0.3);

  /* Text */
  --text-primary:  #0d1b38;
  --text-muted:    #5a7094;
  --text-light:    #8faabb;

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Shapes */
  --radius:       20px;
  --radius-sm:    12px;
  --radius-pill:  999px;

  /* Motion */
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --dur:   0.3s;
}

/* ================================
   RESET & BASE
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); line-height: 1.2; }
p   { color: var(--text-muted); }
a   { text-decoration: none; color: inherit; transition: color var(--dur) var(--ease); }
img { max-width: 100%; display: block; }
section { position: relative; }
ul { list-style: none; padding: 0; margin: 0; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::selection { background: var(--blue); color: #fff; }

/* ================================
   LAYOUT HELPERS
================================ */
.section-pad    { padding: 30px 0; }
.section-pad-sm { padding: 30px 0; }

.section-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--blue-soft);
  border: 1px solid var(--border-dark);
  color: var(--blue);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.section-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, #0099dd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================================
   TOPBAR
================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 0;
  font-size: 0.82rem;
  font-family: var(--font-body);
}

.topbar a { color: rgba(255,255,255,0.6); transition: color var(--dur); display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar a:hover { color: #fff; }

.topbar-portal {
  padding: 0.28rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease) !important;
}
.topbar-portal:hover { border-color: rgba(255,255,255,0.35) !important; background: rgba(255,255,255,0.08); color: #fff !important; }

.social-icons a { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; transition: all var(--dur) var(--ease); }
.social-icons a:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ================================
   NAVBAR
================================ */
.navbar-premium {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  transition: all var(--dur) var(--ease);
  z-index: 200;
}

.navbar-premium.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 87, 255, 0.08);
}

.navbar-brand { display: flex; align-items: center; gap: 0.5rem; }
.brand-icon   { color: var(--blue); font-size: 1.5rem; }
.brand-name   { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.04em; }
.brand-accent { color: var(--blue); }

/* Logo image (shown when logo file exists) */
.navbar-logo {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.45rem 0.8rem !important;
  border-radius: 8px;
  position: relative;
  transition: all var(--dur) var(--ease);
}

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--blue); background: var(--blue-soft); }

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: width var(--dur) var(--ease);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 55%; }

/* ================================
   BUTTONS
================================ */
.btn-premium {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  color: #fff !important;
  background: var(--blue);
  box-shadow: 0 4px 18px rgba(0, 87, 255, 0.28);
  transition: all var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-premium::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent); pointer-events: none; }
.btn-premium:hover  { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 87, 255, 0.35); color: #fff !important; }
.btn-premium:active { transform: scale(0.97); }

.btn-outline-premium {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.62rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
  transition: all var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.btn-outline-premium:hover { background: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 87, 255, 0.25); }

.btn-glass {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: all var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-glass:hover { background: rgba(255,255,255,0.22); color: #fff; border-color: rgba(255,255,255,0.5); }

/* ================================
   MOBILE OFFCANVAS
================================ */
.offcanvas.offcanvas-start { width: 85%; max-width: 380px; background: var(--bg); border-right: 1px solid var(--border); }
.offcanvas-header          { padding: 1.5rem; border-bottom: 1px solid var(--border); }

.mobile-nav-link {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}
.mobile-nav-link:hover { color: var(--blue); background: var(--blue-soft); padding-left: 2rem; }
.border-glass { border-color: var(--border) !important; }

/* ================================
   HERO CAROUSEL
================================ */
#home .carousel-item { height: 50vh; min-height: 700px; overflow: hidden; background: var(--navy); }
#home .carousel-item img { object-fit: cover; height: 100%; width: 100%; filter: brightness(0.35) saturate(0.7); will-change: transform; }
#home .carousel-item.active img { animation: heroZoom 10s ease forwards; }

@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

#home .carousel-item::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,87,255,0.25) 0%, transparent 55%),
              linear-gradient(to top, rgba(7,17,34,0.9) 0%, transparent 50%);
}

.carousel-caption { position: absolute; bottom: 13%; left: 8%; right: auto; max-width: 580px; text-align: left; z-index: 10; background: none; padding: 0; }

.hero-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.carousel-caption h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1.1rem; }
.carousel-caption p  { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-weight: 300; max-width: 480px; }

.carousel-indicators { bottom: 4%; z-index: 11; }
.carousel-indicators [data-bs-target] { width: 24px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.3); border: none; transition: all var(--dur) var(--ease); }
.carousel-indicators .active { background: #fff; width: 44px; }
.carousel-control-prev,
.carousel-control-next { width: 5%; z-index: 11; }

/* ================================
   STATS SECTION
================================ */
.stats-section { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative; overflow: hidden;
  transition: all var(--dur) var(--ease);
  text-align: center;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #0099dd); transform: scaleX(0); transition: transform var(--dur) var(--ease); }
.stat-card:hover   { transform: translateY(-5px); border-color: var(--border-dark); box-shadow: 0 15px 40px rgba(0,87,255,0.08); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 0.35rem; }
.stat-label  { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }

/* ================================
   ABOUT / FEATURES
================================ */
.about-img-wrap    { position: relative; display: inline-block; width: 100%; }
.rounded-premium   { border-radius: 24px; }
.shadow-glow       { box-shadow: 0 25px 60px rgba(0,87,255,0.1), 0 0 0 1px var(--border); }

.about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--blue); border-radius: 16px; padding: 1.2rem 1.5rem; text-align: center; box-shadow: 0 12px 30px rgba(0,87,255,0.35); }
.about-badge-number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.about-badge-text   { color: rgba(255,255,255,0.75); font-size: 0.75rem; }

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--blue-soft);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}

.mini-feature-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem; transition: all var(--dur) var(--ease); height: 100%; }
.mini-feature-card i { font-size: 1.4rem; color: var(--blue); margin-bottom: 0.6rem; display: block; }
.mini-feature-card h6 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.mini-feature-card p  { font-size: 0.8rem; margin: 0; }
.mini-feature-card:hover { border-color: var(--border-dark); background: var(--cyan-light); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,87,255,0.07); }

.why-section { background: var(--bg-soft); }

.feature-list { display: flex; flex-direction: column; gap: 1rem; }

.feature-item { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all var(--dur) var(--ease); }
.feature-item:hover { border-color: var(--border-dark); transform: translateX(5px); box-shadow: 0 8px 25px rgba(0,87,255,0.07); }

.feature-icon-wrap { width: 44px; height: 44px; background: var(--blue-soft); border: 1px solid var(--border-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--blue); }
.feature-item h5 { font-size: 1rem; margin-bottom: 0.25rem; }
.feature-item p  { font-size: 0.88rem; margin: 0; }

/* ================================
   PRICING
================================ */
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; transition: all 0.4s var(--ease); position: relative; }
.price-card:hover { transform: translateY(-12px); border-color: var(--border-dark); box-shadow: 0 25px 55px rgba(0,87,255,0.12); }

.price-card-featured { background: var(--blue); border-color: var(--blue) !important; box-shadow: 0 20px 60px rgba(0,87,255,0.3); }
.price-card-featured:hover { box-shadow: 0 30px 70px rgba(0,87,255,0.4); }

.price-card-featured .price-speed,
.price-card-featured .price-amount,
.price-card-featured h5 { color: #fff !important; }
.price-card-featured .price-desc { color: rgba(255,255,255,0.7); }
.price-card-featured .price-amount { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.price-card-featured .price-features li { color: rgba(255,255,255,0.8); }
.price-card-featured .price-features li.yes { color: #fff; }
.price-card-featured .price-features li.yes i { color: #a0f0b0; }
.price-card-featured .price-features li.no { opacity: 0.35; }
.price-card-featured .price-tier-badge { background: rgba(255,255,255,0.18); color: #fff; }
.price-card-featured .price-amount .period { color: rgba(255,255,255,0.6); }
.price-card-featured .btn-outline-premium { border-color: rgba(255,255,255,0.5); color: #fff; }
.price-card-featured .btn-outline-premium:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; box-shadow: none; }

.price-card-inner  { padding: .5rem; display: flex; flex-direction: column; height: 100%; }

.price-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--navy); color: #fff; padding: 5px 20px; border-radius: 99px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-display); box-shadow: 0 4px 16px rgba(0,0,0,0.2); white-space: nowrap; }

.price-tier-badge  { display: inline-block; padding: 0.3rem 0.9rem; background: var(--blue-soft); color: var(--blue); border-radius: var(--radius-pill); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-display); }

.price-speed       { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; margin-bottom: 0.3rem; }
.price-card-inner p{margin: 0;}
.price-speed span  { font-size: 1.2rem; font-weight: 500; color: var(--text-muted); }
.price-card-featured .price-speed span { color: rgba(255,255,255,0.6); }

.price-desc        { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.price-amount {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .1rem .5rem;
    margin-bottom: .25rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}
.price-amount .currency { font-size: 1.4rem; vertical-align: top; margin-top: 0.3rem; display: inline-block; }
.price-amount .period   { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }

.price-features    { flex-grow: 1; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.price-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.price-features li.yes   { color: var(--text-primary); }
.price-features li.yes i { color: var(--blue); }
.price-features li.no    { opacity: 0.4; }
.price-features li.no i  { color: var(--text-muted); }

/* ================================
   BDIX SECTION
================================ */
.bdix-section { background: var(--bg-soft); }

.bdix-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .5rem .5rem;
    text-align: center;
    transition: all var(--dur) var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.bdix-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transition: transform var(--dur) var(--ease); }
.bdix-red::after   { background: linear-gradient(90deg, #ff4060, #ff7090); }
.bdix-blue::after  { background: linear-gradient(90deg, var(--blue), #0099dd); }
.bdix-green::after { background: linear-gradient(90deg, #00b84a, #00e676); }
.bdix-yellow::after{ background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.bdix-card:hover   { transform: translateY(-8px); border-color: var(--border-dark); box-shadow: 0 20px 45px rgba(0,87,255,0.09); }
.bdix-card:hover::after { transform: scaleX(1); }

.bdix-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem; }
.bdix-red    .bdix-icon { background: #fff1f3; color: #ff4060; }
.bdix-blue   .bdix-icon { background: var(--blue-soft); color: var(--blue); }
.bdix-green  .bdix-icon { background: #edfff4; color: #00b84a; }
.bdix-yellow .bdix-icon { background: #fffbeb; color: #d97706; }

.bdix-card h5 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.bdix-card p  { font-size: 0.85rem; margin-bottom: 1.2rem; flex-grow: 1; }

.bdix-btn { display: inline-block; padding: 0.45rem 1.2rem; border: 1px solid var(--border-dark); border-radius: var(--radius-pill); color: var(--text-muted); font-size: 0.82rem; font-weight: 600; transition: all var(--dur) var(--ease); font-family: var(--font-body); }
.bdix-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.bdix-footer-note {
    text-align: center;
    margin-top: .5rem;
    padding: 0.5rem .5rem;
    background: var(--blue-soft);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
/* ================================
   PAYMENT SECTION
================================ */
.payment-banner {
    background: var(--navy);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}.payment-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(0,87,255,0.25), transparent 70%); pointer-events: none; }
.payment-banner .section-title { color: #fff; }
.payment-banner p { color: rgba(255,255,255,0.6); }

.payment-methods { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-end; align-items: center; }

.payment-chip { padding: 0.6rem 1.2rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.88rem; font-family: var(--font-display); transition: all var(--dur) var(--ease); display: flex; align-items: center; gap: 0.4rem; }
.payment-chip img   { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
.payment-chip:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: #fff; transform: translateY(-2px); }

/* ================================
   GAMING SECTION
================================ */
.gaming-section { background: var(--bg-soft); }

.ping-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    transition: all var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ping-card:hover { transform: translateY(-7px); border-color: var(--border-dark); box-shadow: 0 20px 45px rgba(0,87,255,0.09); }

.ping-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.ping-game-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.pubg     { background: #edfff4; color: #00b84a; }
.valorant { background: var(--blue-soft); color: var(--blue); }
.freefire { background: #fffbeb; color: #d97706; }
.ping-header h5 { font-size: 1rem; margin-bottom: 0.2rem; }
.ping-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }

.ping-bar-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 99px;
  height: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.ping-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  border-radius: 99px;
  width: var(--bar-width, 80%);
  animation: barGrow 1.2s var(--ease) forwards;
  transform-origin: left;
}

@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.ping-card p { font-size: 0.85rem; margin: 0; margin-top: auto; padding-top: 0.5rem; }

/* ================================
   COVERAGE SECTION
================================ */
.coverage-input-group { display: flex; align-items: center; background: var(--surface); border: 1.5px solid var(--border-dark); border-radius: 14px; padding: 0.4rem 0.4rem 0.4rem 1.2rem; transition: border-color var(--dur), box-shadow var(--dur); gap: 0.5rem; box-shadow: 0 2px 12px rgba(0,87,255,0.04); }
.coverage-input-group:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,255,0.1); }
.coverage-input-group > i { color: var(--text-muted); flex-shrink: 0; }
.coverage-input-group input { flex: 1; background: none; border: none; outline: none; color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem; padding: 0.6rem 0; }
.coverage-input-group input::placeholder { color: var(--text-light); }
.coverage-input-group button { flex-shrink: 0; padding: 0.65rem 1.4rem; background: var(--blue); color: #fff; border: none; border-radius: 10px; font-weight: 600; font-size: 0.88rem; cursor: pointer; display: flex; align-items: center; gap: 0.4rem; transition: all var(--dur) var(--ease); font-family: var(--font-body); }
.coverage-input-group button:hover { background: var(--blue-mid); box-shadow: 0 4px 14px rgba(0,87,255,0.3); }

.coverage-result { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1.1rem 1.3rem; border-radius: 12px; font-size: 0.9rem; font-family: var(--font-body); }
.coverage-result.success { background: #edfff4; border: 1px solid #a7f3c0; color: #0a6632; }
.coverage-result.warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.coverage-result i { margin-top: 2px; font-size: 1.1rem; }
.coverage-result a { color: var(--blue); font-weight: 600; }

.coverage-list    { display: flex; flex-direction: column; gap: 0.25rem; }
.coverage-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; padding: 0.55rem 0; 
  text-transform: capitalize;  border-bottom: 1px solid var(--border); color: var(--text-muted); }
.coverage-list li.covered   { color: var(--text-primary); }
.coverage-list li.covered i { color: #00b84a; }
.coverage-list li.soon i    { color: #d97706; }

.coverage-cta-card { background: var(--blue); border-radius: 24px; padding: 3rem 2.5rem; text-align: center; box-shadow: 0 20px 60px rgba(0,87,255,0.25); position: relative; overflow: hidden; }
.coverage-cta-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.coverage-cta-card .coverage-cta-icon { width: 80px; height: 80px; background: rgba(255,255,255,0.15); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; margin: 0 auto 1.5rem; }
.coverage-cta-card h4 { color: #fff; margin-bottom: 0.75rem; }
.coverage-cta-card p  { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.coverage-cta-card .btn-glass { border-color: rgba(255,255,255,0.4); width: 100%; justify-content: center; }

/* ================================
   TESTIMONIALS
================================ */
.testimonial-section { background: var(--bg-soft); }

.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden; margin: 0.5rem; transition: all var(--dur) var(--ease); }
.testimonial-card::before { content: '"'; position: absolute; top: 0; right: 1.2rem; font-family: var(--font-display); font-size: 6rem; line-height: 1; color: var(--blue); opacity: 0.06; pointer-events: none; }
.testimonial-card:hover { border-color: var(--border-dark); transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,87,255,0.08); }

.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

.testimonial-author { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.author-avatar { width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; flex-shrink: 0; }
.testimonial-author strong { font-size: 0.9rem; display: block; color: var(--text-primary); }
.testimonial-author small  { color: var(--blue); font-size: 0.78rem; }

.owl-theme .owl-dots .owl-dot span { background: var(--border-dark) !important; width: 8px; height: 8px; transition: all var(--dur) var(--ease); }
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span { background: var(--blue) !important; width: 24px; }

/* ================================
   FAQ SECTION
================================ */
.faq-accordion { display: flex; flex-direction: column; gap: 0.5rem; }

.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color var(--dur), box-shadow var(--dur); }
.faq-item:has(.collapse.show) { border-color: var(--border-dark); box-shadow: 0 8px 25px rgba(0,87,255,0.06); }

.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; padding: .75rem; color: var(--text-primary); font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; text-align: left; cursor: pointer; transition: color var(--dur), background var(--dur); gap: 1rem; }
.faq-question:not(.collapsed) { color: var(--blue); background: var(--blue-soft); }

.faq-icon { color: var(--text-muted); flex-shrink: 0; transition: transform var(--dur) var(--ease), color var(--dur); font-size: 0.85rem; }
.faq-question:not(.collapsed) .faq-icon { transform: rotate(45deg); color: var(--blue); }

.faq-answer { padding: 0 1.5rem 1.3rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.faq-answer a { color: var(--blue); font-weight: 600; }

/* ================================
   CONTACT SECTION
================================ */
.contact-info-card { background: var(--blue); border-radius: 10px; overflow: hidden; height: 100%; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.4rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); transition: background var(--dur); }
.contact-info-item:hover { background: rgba(255,255,255,0.05); }
.contact-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.95rem; flex-shrink: 0; }
.contact-info-item h6 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 0.3rem; font-family: var(--font-display); }
.contact-info-item p  { font-size: 0.9rem; margin: 0; color: rgba(255,255,255,0.9); line-height: 1.6; }
.contact-info-item a  { color: rgba(255,255,255,0.9); }
.contact-info-item a:hover { color: #fff; }

.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0,87,255,0.05);
}
.form-label-custom { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; font-family: var(--font-display); }

.form-input { display: block; width: 100%; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: 10px; padding: 0.8rem 1rem; color: var(--text-primary); font-family: var(--font-body); font-size: 0.92rem; transition: all var(--dur) var(--ease); outline: none; appearance: none; }
.form-input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(0,87,255,0.1); }
.form-input::placeholder { color: var(--text-light); }
textarea.form-input { resize: none; }
select.form-input   { cursor: pointer; }
select.form-input option { background: #fff; color: var(--text-primary); }

/* ================================
   FOOTER
================================ */
footer { background: var(--navy); position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,87,255,0.5), rgba(0,153,221,0.4), transparent); }

.footer-heading { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.footer-links   { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color var(--dur); }
.footer-links a:hover { color: #fff; }
footer p { color: rgba(255,255,255,0.5); }

.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: all var(--dur) var(--ease); }
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }

.app-store-btn { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 1.1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: rgba(255,255,255,0.8); font-size: 0.85rem; transition: all var(--dur) var(--ease); }
.app-store-btn:hover { background: rgba(0,87,255,0.2); border-color: rgba(0,87,255,0.4); color: #fff; transform: translateY(-2px); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.07); }
footer .small { color: rgba(255,255,255,0.35); }
footer .small a { color: rgba(255,255,255,0.35); transition: color var(--dur); }
footer .small a:hover { color: rgba(255,255,255,0.7); }

/* ================================
   BACK TO TOP
================================ */
#backToTop { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 12px; display: none; z-index: 9999; background: var(--blue); color: white; border: none; box-shadow: 0 8px 25px rgba(0,87,255,0.3); cursor: pointer; transition: all var(--dur) var(--ease); font-size: 0.95rem; align-items: center; justify-content: center; }
#backToTop:hover { background: var(--blue-mid); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,87,255,0.35); }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .navbar-collapse { display: none !important; }
  .section-pad     { padding: 70px 0; }
  .about-badge     { display: none; }
  .payment-methods { justify-content: flex-start; }
}

@media (max-width: 768px) {
  #home .carousel-item { height: 72vh; min-height: 480px; }
  .carousel-caption    { left: 6%; right: 6%; text-align: center; bottom: 12%; max-width: 100%; }
  .carousel-caption h1 { font-size: 2.1rem; }
  .carousel-caption p  { font-size: 0.95rem; }
  .carousel-caption .d-flex { justify-content: center; }
  .section-pad         { padding: 60px 0; }
  .contact-form-card   { padding: 1.5rem; }
  .payment-banner      { padding: 2rem 1.5rem; }
  .price-speed         { font-size: 2.8rem; }
  .coverage-cta-card   { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .carousel-caption h1 { font-size: 1.8rem; }
  .stat-number         { font-size: 2rem; }
  .price-card-inner    { padding: 1.5rem; }
}




/* ================================
   SPEED TEST PAGE
================================ */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.speedtest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,87,255,0.06);
  padding: 2rem;
}

.speedtest-tip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all var(--dur) var(--ease);
}

.speedtest-tip:hover {
  border-color: var(--border-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,87,255,0.07);
}

.speedtest-tip-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-soft);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  margin: 0 auto 1rem;
}

.speedtest-tip h6 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.speedtest-tip p  { font-size: 0.85rem; margin: 0; }