:root {
  --primary-blue:#022655;
  --primary-red:#e4002b;
  --light-bg:#f4f7fb;
  --text-dark:#111;
  --text-muted:#666;
  --radius:18px;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:system-ui,-apple-system,sans-serif;
  color:var(--text-dark);
  background:white;
}

/* HEADER */
.logo img{
  height: 60px;
}

.top-bar{
  background:var(--primary-blue);
  color:white;
  font-size:13px;
  padding:6px 7vw;
  display:flex;
  justify-content:space-between;
}

.header{
  background:white;
  border-bottom:1px solid #eee;
}

.nav{
  max-width:1180px;
  margin:auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-links{
  display:flex;
  gap:25px;
}

.nav-links a{
  text-decoration:none;
  color:#444;
}

.nav-links a:hover{
  color:var(--primary-red);
}

/* HERO */
.about-hero{
  background:linear-gradient(135deg,var(--primary-blue),#04327a);
  color:white;
  padding:60px 20px;
  text-align:center;
}

.about-hero h1{
  font-size:42px;
  margin-bottom:15px;
}

.about-hero p{
  max-width:750px;
  margin:auto;
  line-height:1.7;
  opacity:0.9;
}

/* SECTION */
.section{
  max-width:1180px;
  margin:auto;
  padding:60px 20px;
}

.section-title{
  text-align:center;
  font-size:30px;
  margin-bottom:20px;
}

/* TWO COLUMN */
.two-col{
  max-width: 1180px;
  margin: auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.two-col p{
  line-height:1.7;
  color:var(--text-muted);
}

/* MISSION */
.section-mission{
  background:var(--light-bg);
  padding: 60px 20px;
}

.card{
  background:white;
  padding:35px;
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.card h3{
  color:var(--primary-blue);
  margin-bottom:10px;
}

/* STATS */
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.stat h2{
  color:var(--primary-red);
  font-size:32px;
}

.stat p{
  color:var(--text-muted);
}

/* CTA */
.cta{
  background:var(--primary-blue);
  color:white;
  text-align:center;
  padding:80px 20px;
}

.cta h2{
  margin-bottom:20px;
}

.btn{
  display:inline-block;
  background:var(--primary-red);
  color:white;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-3px);
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg,#081a3a,#06142d);
  color: white;
  padding: 50px 20px;
  margin-top: 20px;
}

.footer-container {
  max-width: 1180px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 13px;
}

.footer-links {
  max-width: 900px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer small {
  display: block;
  text-align: center;
  opacity: 0.6;
  font-size: 13px;
}

/* ==========================
   BROADBAND PROMO SECTION
========================== */

.broadband-cta {
  background: linear-gradient(135deg, var(--primary-blue), #04327a);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.broadband-box h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.broadband-box p {
  opacity: 0.85;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .broadband-cta {
    padding: 40px 20px;
  }

  .broadband-box h2 {
    font-size: 22px;
  }
}

/* RESPONSIVE */

@media (max-width: 768px){
  .top-bar{
    flex-direction: column;
    text-align: center;
    gap: 3px;
    padding: 6px 15px;
  }

  .logo img{
    height: 45px;
  }
  .two-col{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr 1fr;}
}

/* =================================
   TERMS PAGE STYLES
================================= */

.terms-hero {
  background: linear-gradient(135deg,var(--primary-blue),#04327a);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.terms-hero h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.terms-hero p {
  opacity: 0.9;
}

.terms-container {
  max-width: 950px;
  margin: 60px auto;
  background: white;
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  line-height: 1.8;
}

.terms-container h2 {
  margin-top: 35px;
  color: var(--primary-blue);
  font-size: 22px;
}

.terms-container h3 {
  margin-top: 20px;
  font-size: 18px;
}

.terms-container ul {
  margin: 15px 0 20px 20px;
}

.terms-container li {
  margin-bottom: 8px;
}

.terms-container hr {
  margin: 30px 0;
  border: none;
  height: 1px;
  background: #eee;
}

/* TERMS MOBILE */
@media(max-width:768px){
  .terms-hero h2 {
    font-size: 32px;
  }

  .terms-container {
    padding: 30px 20px;
  }
}

/* MOBILE NAV */

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--primary-blue);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: white;
  padding: 80px 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.4s ease;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1500;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media(max-width:768px){
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
  .nav .btn {
    display: none;   /* ADD THIS */
  }
  .nav{
    justify-content: space-between;
  }
}
/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

@media(max-width:768px){

  .logo{
    margin: 0 auto;
  }

  .nav{
    position: relative;
    justify-content: space-between;
  }

}

/* ================= MOBILE NAV ================= */

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--primary-blue);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: white;
  padding: 80px 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: 0.4s ease;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1500;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav > .btn.btn-primary {
    display: none;
  }

  .nav {
    position: relative;
  }
}
/* =========================
   PACKAGES PAGE
========================= */

/* BANNER */
.banner{
  background:linear-gradient(135deg,var(--primary-blue),#04327a);
  color:white;
  padding:70px 20px;
  text-align:center;
}

.banner h1{
  font-size:38px;
  margin-bottom:10px;
}

.banner p{
  max-width:750px;
  margin:0 auto;
  line-height:1.7;
  font-size:16px;
  opacity:0.9;
}

/* PACK GRID */
.pack-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

@media (max-width:768px){

  .banner{
    padding: 20px 20px;
  }

  .banner h1{
    font-size: 28px;
  }

  .banner p{
    font-size: 14px;
  }
  .pack-grid{
    grid-template-columns:1fr;
  }
}

/* PACK CARD */
.pack-card{
  background:white;
  padding:30px;
  border-radius:var(--radius);
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:all .3s ease;
}

.pack-card:hover{
  background:var(--primary-blue);
  color:white;
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.pack-card:hover h3,
.pack-card:hover .price,
.pack-card:hover li{
  color:white;
}

.pack-card ul{
  list-style:none;
  margin:15px 0;
  color:var(--text-muted);
}

.pack-card li{
  margin-bottom:6px;
}
/* =========================
   REFUND PAGE
========================= */

.refund-hero {
  background: linear-gradient(135deg, var(--primary-blue), #04327a);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.refund-hero h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.refund-hero p {
  opacity: 0.9;
}

.refund-container {
  max-width: 950px;
  margin: 60px auto;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  line-height: 1.8;
}

.refund-container h2 {
  margin-top: 35px;
  color: var(--primary-blue);
  font-size: 22px;
}

.refund-container h3 {
  margin-top: 20px;
  font-size: 18px;
}

.refund-container ul {
  margin: 15px 0 20px 20px;
}

.refund-container li {
  margin-bottom: 8px;
}

.refund-container hr {
  margin: 30px 0;
  border: none;
  height: 1px;
  background: #eee;
}
@media (max-width: 768px) {

  .refund-hero {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

}

/* =======================
   CONTACT PAGE
======================= */

/* HERO */
.contact-hero {
  background: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.contact-hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-hero p {
  max-width: 750px;
  margin: auto;
  opacity: 0.9;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.info-box {
  margin-bottom: 20px;
}

.info-box h4 {
  color: var(--primary-red);
  margin-bottom: 5px;
}

/* FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(228,0,43,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 28px;
  }
  .section{
    padding: 40px 20px;
  }
  .section-mission{
    padding: 40px 20px;
  }

  .about-hero{
    padding: 40px 10px;
  }
  .about-hero h1{
    font-size: 28px;
  }
  .about-hero p{
    font-size: 14px;
  }
}

/* =========================
   MISSION SLIDER MOBILE ONLY
========================= */

@media (max-width: 768px) {

  .section-mission .two-col {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: -10px 15px 20px;
  }

  .section-mission .two-col::-webkit-scrollbar {
    display: none;
  }

  .section-mission .two-col {
    scrollbar-width: none;
  }

  .section-mission .two-col .card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

}

/* ==========================
   MOBILE FOOTER FIX
   (Same as Home Page)
========================== */

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
    text-align: left;
    max-width: 320px;
    margin: 25px auto;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer small {
    margin-top: 15px;
    font-size: 12px;
  }

}

.footer-info {
  text-align: center;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}

.footer-info strong {
  font-size: 16px;
  color: white;
}

.footer-info a {
  color: white;
  text-decoration: none;
}
/* =========================
   policy page- PREMIUM ACCORDION STYLE
========================= */
.policy-wrapper {
  background: var(--light-bg);
  padding: 60px 20px;
}

.policy-card {
  max-width: 950px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  line-height: 1.8;
}



.policy-intro p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

.accordion {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:none;

}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  background: #f9fafc;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-blue);
  transition: 0.3s ease;
}

.accordion-header:hover {
  background: #eef3fb;
}

.accordion-header::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
}

.accordion-header.active::after {
  content: "−";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.accordion-content h4 {
  margin-top: 18px;
  color: var(--primary-blue);
}

.accordion-content p,
.accordion-content ul {
  margin: 12px 0;
  color: var(--text-muted);
}

.accordion-content ul {
  padding-left: 20px;
}

/* ================= BLOG PAGE ================= */

.blog-hero {
  background: linear-gradient(135deg, var(--primary-blue), #04327a);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.blog-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

.blog-section {
  max-width: 1180px;
  margin: auto;
  padding: 60px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.read-btn {
  display: inline-block;
  background: var(--primary-red);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.read-btn:hover {
  transform: translateY(-3px);
}

/* BLOG MOBILE */
@media(max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    font-size: 32px;
  }
}
/* BLOG PAGE */
.blog1-hero {
  background: linear-gradient(135deg,var(--primary-blue),#04327a);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.blog1-hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.blog1-hero p {
  opacity: 0.9;
}

.blog1-section {
  padding: 60px 20px;
}

.blog1-container {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.blog1-container h2 {
  margin-top: 10px;
  color: var(--primary-blue);
}

.blog1-container ul {
  margin: 15px 0 20px 20px;
}

.blog1-cta {
  background: var(--light-bg);
  padding: 30px;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 40px;
}

/* COMPARISON TABLE */
.comparison-table {
  overflow-x: auto;
  margin: 30px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 12px;
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 15px;
}

.comparison-table th {
  background: var(--primary-blue);
  color: white;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background: #f9fafc;
}

.comparison-table td strong {
  color: var(--primary-red);
}

/* MOBILE */
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    font-size: 13px;
    padding: 10px;
  }
}

/* MOBILE */
@media(max-width:768px){

  .blog1-hero h1{
    font-size: 26px;
  }

  .blog1-section{
    padding: 40px 15px;
  }
  .blog1-section p{
    font-size: 14px;
  }
  .blog1-section ul,li{
    font-size: 14px;
  }
}
/* Blog Images */
.blog-image {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Mobile spacing */
@media(max-width:768px){
  .blog-image{
    margin: 20px 0;
  }
}