html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ====== Common ====== */
.top-wrap { background: #ffffff; }

.brand-logo{
  height: 68px;
  width: 180px;
  object-fit: contain;
}

/* ================= NAVBAR (UPDATED) ================= */

/* Desktop layout: logo left, links center, button right */
.nav-desktop-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-left{
  flex: 0 0 auto;
}

.nav-center{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.nav-right{
  flex: 0 0 auto;
}

/* Link style */
.nav-link-item{
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  transition: .2s ease;
}

.nav-link-item:hover{
  color: #e10000;
}

/* Active like your mobile screenshot */
.nav-link-item.active{
  background: rgba(225,0,0,.10);
  padding: 6px 12px;
  border-radius: 999px;
  color: #111;
}

/* Mobile links row */
/* Scroll container */
.nav-links-mobile{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 12px 6px;
  scrollbar-width: none;
}
.nav-links-mobile::-webkit-scrollbar{ display:none; }

/* Inner row (centered when possible) */
.nav-links-inner{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;   /* ✅ center */
  width: fit-content;        /* ✅ shrink to content */
  margin: 0 auto;            /* ✅ center inside container */
  min-width: 100%;           /* ✅ if few links, it stays centered */
}

/* prevent links from shrinking */
.nav-links-inner > *{
  flex: 0 0 auto;
}


/* Hide center links on mobile, show second row */
@media (max-width: 991.98px){
  .nav-center{ display: none; }

  .nav-link-item{
    font-size: 18px;
  }
}

/* ====== HERO ====== */
.hero-block{
  padding: 0 0 0;
}

.hero-container{
  position: relative;
}

.hero-card{
  border-radius: 0;
  background: transparent;
}

/* Left red panel */
.hero-left{
  background:#e10000;
  min-height: 360px;
  display:flex;
}

.hero-left-inner{
  padding: 56px 48px;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.fibre-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 2px solid #000000;
  border-radius: 6px;
  width: 150px;
  height: 46px;
  background: transparent;
}

.fibre-badge span{
  font-weight: 900;
  font-style: italic;
  font-size: 28px;
  color:#000;
  letter-spacing: 1px;
}

.hero-title{
  color:#fff;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.05;
}

.hero-big{
  font-size: 56px;
}

.hero-sub{
  color:#fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.hero-btn{
  width: fit-content;
  border: 2px solid #ffffff;
}

/* Right image panel */
.hero-right{
  background:#f3f3f3;
  min-height: 360px;
  display:flex;
}

.hero-img{
  width:100%;
  height:100%;
  min-height: 360px;
  object-fit: cover;
}

/* Pills overlay at bottom of hero */
.hero-pills{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
  width: min(780px, 92%);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-pill{
  padding: 18px 16px;
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  color:#111;
  text-decoration: none;
  background:#ffffff;
}

.hero-pill:first-child{
  border-right: 1px solid rgba(0,0,0,.08);
}

/* ====== OFFERS ====== */
/* OFFERS v2 */
.offers-v2{ background:#fff; padding:18px 0; }
.offers-bar{
  display:flex;
  align-items:stretch;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:14px;
  gap:14px;
}
.offers-col{
  position:relative;
  display:flex;
  gap:12px;
  align-items:flex-start;
  flex: 1 1 0;
}
.icon-badge{
  width:54px; height:54px;
  border-radius:999px;
  border:2px solid #e10000;
  display:flex; align-items:center; justify-content:center;
  background:#fff;
  color:#111;
  flex: 0 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}
.pill-red{
  display:inline-flex;
  background:#e10000;
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:7px 12px;
  border-radius:999px;
  margin-bottom:8px;
}
.h{ font-weight:950; color:#111; font-size:16px; line-height:1.2; margin-bottom:2px; }
.p{ font-weight:650; color:#111; opacity:.9; }
.aed{ font-size:.82em; font-weight:800; vertical-align:top; }
.divider{
  width:1px;
  background: rgba(0,0,0,.08);
}

@media (max-width: 991.98px){
  .offers-bar{ flex-direction:column; }
  .divider{ width:100%; height:1px; }
}

/* ====== Responsive ====== */
@media (max-width: 991.98px){

  .hero-left-inner{
    padding: 34px 22px;
  }

  .hero-left, .hero-right, .hero-img{
    min-height: auto;
  }

  .hero-img{
    height: 240px;
    min-height: 240px;
  }

  .hero-title{
    font-size: 34px;
  }

  .hero-big{
    font-size: 44px;
  }

  .hero-sub{
    font-size: 18px;
  }

  .hero-pills{
    position: static;
    transform: none;
    width: 100%;
    margin-top: -26px; /* makes pills sit on image like screenshot */
    border-radius: 12px;
  }

  .offers-section{
    padding-top: 18px;
  }

  .hero-pill{
    font-size: 18px;
    padding: 14px 12px;
  }
}
/*------------------------*/
/* headings style */
/*------------------------*/
.etisalat-desc {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Ubuntu', sans-serif;
}
/* ===== Heading no-image v3 (UPDATED full red border) ===== */
.wh-noimg.v3 .wh-stripbox{
  background:#f9f9f9;
  border-radius:20px;
  padding:22px 18px;
  text-align:left;

  /* FULL red outline */
  border:2px solid #e10000;

  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.wh-noimg.v3 .wh-title{
  margin:0 0 6px;
  font-weight:950;
  color:#111;
}

.wh-noimg.v3 .wh-desc{
  margin:0;
  font-size:14px;
  font-weight:600;
  color:#111;
  opacity:.85;
  font-family:'Ubuntu', sans-serif;
}


/* ===== Home Wireless Pricing Section ===== */
.hw-section{ background:#fff; }

.hw-title{
  font-weight: 750;
  font-size: 40px;
  line-height: 1.12;
  color:#111;
  align-items: start;
}

.hw-para{
  font-size: 15px;
  color:#111;
  font-weight: 500;
  max-width: 520px;
}

.hw-note{
  font-size: 12.5px;
  color:#111;
  font-weight: 600;
  max-width: 520px;
}

/* Card */
.hw-card{
  border: 1.5px solid #111;
  border-radius: 14px;
  overflow: hidden;
  background:#fff;
  height: 100%;
  display:flex;
  flex-direction: column;
}

.hw-card-top{
  padding: 18px 18px 14px;
}

.hw-kicker{
  font-size: 13px;
  font-weight: 600;
  color:#111;
}

.hw-plan{
  font-size: 18px;
  font-weight: 900;
  color:#111;
}

.hw-commit{
  font-size: 13px;
  font-weight: 500;
  color:#111;
}

.hw-price{
  font-weight: 900;
  font-size: 28px;
  color:#111;
  line-height: 1.1;
}

.hw-price span{
  font-size: 16px;
  font-weight: 800;
}

.hw-vat{
  font-size: 12px;
  font-weight: 700;
  color:#111;
}

/* Grey bar like screenshot */
.hw-bar{
  background:#ececec;
  text-align:center;
  font-weight: 900;
  padding: 10px 12px;
  font-size: 16px;
}

/* Features */
.hw-features{
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.hw-feature{
  display:flex;
  align-items:center;
  gap: 12px;
}

.hw-ic{
  font-size: 34px;
  color:#111;
  width: 40px;
  display:flex;
  justify-content:center;
}

.hw-imgbox{
  width: 40px;
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-radius: 8px;
  background:#f5f5f5;
}

.hw-imgbox img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.hw-ft-title{
  font-size: 13px;
  font-weight: 800;
  color:#111;
}

.hw-ft-sub{
  font-size: 12.5px;
  font-weight: 600;
  color:#111;
}

/* Special badge (like STARZPLAY) */
.hw-badge{
  background:#111;
  color:#fff;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 10px;
}

/* Button */
.hw-cta{
  padding: 0 18px 18px;
}

.hw-btn{
  background:#000;
  color:#fff;
  font-weight: 900;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 20px;
}

.hw-btn:hover{
  background:#000;
  color:#fff;
}

/* Responsive like your screenshot */
@media (max-width: 991.98px){
  .hw-title{
    font-size: 26px;
    text-align:left;
  }
  .hw-para, .hw-note{
    text-align:left;
    margin-left:auto;
    margin-right:auto;
  }
}
/* ========= MOBILE SIDE MARGINS (Fix) ========= */
/* Adds safe padding on mobile so cards never touch screen edges */
@media (max-width: 991.98px){
  .hw-section{
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* ========= FIXED CARD HEIGHT + BUTTON BOTTOM ========= */
.hw-card{
  /* already flex column in your css */
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px;      /* desktop fixed height */
}

.hw-features{
  flex: 1;               /* takes remaining space */
  overflow: hidden;      /* keeps height stable */
}

.hw-cta{
  margin-top: auto;      /* pushes button to bottom */
  padding: 0 18px 18px;
}

/* Mobile height tuning */
@media (max-width: 991.98px){
  .hw-card{
    min-height: 520px;   /* a little taller for mobile */
  }
}


/* ===== eLife Plans Section ===== */
.elife-section{ background:#fff; }
/* Card */
.plan-card{
  position: relative;
  border: 1.5px solid #111;
  border-radius: 14px;
  overflow: hidden;
  background:#fff;
  display:flex;
  flex-direction: column;
  min-height: 650px;             /* fixed height */
}

/* Badge */
.plan-badge{
  position:absolute;
  top: -8px;
  left: 22px;
  background:#e10000;
  color:#fff;
  font-weight: 900;
  font-size: 13px;
  padding: 6px 14px;
  z-index: 2;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}

/* Top content */
.plan-top{ padding: 20px 22px 10px; }
.plan-mini{ font-size: 12px; font-weight: 700; color:#111;margin-top: 3px; }
.plan-title{ font-size: 20px; font-weight: 800; color:#111; margin-bottom: 1px; }
.plan-block{ margin-bottom: 1px; }
.plan-label{ font-size: 12px; font-weight: 800; color:#111; }
.plan-strong{ font-size: 14px; font-weight: 900; color:#111; margin-bottom: 1px; }

/* Speed bar */
.speedbar{
  height: 10px;
  background:#efefef;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.2);
}
.speedbar span{
  display:block;
  height:100%;
  background:#e10000;
  border-radius: 999px;
}
.speedbar-dark{ background:#2e2e2e; }
.speedbar-dark span{ background:#e10000; }

.plan-promo-text{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color:#e10000;
}

/* Icon rows now use images */
.icon-row{
  display:flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-top: 1px;
  align-items:center;
}

/* OTT logos */
.icon-img{
  height: 34px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  /* padding: 6px 8px; */
}

/* Benefit icons */
.benefit-img{
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  background:#fff;
  /* padding: 6px; */
}

/* Promotions block */
.plan-promo-box{
  background: linear-gradient(0deg, #ff6b6b, #e10000);
  color:#fff;
  padding: 9px 22px;
}
.promo-title{
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 8px;
}
.promo-list{
  margin:0;
  padding-left: 18px;
  font-weight: 800;
  font-size: 12.5px;
}
.promo-list li{ margin: 6px 0; }

/* Bottom area: pinned layout (NO BLANK SPACE) */
.plan-bottom{
  padding: 14px 22px 18px;
  margin-top: auto;          /* pushes bottom area down */
  display:flex;
  flex-direction: column;
  gap: 14px;
}

/* Tick list near price */
.tick-list{
  list-style:none;
  padding:0;
  margin: 0;
}
.tick-list li{
  position: relative;
  padding-left: 13px;
  font-size: 12.5px;
  font-weight: 600;
  color:#111;
  /* margin-bottom: 10px; */
}
.tick-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#e10000;
  font-weight: 900;
}

/* Price */

.commit{ font-size: 12px; font-weight: 800; color:#111; }
.price{
  font-size: 26px;
  font-weight: 900;
  color:#111;
  line-height: 1.1;
}
.price span{ font-size: 14px; font-weight: 900; }

.discount-row{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.discount-pill{
  background:#e10000;
  color:#fff;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.old-price{
  font-weight: 900;
  color:#111;
  text-decoration: line-through;
  opacity: .75;
}

.vat{ font-size: 12px; font-weight: 800; color:#111; margin-top: 8px; }

/* Actions always at bottom */
.plan-actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;         /* ensures it stays bottom inside bottom area */
}

.more-link{
  font-weight: 900;
  color:#111;
  text-decoration: underline;
}

.select-btn{
  background:#000;
  color:#fff;
  font-weight: 900;
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 18px;
}
.select-btn:hover{ background:#000; color:#fff; }

/* Mobile margins */
@media (max-width: 991.98px){
  .elife-section{ padding-left: 9px; padding-right: 9px; }
  .elife-section .container{ padding-left: 9px !important; padding-right: 9px !important; }
  .elife-section{ margin-left: 25px; margin-right: 25px; }
  .plan-card{ min-height: 650px; }
}



/*------------------------*/
/* Contact Section */
/*------------------------*/
.form-border {
  border: 0.0625rem solid rgba(0, 0, 0, 0.81) !important;

}
/* =========================
   Premium Contact Section - FULL UPDATED CSS
   (Left content + SEO bullets + Right form with 2-line heading + slimmer width)
   ========================= */

.contact-premium{
  background:#fff;
}

/* LEFT content card */
.contact-premium .content-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:22px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.contact-premium .mini-tag{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color:#e10000;
  background: rgba(225,0,0,.08);
  margin-bottom:10px;
}

.contact-premium .main-title{
  font-weight:950;
  color:#111;
  letter-spacing:-.4px;
  margin: 0 0 8px;
  line-height:1.15;
}

.contact-premium .price{
  display:inline-flex;
  align-items:flex-end;
  gap:6px;
  color:#e10000;
  font-weight:950;
}

.contact-premium .aed{
  font-size:.55em;
  font-weight:900;
  color:#111;
  opacity:.9;
  transform: translateY(-2px);
}

/* SEO bullets */
.contact-premium .benefits{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.contact-premium .benefits li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:7px 9px;
  border-radius:16px;
  background:#f7f7f7;
  border:1px solid rgba(0,0,0,.05);
}

.contact-premium .tick{
  width:28px;
  height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#e10000;
  color:#fff;
  flex: 0 0 auto;
  margin-top:1px;
}

.contact-premium .benefits span:last-child{
  color:#111;
  font-weight:600;
  opacity:.88;
  font-size:13.5px;
  line-height:1.55;
}

/* RIGHT form area */
/* wrapper width is controlled by inline max-width in HTML (recommended) */

/* two short lines above form */
.form-minihead .mh-top{
  color:#e10000;
  font-weight:700;
  font-size:16px;
  line-height:1.2;
  margin-bottom:4px;
}
.form-minihead .mh-sub{
  color:#111;
  font-weight:650;
  opacity:.85;
  font-size:13px;
}

/* Form Card */
.contact-premium .form-card{
  background:#fff;
  border-radius:22px;
  border:2px solid #000000;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  padding:16px; /* tighter premium */
}

/* Inputs */
.contact-premium .premium-input{
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:none;
}

.contact-premium .premium-input:focus{
  border-color:#e10000;
  box-shadow: 0 0 0 .2rem rgba(225,0,0,.15);
}

/* Buttons */
.btn-premium{
  border-radius:14px;
  box-shadow: 0 12px 26px rgba(225,0,0,.18);
}

.btn-premium-outline{
  border-radius:14px;
}

/* Ensure form column centers nicely on desktop */
@media (min-width: 992px){
  #contact .col-lg-6.d-flex{ min-height: 560px; } /* adjust if needed */
}

/* Mobile tweaks */
@media (max-width: 767.98px){
  .contact-premium .content-card{ padding:18px; }
  .contact-premium .form-card{ padding:16px; }
  .form-minihead .mh-top{ font-size:15px; }
  .form-minihead .mh-sub{ font-size:12.5px; }
}
/* MOBILE ONLY: more left/right margin for FORM + force form below content */
@media (max-width: 991.98px){

  /* 1) Make LEFT content appear first and FORM second (form down) */
  #contact .order-1{ order: 2 !important; }  /* form column */
  #contact .order-2{ order: 1 !important; }  /* content column */

  /* 2) Add extra left/right margin ONLY to the form block */
  #contact .form-wrap{
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Optional: slightly tighter form card so it fits nicely */
  #contact .form-card{
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Add-ons v1 ===== */
.addons-v1{ background:#fff; }

.addon-cardv1{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative;
  overflow:hidden;
}

.addon-cardv1::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(227,6,19,.08), transparent 55%);
  pointer-events:none;
}

.addon-cardv1:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0,0,0,.10);
  border-color: rgba(227,6,19,.35);
}

.addon-top{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  margin-bottom:10px;
}

.addon-pill{
  display:inline-flex;
  font-weight:900;
  font-size:12px;
  color:#e30613;
  background: rgba(227,6,19,.10);
  padding:6px 12px;
  border-radius:999px;
}

.addon-iconv1{
  width:74px;
  height:74px;
  border-radius:18px;
  background:#e30613;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  box-shadow: 0 16px 30px rgba(227,6,19,.20);
}

.addon-title{
  position:relative;
  z-index:1;
  font-weight:950;
  color:#111;
  margin:8px 0 6px;
}

.addon-price{
  position:relative;
  z-index:1;
  color:#e30613;
  font-weight:950;
  font-size:18px;
  margin-bottom:10px;
}

.addon-price .aed{ font-size:.70em; font-weight:900; vertical-align:top; }
.addon-price .per{ font-size:.75em; font-weight:800; color:#111; opacity:.8; margin-left:4px; }

.addon-desc{
  position:relative;
  z-index:1;
  color:#111;
  opacity:.85;
  font-size:13.5px;
  line-height:1.6;
  margin:0;
}

/* Mobile padding control (keep your existing) */
@media (max-width: 767.98px){
  .addons-mobile-padding{ padding-left:1.25rem; padding-right:1.25rem; }

  
}


/* =========================
   Premium Footer
   ========================= */
.premium-footer{
  background: radial-gradient(circle at top left, #1a1a1a, #0c0c0c 55%, #070707);
  color: rgba(255,255,255,.88);
  padding: 56px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Top grid */
.premium-footer .footer-top{
  display: grid;
  grid-template-columns: 1.2fr .9fr 1.2fr;
  gap: 34px;
  align-items: start;
}

/* Brand */
.footer-logo{
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.footer-partner{
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  max-width: 52ch;
}

/* Titles */
.footer-title{
  font-size: 25px;
  font-weight: 900;
  margin: 8px 0 12px;
  color: #fff;
  letter-spacing: .4px;
}

/* Links */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover{
  color: #fff;
  text-decoration: underline;
}

/* Contact list */
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer-contact li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 800;
}
.footer-contact a:hover{
  text-decoration: underline;
  color: #fff;
}

/* Icon bubble */
.f-ic{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(232, 40, 40, 0.918);
  border: 1px solid rgba(255,255,255,.10);
  color: #000000;
  font-size: 16px;
  flex: 0 0 auto;
}

.footer-address{
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.55;
}

/* Verify section */
.footer-verify-wrap{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.footer-verify{
  color: #ff3b3b;
  font-weight: 900;
  text-decoration: none;
}
.footer-verify:hover{
  color: #fff;
  text-decoration: underline;
}

/* Bottom */
.footer-bottom{
  margin-top: 14px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.70);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 991.98px){
  .premium-footer{ padding: 44px 0 16px; }

  .premium-footer .footer-top{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-logo{ height: 64px; }

  .footer-title{
    margin-top: 6px;
  }
}

@media (max-width: 991.98px){
  .lora{
    margin-left: 10px;
    margin-right: 10px;
}
    .addons-section{
         margin-left: 17px;
         margin-right: 17px;
    }
}



/* ===== Devices v2 ===== */
.devices-title-v2{
  font-weight:950;
  font-size:26px;
  color:#111;
  letter-spacing:-.3px;
}
.devices-sub-v2{
  font-size:13px;
  font-weight:700;
  color:#111;
  opacity:.75;
}

/* card */
.device-card-v2{
  width:100%;
  max-width:280px;
}
.device-box-v2{
  width:100%;
  aspect-ratio:1/1;
  border:1.5px solid rgba(0,0,0,.55);
  border-radius:18px;
  background:#fff;
  display:grid;
  place-items:center;
  padding:18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.device-card-v2:hover .device-box-v2{
  transform: translateY(-4px);
  border-color: rgba(0,0,0,.75);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.device-img-v2{
  max-width:78%;
  max-height:78%;
  object-fit:contain;
}

/* bottom tag bar */
.device-tag-v2{
  margin:10px auto 0;
  width: fit-content;
  background:#e00000;
  color:#fff;
  font-weight:900;
  font-size:14px;
  padding:10px 16px;
  border-radius:999px;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

/* notes box */
.devices-noteBox-v2{
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  padding:14px 14px;
  background:#fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.05);
  display:grid;
  gap:10px;
}
.note-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#111;
  font-weight:600;
  opacity:.88;
  font-size:15px;
  line-height:1.55;
}
.note-row i{
  color:#e00000;
  font-size:18px;
  margin-top:2px;
  flex:0 0 auto;
}

/* mobile */
@media (max-width: 575.98px){
  .devices-title-v2{ font-size:22px; }
  .device-tag-v2{ font-size:13px; padding:9px 14px; }
  .note-row{ font-size:14px; }
}


/*----------------------*/
/*    Popup form        */
/*----------------------*/

/* Overlay */
#offerPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  font-family: "Arial", sans-serif;
}

/* Popup Box */
.popup-box {
  background: linear-gradient(135deg, #ffffff, #f4f4f4, #eaeaea);
  border-radius: 0px;
  max-width: 340px;
  width: 90%;
  /* padding: 22px; */
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.5s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 29px;
  font-weight: bold;
  cursor: pointer;
  color: rgb(241, 7, 7);
  transition: 0.3s;
}
/* Close Button (square box) */
.close-btn{
  position:absolute;
  top:12px;
  right:12px;

  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;          /* adjust as you like */
  font-weight:900;
  line-height:1;

  color: rgb(241, 7, 7);
  background:#fff;
  border:2px solid rgb(241, 7, 7);
  border-radius:8px;       /* make 0 for perfect square */

  cursor:pointer;
  transition: .25s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

/* Hover effect */
.close-btn:hover{
  background: rgb(241, 7, 7);
  color:#fff;
}

.close-btn:hover {
  color: rgb(255, 255, 255);
}

/* Logo */
.popup-logo {
  margin-bottom: 8px;
  margin-top: 8px;;
  height: 80px;
}
.popup-logo img {
  height: 70px;
}
/* Consent exactly like screenshot */
.consent-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 14px;
  text-align: left;
}

.consent-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 3px;   /* aligns with first line */
  flex: 0 0 18px;
}

.consent-text{
  font-size: 11px;
  line-height: 1.35;
  color: #444;
  margin: 0;
  cursor: pointer;   /* clickable */
  display: block;
}

.privacy-link{
  color: #444;
  text-decoration: underline;
}


/* TEXT STYLE LIKE SCREENSHOT */
.popup-promos{
  text-align: center;
  margin-top: 12px;
}

.popup-promos .promo-item,
.popup-promos .promo-badge{
  display: none; /* disable old card look */
}

/* Big heading */
.promo-titl{
  font-size: 25px;
  font-weight: 900;
  margin: 0 0 10px;
  color:#000;
  line-height: 1.05;
}

/* Two-line offer text */
.promo-lines{
  font-size: 13px;
  font-weight: 500;
  color:#111;
  line-height: 1.35;
  margin: 0;
}

/* Mobile tune */
@media(max-width:420px){
  .promo-titl{ font-size: 32px; }
  .promo-lines{ font-size: 16px; }
}


/* Heading */
.popup-heading {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: left;
}

/* Offers Section */
.offers {
  list-style: none;
  padding: 0;
  margin: 0 0 0px;
  text-align: left;
}
.offers li {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

/* Divider */
.divider {
  border: none;
  height: 2px;
  background: #eee;
  margin: 10px 0 14px;
}

/* Inputs */
.popup-box input,
.popup-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* Main Button */
.popup-box button {
  width: 100%;
  padding: 14px;
  background: #e60000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.popup-box button:hover {
  background: #cc0000;
}

/* WhatsApp Button */
.whatsapp-box {
  margin-top: 12px;
  margin-bottom: 12px;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}
.whatsapp-btn img {
  margin-right: 8px;
}
.whatsapp-btn:hover {
  background: #1ebe5c;
}


/* ===== Success Modal (Professional) ===== */
.success-modal-wrap{
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  background: #fff;
}

.success-close{
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 5;
  filter: invert(1);
  opacity: .9;
}

.success-left{
  background: #e60000;
  min-height: 280px;
}

.success-big{
  color: #fff;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 52px;
  text-shadow: 0 6px 14px rgba(0,0,0,.35);
}

.success-sub{
  color: #fff;
  font-size: 22px;
  opacity: .95;
  text-shadow: 0 4px 10px rgba(0,0,0,.35);
}

.success-right{
  background: #fff;
}

.success-check{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #0a8f3f;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 25px rgba(10,143,63,.25);
}

.success-title{
  color: #0a8f3f;
  font-weight: 800;
}

.success-text{
  color: #111;
  font-weight: 700;
}

.success-small{
  color: #444;
  font-size: 14px;
}

.success-foot{
  font-size: 13px;
  color: #333;
  line-height: 1.35;
}

/* Mobile adjustments */
@media (max-width: 991px){
  .success-left{ min-height: 180px; }
  .success-big{ font-size: 42px; }
  .success-sub{ font-size: 18px; }
  .success-close{ filter: none; }
}


/* ===== Error Modal ===== */
.error-modal-wrap{
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  background: #fff;
}

.error-close{
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 5;
}

.error-icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d9534f;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(217,83,79,.35);
}

.error-title{
  color: #d9534f;
  font-weight: 800;
}

.error-text{
  color: #222;
  font-size: 15px;
}

.error-foot{
  font-size: 13px;
  color: #444;
}

/* Mobile */
@media (max-width: 575px){
  .error-icon{ width: 70px; height: 70px; }
}
/* Make Bootstrap modals always appear above your custom popup */
#offerPopup { z-index: 1040 !important; }   /* below modal backdrop */
.modal { z-index: 1060 !important; }
.modal-backdrop { z-index: 1055 !important; }

/* Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* background fade */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Hide initially */
.hidden {
  display: none;
}

/* Loader box */
.loader-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e60000; /* red */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}


/* Preloader Overlay */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff; /* background color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Loader Animation (spinner) */
.loaders {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #e60000; /* red spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* Call Now Floating button */

/* Wrapper fixed at bottom left */
.call-now-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

/* Flexbox container */
.call-now {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

/* Bubble text */
.call-text {
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

/* Call icon circle */
.call-icon {
  width: 50px;
  height: 50px;
  background: #e30613; /* Red */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover Effects */
.call-now:hover .call-icon {
  transform: scale(1.1);
  background: #b3000f; /* Darker red */
}

.call-now:hover .call-text {
  background: #f8f8f8;
  color: #e30613;
}

/* Whatsapp floating button */

/* Floating Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
}

/* Bubble Tooltip */
.msg-bubble {
  position: absolute;
  right: 65px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Bubble Arrow */
.msg-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

/* Show Bubble on Hover */
.whatsapp-float:hover .msg-bubble {
  opacity: 1;
  visibility: visible;
}
