body {
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f8fa;
  color: #222;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #23235d;
  color: white; 
}
.logo {
  font-weight: 700;
  font-size: 1.4rem;
}
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.logo {
  font-family: 'Segoe UI', 'Montserrat', 'Poppins', Arial, sans-serif; /* Customize as preferred */
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none; /* Removes underline */
  transition: color 0.2s;
}

.logo:visited {
  color: #fff;
}

.logo:hover,
.logo:focus {
  color: #ffd700; /* Optional: gold on hover */
  text-decoration: none;
}

.subtitle {
  font-size: 1rem;
  color: #e0eaff;  /* Soft blue/white for contrast on blue bg */
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
}
nav a:hover,
nav a:focus {
  color: #ffd700; /* WhatsApp green or your chosen highlight color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.whatsapp-btn {
  background-color: #11c168;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}


.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background-color: #0da85a; /* Slightly darker green for hover */
  color: #e0f6e9; /* lighter text color on hover */
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}


.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background: white;
  padding: 48px 16px 32px;
  text-align: center;
}
.info-boxes {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.info-box {
  background: white;
  box-shadow: 0 2px 8px rgb(233 233 239 / 0.35);
  border-radius: 12px;
  padding: 22px 20px;
  font-size: 1.07rem;
  flex: 1 1 280px;
  min-width: 260px;
}

.info-box strong {
  font-weight: 700;
  font-size: 1.16rem;
  display: block;
  margin-bottom: 8px;
}

.hero-right {
  background: #f5f6fa; /* light background */
  padding: 24px 16px;
  border-radius: 12px;
  max-width: 360px;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 2px 8px #eee;
}

.price-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-info-sub {
  font-size: 1rem;
  color: #47495a;
  margin-bottom: 16px;
}

.qr-code-placeholder img {
  width: 200px;      /* appropriate QR size */
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #eee;
  margin-bottom: 12px;
}

.qr-code-placeholder div {
  font-weight: 600;
  margin-bottom: 12px;
}
.qr-link {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;          /* Removes underline */
  margin: 0 10px;
  cursor: pointer;
  color: #111;                    /* Black/dark text */
  padding: 7px 18px;
  border: 2px solid #222;         /* Black border */
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;

}

.qr-link:hover {
  background: #eaeaea;
  border-color: #111;             /* Optional darker border on hover */
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 900;
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
}
.cta-btn,
.secondary-btn {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.cta-btn {
  background-color: #11c168;
  color: white;
  text-decoration: none;
}
.secondary-btn {
  background-color: #eeeeee;
  margin-left: 12px;
}
.how-section {
  background: #f7f8fa;
  padding: 40px 16px;
  text-align: center;
}
.steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.step-card {
  background: white;
  box-shadow: 0 2px 8px rgb(233 233 239 / 0.6);
  border-radius: 12px;
  padding: 24px 18px;
  width: 260px;
}
.pricing-section {
  background: white;
  text-align: center;
  padding: 40px 16px;
}
.pricing-section table {
  margin: 24px auto 0;
  width: 100%;
  max-width: 520px;
  border-collapse: collapse;
  background: #eeeff2;
  border-radius: 10px;
  overflow: hidden;
}
.pricing-section th,
.pricing-section td {
  padding: 14px;
  border-bottom: 1px solid #e2e2ea;
  font-weight: 600;
}
.pricing-section th {
  background: #e2e2ea;
}
.zones-section {
  text-align: center;
  padding: 40px 16px;
  background: #f7f8fa;
}
.map-placeholder {
  background: #e2e2ea;
  padding: 40px;
  max-width: 600px;
  margin: 24px auto 0;
  border-radius: 12px;
  color: #444;
  font-weight: 600;
  font-style: italic;
}
.features-section {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 16px;
}
.features-card {
  background: white;
  box-shadow: 0 2px 8px rgb(233 233 239 / 0.6);
  border-radius: 12px;
  padding: 24px;
  width: 320px;
}
.features-card ul {
  padding-left: 20px;
}
.contact-section {
  text-align: center;
  padding: 40px 20px;
  background: #eeeff2;
}
.contact-section a.cta-btn {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 18px;
}
.footer-flex {
  background: #23235d;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 16px 16px 16px;
  gap: 18px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-brand {
  margin-bottom: 3px;
}
.footer-operator { margin: 6px 0 0 0; font-size: 1rem;}
.footer-copyright { margin: 6px 0 0 0; font-size: 0.97rem;}

.footer-social-section {
  width: 100%;
  text-align: left;
}
.footer-social-label {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1rem;
}
.footer-social-icons a {
  font-size: 18px;
  color: white;
  background: #23235d;
  padding: 6px 9px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.footer-social-icons a:hover {
  background: #ffd700 ; /* WhatsApp green or your choice */
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}
.footer-link {
  color: #e0eaff;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.footer-link:hover { color: #ffd700; }
.footer-arrow {
  margin-left: 5px;
  font-size: 1.14rem;
  font-weight: bold;
  color: #e0eaff;
}
@media (min-width: 700px) {
  .footer-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    text-align: left;
  }
  .footer-social-section {
    /* Ensure social section is vertical (not horizontal) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1 1 220px;
  }
  .footer-social-label {
    /* No changes or add if needed */
    margin-bottom: 5px;
  }
  .footer-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    /* Add this line to force stacking below label */
    margin-top: 4px;
  }
  .footer-links {
    align-items: flex-end;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .logo-area {
    margin-bottom: 10px;
  }
  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  nav a,
  .whatsapp-btn {
    font-size: 1rem;
    margin: 6px 8px 6px 0;
    padding: 12px 20px;
    min-width: 140px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
@media (max-width: 700px) {    
  .info-boxes {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .info-box {
    min-width: 0 !important;
    width: 100% !important;
    padding: 16px 10px !important;
    font-size: 1rem !important;
    flex: none !important;   /* <-- force to content height */
    height: auto !important; /* <-- ensure not fixed height */
  }
}
@media (max-width: 900px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .features-section {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p,
  .step-card,
  .features-card,
  .pricing-section th,
  .pricing-section td {
    font-size: 1rem;
  }
  .step-card,
  .features-card {
    width: 100%;
  }
}


.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Hamburger visibility/media query */
@media (max-width: 700px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 1001;
  }
  .navbar {
    position: relative;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #23235d;
    position: absolute;
    left: 0;
    top: 60px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px #23235d90;
    z-index: 1000;
  }
  nav.open {
    display: flex;
  }
  nav a,
  .whatsapp-btn {
   padding: 12px 20px;
    margin: 5px 10px;
    font-size: 1rem;
    border-radius: 6px;
    text-align: center;
    display: block;
  }
}

