/* Base Styles & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f7fc;
  color: #080436;
  line-height: 1.5;
}

/* Announcement Ticker Banner */
.announcement-bar {
  background-color: #080436;
  color: #ffffff;
  font-size: 12px;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid #1a1554;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-pulse {
  color: #6C72FF;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e8e8f5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  color: #080436;
  letter-spacing: -0.5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  background: #f0f0f8;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: #080436;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  color: #080436;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Section Dividers */
.section-divider {
  border: 0;
  height: 1px;
  background-color: #e0e2f0;
  margin: 10px 0;
}

/* Buttons */
.btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-purple {
  background-color: #6C72FF;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 14px;
}

.btn-purple:hover {
  background-color: #585ee6;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
  margin-top: 15px;
  padding: 12px 20px;
}

.btn-dark-pill {
  background-color: #080436;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.btn-light-pill {
  background-color: #ffffff;
  color: #080436;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.badge {
  color: #6C72FF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.badge-light {
  color: #ffffff;
  opacity: 0.8;
}

.main-content {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* HERO IMAGE SLIDER STYLES */
.hero-slider-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 4, 54, 0.15);
  background-color: #080436;
  min-height: 420px;
}

.hero-slide {
  display: none;
  grid-template-columns: 1.3fr 1fr;
  width: 100%;
  height: 100%;
  animation: fadeIn 0.6s ease;
}

.hero-slide.active { display: grid; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-left {
  padding: 50px 45px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  color: #ffffff;
}

.hero-left h1 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero-subtext {
  color: #c0c3e6;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 28px;
}

.wifi-arcs {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 1;
}

.arc {
  position: absolute;
  border: 18px solid #6C72FF;
  border-radius: 50%;
  bottom: 0;
  right: 0;
}

.arc-1 { width: 80px; height: 80px; border-color: #ffffff; }
.arc-2 { width: 150px; height: 150px; }
.arc-3 { width: 220px; height: 220px; }

.hero-right {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 420px;
  width: 100%;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 4, 54, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slider-arrow:hover { background: #6C72FF; }
.prev-arrow { left: 15px; }
.next-arrow { right: 15px; }

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #6C72FF;
  width: 24px;
  border-radius: 10px;
}

/* Features Row */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e8e8f5;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  background-color: #eeedf8;
  color: #6C72FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-card h4 { font-size: 14px; font-weight: 700; }
.feature-card p { font-size: 12px; color: #666; }

/* Device Calculator Selector */
.calculator-card {
  background: #ffffff;
  border: 1px solid #e8e8f5;
  border-radius: 16px;
  padding: 35px;
}

.calc-header h2 { font-size: 28px; font-weight: 800; }

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 25px;
}

.slider-wrapper label {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.slider-wrapper label strong { color: #6C72FF; }

.slider-wrapper input[type="range"] {
  width: 100%;
  accent-color: #6C72FF;
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #888;
  margin-top: 6px;
}

.recommendation-result {
  background: #eeedf8;
  border: 2px solid #6C72FF;
  padding: 25px;
  border-radius: 12px;
}

.rec-badge { font-size: 10px; font-weight: 900; color: #6C72FF; letter-spacing: 1px; margin-bottom: 6px; }
.recommendation-result h3 { font-size: 22px; margin-bottom: 8px; }
.recommendation-result p { font-size: 13px; color: #555; margin-bottom: 14px; }
.rec-price { font-size: 20px; font-weight: 800; color: #080436; margin-bottom: 15px; }

/* Installation Notice */
.installation-notice {
  background-color: #eeedf8;
  border: 1px solid #d4d3f7;
  color: #080436;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-top: 25px;
}

.installation-notice i { color: #6C72FF; font-size: 18px; }

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  background: #ffffff;
  border: 1px solid #e8e8f5;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-popular {
  border: 2px solid #6C72FF;
  box-shadow: 0 8px 25px rgba(108, 114, 255, 0.15);
}

.package-tag { font-size: 10px; font-weight: 800; color: #777; letter-spacing: 0.5px; }
.tag-popular { color: #6C72FF; }

.package-card h3 { font-size: 24px; margin-top: 5px; margin-bottom: 10px; }
.price { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.price span { font-size: 14px; color: #777; font-weight: 400; }

.package-features { list-style: none; margin-bottom: 20px; }
.package-features li {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
}
.package-features i { color: #6C72FF; font-size: 12px; }

/* Speed Test Section */
.speedtest-section {
  padding: 10px 0;
}

.speedtest-card {
  background: #080436;
  color: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  text-align: center;
}

.speedtest-card h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.speedtest-card p {
  color: #c0c3e6;
  font-size: 14px;
  margin-bottom: 25px;
}

.speedtest-frame-container {
  max-width: 650px;
  margin: 0 auto;
}

/* Stages Section */
.stages-section { padding: 10px 0; }
.stages-section h2 { font-size: 34px; font-weight: 800; }
.subtitle { color: #666; font-size: 14px; margin-bottom: 20px; }

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stage-card { padding: 30px; border-radius: 12px; }
.card-dark { background-color: #080436; color: #ffffff; }

.stage-number {
  background: #6C72FF;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
}

.stage-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.stage-card p { color: #b0b3e6; font-size: 13px; }

/* Coverage Checker Widget */
.coverage-section { padding: 10px 0; }

.coverage-checker-bar {
  background: #ffffff;
  border: 1px solid #e8e8f5;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.coverage-checker-bar label { font-size: 14px; font-weight: 700; margin-bottom: 10px; display: block; }
.search-input-group { display: flex; gap: 12px; }
.search-input-group input { flex: 1; padding: 12px 16px; border: 1px solid #d4d3f7; border-radius: 8px; font-size: 14px; }

.coverage-status-box { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 13px; }
.coverage-success { background-color: #e6f9ed; color: #0e622b; border: 1px solid #b3f0c7; }
.coverage-info { background-color: #f0f0f8; color: #080436; border: 1px solid #d4d3f7; }

.coverage-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.map-wrapper { background: #ffffff; padding: 8px; border-radius: 14px; border: 1px solid #e8e8f5; }
.coverage-list-box { background: #ffffff; border: 1px solid #e8e8f5; padding: 30px; border-radius: 14px; }
.coverage-list-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.coverage-desc { font-size: 13px; color: #666; margin-bottom: 20px; }

.coverage-towns {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.coverage-towns li {
  background: #f0f1ff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: #080436;
  display: flex;
  align-items: center;
  gap: 10px;
}
.coverage-towns i { color: #6C72FF; }

.coverage-callout {
  background: #eeedf8;
  font-size: 12px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  color: #080436;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Testimonials & Auto-Scrolling Horizontal Carousel */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.carousel-nav-btns {
  display: flex;
  gap: 8px;
}

.review-nav-btn {
  background: #ffffff;
  border: 1px solid #d4d3f7;
  color: #080436;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.review-nav-btn:hover {
  background: #6C72FF;
  color: #ffffff;
}

.reviews-carousel-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: #6C72FF #eeedf8;
}

.reviews-carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.reviews-carousel-wrapper::-webkit-scrollbar-thumb {
  background: #6C72FF;
  border-radius: 10px;
}

.reviews-carousel-wrapper .testimonial-card {
  min-width: 310px;
  max-width: 340px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e8e8f5;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars { color: #ffb400; margin-bottom: 12px; font-size: 14px; }
.testimonial-card p { font-size: 13px; color: #444; font-style: italic; margin-bottom: 20px; line-height: 1.6; }
.reviewer-info strong { display: block; font-size: 14px; color: #080436; }
.reviewer-info span { font-size: 11px; color: #777; }

/* FAQ Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #ffffff; border: 1px solid #e8e8f5; border-radius: 10px; overflow: hidden; }

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #080436;
  cursor: pointer;
  text-align: left;
}

.faq-icon { color: #6C72FF; transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 20px; }
.faq-answer p { font-size: 13px; color: #555; line-height: 1.6; padding-bottom: 18px; }

.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-answer { max-height: 200px; }

/* SUPPORT / COMPLAINT CARD */
.support-card {
  background-color: #080436;
  color: #ffffff;
  border-radius: 16px;
  padding: 40px 45px;
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.support-left h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.support-left p { color: #c0c3e6; font-size: 14px; margin-bottom: 20px; max-width: 600px; }
.support-contacts { display: flex; gap: 14px; flex-wrap: wrap; }

.support-right { display: flex; justify-content: center; align-items: center; }
.support-bg-icon { font-size: 120px; color: rgba(108, 114, 255, 0.2); }

/* Workspace Banner */
.cta-banner {
  background-color: #6C72FF;
  color: white;
  padding: 40px 45px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-banner h2 { font-size: 32px; font-weight: 800; }

/* Floating Contact Buttons */
.floating-contact-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background-color: #25D366; }
.float-phone { background-color: #6C72FF; }

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 4, 54, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 550px;
  padding: 35px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
}

.modal-header h2 { font-size: 24px; font-weight: 800; margin-bottom: 15px; }
.modal-body p { font-size: 14px; color: #444; line-height: 1.6; }
.modal-body h3 { font-size: 16px; color: #080436; margin-top: 10px; margin-bottom: 5px; }
.modal-footer { margin-top: 25px; text-align: right; }

/* Status Popup Notification Modal Styling */
.status-modal-content {
  text-align: center;
  max-width: 420px;
  padding: 35px 30px;
}

.status-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px auto;
}

.status-modal-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #080436;
}

.status-modal-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Form Styles */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; color: #080436; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d4d3f7;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fdfdfd;
}

.checkbox-container { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.checkbox-container input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; }
.checkbox-container label { font-size: 12px; font-weight: 600; color: #555; margin-bottom: 0; cursor: pointer; }

/* Price Breakdown Box in Form */
.payment-summary-box {
  background: #eeedf8;
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #d4d3f7;
}

.summary-line { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #444; margin-bottom: 6px; }
.summary-divider { border: 0; height: 1px; background-color: #d4d3f7; margin: 10px 0; }
.summary-total { font-size: 15px; font-weight: 800; color: #080436; margin-bottom: 0; }
.summary-total strong { font-size: 20px; color: #6C72FF; }

/* Footer */
.footer {
  background-color: #080436;
  color: #a3a6d4;
  text-align: center;
  padding: 40px 20px;
  font-size: 13px;
  margin-top: 40px;
}

.footer-logo-container { margin-bottom: 15px; }
.footer-logo { height: 42px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.footer strong { color: #ffffff; }
.sub-footer { margin-top: 6px; font-size: 12px; }

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .hero-slide, .stages-grid, .packages-grid, .features-grid, .coverage-container, .coverage-towns, .calc-body, .support-card {
    grid-template-columns: 1fr;
  }

  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 15px; }
  .cta-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-right { display: none; }
  .hero-right { min-height: 280px; }
  .support-right { display: none; }
}