/* reset + base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #1b2433;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.main-header {
  background: #0b1630;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 15px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo-text span {
  color: #1cc0ff;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  color: #cdd4eb;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

.header-cta .btn-outline {
  border: 1px solid #1cc0ff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: #1cc0ff;
}

.header-cta .btn-outline:hover {
  background: #1cc0ff;
  color: #0b1630;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: #1cc0ff;
  color: #0b1630;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
}

.btn-primary:hover {
  background: #11a1da;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid #cfd3e6;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  display: inline-block;
  border-radius: 4px;
}

.btn-outline.small,
.btn-primary.small {
  padding: 8px 14px;
  font-size: 13px;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* HERO */
.hero {
  background: radial-gradient(circle at top left, #1cc0ff 0, #0b1630 50%, #050814 100%);
  color: #fff;
  padding: 70px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 35px;
  align-items: center;
}

.hero-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-subtitle {
  max-width: 450px;
  font-size: 14px;
  color: #e0e4ff;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 12px;
}

/* Hero card */
.hero-card {
  background: #ffffff;
  color: #1b2433;
  padding: 20px 18px;
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.hero-card h2 {
  margin-bottom: 15px;
  font-size: 18px;
}

.hero-card form input,
.hero-card form select,
.hero-card form textarea {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #cfd3e6;
  padding: 9px 10px;
  font-size: 13px;
}

.hero-card form textarea {
  resize: vertical;
}

/* Sections */
.section {
  padding: 60px 0;
  background: #f5f7fb;
}

.grey-bg {
  background: #edf0f8;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  color: #5c6477;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  background: #ffffff;
  padding: 18px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(8, 15, 52, 0.05);
  font-size: 14px;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Packages */
.sub-heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  text-align: left;
}

.mg-top {
  margin-top: 35px;
}

.package-card {
  background: #ffffff;
  padding: 18px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(8, 15, 52, 0.05);
  position: relative;
  font-size: 14px;
}

.package-card .speed {
  font-size: 20px;
  font-weight: bold;
  margin: 4px 0;
}

.package-card .price {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 8px;
}

.package-card ul {
  list-style: none;
  margin-bottom: 12px;
}

.package-card ul li {
  margin-bottom: 4px;
}

.package-card.popular {
  border: 2px solid #1cc0ff;
}

.package-card .tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #1cc0ff;
  color: #0b1630;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
}

/* Coverage */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.coverage-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 18px 16px;
  box-shadow: 0 4px 12px rgba(8, 15, 52, 0.05);
  font-size: 14px;
}

.coverage-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.coverage-card ul {
  list-style: disc;
  padding-left: 18px;
}

/* Support */
.support-flex {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.support-list {
  list-style: disc;
  padding-left: 18px;
  margin-top: 10px;
  font-size: 14px;
}

.support-box {
  background: #ffffff;
  padding: 18px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(8, 15, 52, 0.05);
  font-size: 14px;
  max-width: 320px;
}

.support-box a {
  color: #007bff;
}

.support-line {
  margin-bottom: 6px;
}

.support-note {
  margin-top: 8px;
  font-size: 13px;
  color: #5c6477;
}

/* Contact */
.contact-section {
  background: #ffffff;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-info-box,
.contact-form-box {
  flex: 1;
  min-width: 280px;
  background: #f5f7fb;
  padding: 20px 18px;
  border-radius: 8px;
}

.contact-info-box h2 {
  margin-bottom: 8px;
}

.contact-info-box p {
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-info-box a {
  color: #007bff;
}

.contact-form-box h2 {
  margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #cfd3e6;
  font-size: 14px;
}

.contact-form-box button {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #0b1630;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.contact-form-box button:hover {
  background: #007bff;
}

/* Map */
.map-wrapper {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(8, 15, 52, 0.05);
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Footer */
.site-footer {
  background: #0b1630;
  color: #cdd4eb;
  font-size: 13px;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

.footer-inner p + p {
  margin-top: 4px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .cards-3,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none; /* Simple: hide nav in very small devices */
  }
}
