/* ===== GLOBAL RESET ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
}

/* Hero title stronger */

.sbn-hero-title {
  font-weight: 700;
}

/* Section headings slightly bold */

.sbn-services-heading h2,
.sbn-faq-heading h2,
.sbn-locations-heading h2,
.sbn-testimonials-heading h2 {
  font-weight: 600;
}

/* Small text */

p, span, li {
  font-weight: 400;
}
/* ================= HEADER SECTION ================= */

.sbn-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 70%, #FFF4E6 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 999;
  transition: all 0.3s ease;
}

.sbn-header-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.sbn-header-logo img {
  height: 52px;
  width: auto;
}

/* Navigation */
.sbn-header-nav {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -5px 0 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  padding-top: 40px;
}

.sbn-header-nav.active {
  right: 0;
}

.sbn-header-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sbn-header-menu li {
  margin: 18px 0;
  text-align: center;
}

.sbn-header-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #0B3C5D;
  transition: 0.3s ease;
}

.sbn-header-menu a:hover {
  color: #E67E22;
}

/* CTA Button */
.sbn-header-cta {
  background: linear-gradient(90deg, #F5A623, #E67E22);
  padding: 10px 18px;
  border-radius: 30px;
  color: #FFFFFF !important;
  box-shadow: 0 5px 15px rgba(230,126,34,0.3);
}

.sbn-header-cta:hover {
  transform: translateY(-2px);
}

/* Mobile Toggle */
.sbn-header-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.sbn-header-toggle span {
  width: 25px;
  height: 3px;
  background: #0B3C5D;
  margin: 4px 0;
  transition: 0.3s ease;
}

/* ================= DESKTOP ================= */

@media(min-width: 992px) {

  .sbn-header-nav {
    position: static;
    width: auto;
    height: auto;
    box-shadow: none;
    padding: 0;
  }

  .sbn-header-menu {
    display: flex;
    gap: 28px;
  }

  .sbn-header-menu li {
    margin: 0;
  }

  .sbn-header-toggle {
    display: none;
  }

}

.sbn-header-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sbn-header-logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.sbn-header-logo-link:hover .sbn-header-logo-img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .sbn-header-logo-img {
    height: 38px;
  }
}
/* ================= HERO SECTION ================= */
/* ================= UPGRADED HERO ================= */

.sbn-hero {
  background: linear-gradient(135deg, #0B3C5D 0%, #072A40 100%);
  padding: 110px 20px 90px;
  color: #FFFFFF;
  text-align: center;
}

.sbn-hero-container {
  max-width: 900px;
  margin: auto;
}

.sbn-hero-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.sbn-hero-title span {
  color: #F5A623;
}

.sbn-hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Buttons */

.sbn-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.sbn-hero-btn-primary {
  background: linear-gradient(90deg, #F5A623, #E67E22);
  padding: 14px;
  border-radius: 40px;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(245,166,35,0.4);
}

.sbn-hero-btn-secondary {
  border: 2px solid #FFFFFF;
  padding: 14px;
  border-radius: 40px;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}

/* Trust Signals */

.sbn-hero-trust {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 13px;
}

.sbn-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.95;
}

.sbn-trust-icon {
  width: 18px;
  height: 18px;
  color: #F5A623;
}

/* Desktop */

@media(min-width: 992px) {

  .sbn-hero-title {
    font-size: 46px;
  }

  .sbn-hero-subtitle {
    font-size: 17px;
  }

  .sbn-hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .sbn-hero-btn-primary,
  .sbn-hero-btn-secondary {
    padding: 16px 30px;
  }

  .sbn-hero-trust {
    flex-direction: row;
    justify-content: center;
    gap: 35px;
  }

}
/* ================= ROI SECTION ================= */

.sbn-roi {
  padding: 80px 20px;
  background: #F9FBFD;
}

.sbn-roi-container {
  max-width: 1200px;
  margin: auto;
}

.sbn-roi-heading {
  text-align: center;
  margin-bottom: 50px;
}

.sbn-roi-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
  line-height: 1.4;
}

.sbn-roi-heading h2 span {
  color: #F5A623;
}

.sbn-roi-heading p {
  margin-top: 12px;
  color: #555;
  font-size: 15px;
}

/* Comparison Layout */

.sbn-roi-comparison {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Cards */

.sbn-roi-card {
  background: #FFFFFF;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.sbn-roi-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.sbn-roi-amount {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sbn-roi-card ul {
  padding-left: 18px;
  color: #555;
}

.sbn-roi-card ul li {
  margin-bottom: 8px;
}

/* Loss Styling */

.sbn-roi-loss {
  border-left: 5px solid #E74C3C;
}

.sbn-roi-loss .sbn-roi-amount {
  color: #E74C3C;
}

/* Profit Styling */

.sbn-roi-profit {
  border-left: 5px solid #2E7D32;
}

.sbn-roi-profit .sbn-roi-amount {
  color: #2E7D32;
}

/* CTA */

.sbn-roi-cta {
  text-align: center;
  margin-top: 40px;
}

.sbn-roi-btn {
  background: linear-gradient(90deg, #F5A623, #E67E22);
  padding: 14px 30px;
  border-radius: 40px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(230,126,34,0.3);
  transition: 0.3s ease;
}

.sbn-roi-btn:hover {
  transform: translateY(-3px);
}

/* ================= DESKTOP ================= */

@media(min-width: 992px) {

  .sbn-roi-heading h2 {
    font-size: 38px;
  }

  .sbn-roi-comparison {
    flex-direction: row;
  }

  .sbn-roi-card {
    flex: 1;
  }

}

/* ================= SUBSIDY SECTION ================= */

.sbn-subsidy {
  padding: 90px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7EC 100%);
  position: relative;
}

.sbn-subsidy-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* LEFT SIDE */

.sbn-subsidy-title {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #0B3C5D;
}

.sbn-subsidy-title span {
  color: #F5A623;
}

.sbn-subsidy-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.sbn-subsidy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.sbn-subsidy-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.sbn-subsidy-btn {
  display: inline-block;
  background: linear-gradient(90deg, #F5A623, #E67E22);
  padding: 14px 28px;
  border-radius: 40px;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(230,126,34,0.3);
  transition: 0.3s ease;
}

.sbn-subsidy-btn:hover {
  transform: translateY(-3px);
}

/* RIGHT SIDE CARD */

.sbn-subsidy-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.sbn-subsidy-card h3 {
  margin-bottom: 20px;
  color: #0B3C5D;
}

.sbn-subsidy-rows {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sbn-subsidy-row {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #EEE;
}

.sbn-subsidy-note {
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

/* ================= DESKTOP ================= */

@media(min-width: 992px) {

  .sbn-subsidy-container {
    flex-direction: row;
    align-items: center;
  }

  .sbn-subsidy-left {
    flex: 1;
  }

  .sbn-subsidy-right {
    flex: 1;
  }

  .sbn-subsidy-title {
    font-size: 38px;
  }

}

/* ================= SERVICES SECTION ================= */

.sbn-services {
  padding: 90px 20px;
  background: #F4F8FB;
}

.sbn-services-container {
  max-width: 1200px;
  margin: auto;
}

.sbn-services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sbn-services-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
  margin-bottom: 10px;
}

.sbn-services-heading p {
  font-size: 16px;
  color: #555;
}

/* Grid */

.sbn-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

/* Cards */

.sbn-services-card {
  background: #FFFFFF;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.sbn-services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.sbn-services-icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.sbn-services-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0B3C5D;
}

.sbn-services-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= DESKTOP ================= */

@media(min-width: 768px) {
  .sbn-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1200px) {
  .sbn-services-heading h2 {
    font-size: 38px;
  }

  .sbn-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================= SERVICES SVG ICON ================= */

.sbn-services-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}

.sbn-services-icon-svg {
  width: 100%;
  height: 100%;
}
/* ================= TIMELINE ================= */

.sbn-timeline {
  padding: 90px 20px;
  background: #FFFFFF;
}

.sbn-timeline-container {
  max-width: 1100px;
  margin: auto;
}

.sbn-timeline-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sbn-timeline-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
}

/* STEPS WRAPPER */

.sbn-timeline-steps {
  position: relative;
}

/* VERTICAL LINE (Mobile) */

.sbn-timeline-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #E0E6ED;
}

/* STEP */

.sbn-timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.sbn-timeline-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: #F4F8FB;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.sbn-svg {
  width: 28px;
  height: 28px;
}

.sbn-timeline-content {
  margin-left: 20px;
}

.sbn-timeline-content h4 {
  margin: 0;
  font-size: 16px;
  color: #0B3C5D;
}

.sbn-timeline-content span {
  font-size: 13px;
  color: #999;
}

/* ACTIVE STEP */

.sbn-active .sbn-timeline-icon {
  background: linear-gradient(90deg, #F5A623, #E67E22);
}

/* ================= DESKTOP ================= */

@media(min-width: 992px) {

  .sbn-timeline-steps {
    display: flex;
    justify-content: space-between;
  }

  .sbn-timeline-steps::before {
    top: 30px;
    left: 5%;
    width: 90%;
    height: 2px;
  }

  .sbn-timeline-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 0;
    width: 20%;
  }

  .sbn-timeline-content {
    margin-left: 0;
    margin-top: 15px;
  }

}
/* ================= LOCATIONS SECTION ================= */

.sbn-locations {
  padding: 100px 20px;
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}

.sbn-locations-container {
  max-width: 1200px;
  margin: auto;
}

.sbn-locations-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sbn-locations-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
}

.sbn-locations-heading p {
  margin-top: 10px;
  color: #555;
}

/* GRID */

.sbn-locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* CARD */

.sbn-locations-card {
  background: #FFFFFF;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.sbn-locations-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.sbn-locations-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.sbn-locations-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0B3C5D;
}

.sbn-locations-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* DESKTOP */

@media(min-width: 992px) {

  .sbn-locations-heading h2 {
    font-size: 38px;
  }

  .sbn-locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* ================= LOCATION SVG ICON ================= */

.sbn-locations-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F4F8FB;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.sbn-locations-svg {
  width: 28px;
  height: 28px;
}

/* ================= TESTIMONIALS SECTION ================= */

.sbn-testimonials {
  padding: 100px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FB 100%);
}

.sbn-testimonials-container {
  max-width: 1200px;
  margin: auto;
}

.sbn-testimonials-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sbn-testimonials-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
}

.sbn-testimonials-heading p {
  margin-top: 10px;
  color: #555;
}

/* GRID */

.sbn-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* CARD */

.sbn-testimonial-card {
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.sbn-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.sbn-testimonial-quote {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.sbn-testimonial-svg {
  width: 100%;
  height: 100%;
}

.sbn-testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.sbn-testimonial-card h4 {
  margin: 0;
  font-size: 16px;
  color: #0B3C5D;
}

.sbn-testimonial-card span {
  font-size: 13px;
  color: #777;
}

/* DESKTOP */

@media(min-width: 992px) {

  .sbn-testimonials-heading h2 {
    font-size: 38px;
  }

  .sbn-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* ================= INSTALLATION PROOF ================= */

.sbn-proof {
  padding: 100px 20px;
  background: #F7FAFC;
}

.sbn-proof-inner {
  max-width: 1200px;
  margin: auto;
}

.sbn-proof-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sbn-proof-heading h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0B3C5D;
}

.sbn-proof-heading p {
  max-width: 650px;
  margin: auto;
  color: #555;
}

/* Grid Layout */

.sbn-proof-grid {
  display: grid;
  gap: 25px;
}

/* Featured Image */

.sbn-proof-feature {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.sbn-proof-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.sbn-proof-feature:hover img {
  transform: scale(1.05);
}

.sbn-proof-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.sbn-proof-overlay h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

/* Small Grid */

.sbn-proof-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sbn-proof-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.sbn-proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.sbn-proof-item:hover img {
  transform: scale(1.08);
}

.sbn-proof-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #F5A623;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Desktop Layout */

@media(min-width: 992px) {

  .sbn-proof-grid {
    grid-template-columns: 1.4fr 1fr;
  }

}
/* ================= FORM SECTION ================= */

.sbn-form-section {
  padding: 110px 20px;
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}

.sbn-form-container {
  max-width: 700px;
  margin: auto;
}

.sbn-form-heading {
  text-align: center;
  margin-bottom: 50px;
}

.sbn-form-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
}

.sbn-form-heading p {
  margin-top: 10px;
  color: #555;
}

/* FORM */

.sbn-form {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sbn-form-group {
  display: flex;
  flex-direction: column;
}

.sbn-form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.sbn-form-group input,
.sbn-form-group select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #E0E6ED;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.sbn-form-group input:focus,
.sbn-form-group select:focus {
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}

/* BUTTON */

.sbn-form-btn {
  margin-top: 10px;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg, #F5A623, #E67E22);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(245,166,35,0.4);
  transition: 0.3s ease;
}

.sbn-form-btn:hover {
  transform: translateY(-3px);
}

/* DESKTOP */

@media(min-width: 992px) {

  .sbn-form-heading h2 {
    font-size: 38px;
  }

}
/* ================= GUARANTEE & URGENCY ================= */

.sbn-guarantee {
  padding: 60px 20px;
  background: #ffffff;
}

.sbn-guarantee-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 25px;
}

/* Shared Card Style */

.sbn-guarantee-card,
.sbn-subsidy-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: 18px;
  align-items: center;
  transition: 0.3s ease;
}

/* Guarantee Style */

.sbn-guarantee-card {
  background: linear-gradient(135deg, #F5A623, #E67E22);
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(245,166,35,0.3);
}

/* Subsidy Style */

.sbn-subsidy-card {
  background: #F4F8FB;
  border: 1px solid #E0E6ED;
}

/* Icons */

.sbn-guarantee-icon,
.sbn-subsidy-icon {
  background: rgba(255,255,255,0.15);
  padding: 12px;
  border-radius: 14px;
  width: 75px;
  height: 75px;
}

.sbn-guarantee-icon svg,
.sbn-subsidy-icon svg {
  width: 100%;
  height: 100%;
}

/* Content */

.sbn-guarantee-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.sbn-guarantee-content p {
  font-size: 14px;
  opacity: 0.9;
}

.sbn-subsidy-content h4 {
  font-size: 17px;
  color: #0B3C5D;
  margin-bottom: 6px;
}

.sbn-subsidy-content p {
  font-size: 14px;
  color: #555;
}

/* Desktop Layout */

@media(min-width: 992px) {

  .sbn-guarantee-inner {
    grid-template-columns: 1fr 1fr;
  }

}
/* ================= FAQ SECTION ================= */

.sbn-faq {
  padding: 100px 20px;
  background: #FFFFFF;
}

.sbn-faq-container {
  max-width: 900px;
  margin: auto;
}

.sbn-faq-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sbn-faq-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
}

.sbn-faq-heading p {
  margin-top: 10px;
  color: #555;
}

/* FAQ ITEMS */

.sbn-faq-item {
  border-bottom: 1px solid #E0E6ED;
}

.sbn-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #0B3C5D;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sbn-faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.sbn-faq-icon::before,
.sbn-faq-icon::after {
  content: "";
  position: absolute;
  background: #F5A623;
  transition: 0.3s ease;
}

.sbn-faq-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.sbn-faq-icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

.sbn-faq-item.active .sbn-faq-icon::after {
  transform: scaleY(0);
}

/* ANSWER */

.sbn-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sbn-faq-answer p {
  padding-bottom: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* DESKTOP */

@media(min-width: 992px) {
  .sbn-faq-heading h2 {
    font-size: 38px;
  }
}

/* ================= FOOTER SECTION ================= */

/* ================= PREMIUM FOOTER ================= */

/* ================= PREMIUM CREATIVE FOOTER ================= */

.sbn-footer {
  background: #0B3C5D;
  color: #ffffff;
  padding: 90px 20px 40px;
  position: relative;
}

/* Accent Glow Line */

.sbn-footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #F5A623, #E67E22);
}

/* Layout */

.sbn-footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 50px;
}

.sbn-footer-col h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.sbn-footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.sbn-footer-col p {
  opacity: 0.85;
  line-height: 1.7;
}

.sbn-footer-col ul {
  list-style: none;
  padding: 0;
}

.sbn-footer-col ul li {
  margin-bottom: 10px;
}

.sbn-footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
  transition: 0.3s;
}

.sbn-footer-col ul li a:hover {
  color: #F5A623;
  opacity: 1;
  padding-left: 4px;
}

/* Divider */

.sbn-footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 50px 0 25px;
}

/* Bottom */

.sbn-footer-bottom {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sbn-footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sbn-footer-policies a {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.75;
  font-size: 14px;
  transition: 0.3s;
}

.sbn-footer-policies a:hover {
  color: #F5A623;
  opacity: 1;
}

.sbn-footer-credit {
  font-size: 14px;
  opacity: 0.85;
}

.sbn-footer-credit a {
  color: #F5A623;
  text-decoration: none;
  font-weight: 500;
}

.sbn-footer-credit a:hover {
  text-decoration: underline;
}

/* Desktop Layout */

@media(min-width: 992px) {

  .sbn-footer-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .sbn-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}

/* ================= ROI CALCULATOR ================= */

.sbn-roicalc {
  padding: 100px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FB 100%);
}

.sbn-roicalc-container {
  max-width: 1100px;
  margin: auto;
}

.sbn-roicalc-heading {
  text-align: center;
  margin-bottom: 60px;
}

.sbn-roicalc-heading h2 {
  font-size: 28px;
  color: #0B3C5D;
}

.sbn-roicalc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* FORM */

.sbn-roicalc-form {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sbn-roicalc-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.sbn-roicalc-group input,
.sbn-roicalc-group select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #E0E6ED;
  font-family: 'Inter', sans-serif;
}

.sbn-roicalc-btn {
  padding: 14px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(90deg, #F5A623, #E67E22);
  color: #FFFFFF;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.sbn-roicalc-btn:hover {
  transform: translateY(-3px);
}

/* RESULT */

.sbn-roicalc-result {
  background: #0B3C5D;
  color: #FFFFFF;
  padding: 35px;
  border-radius: 18px;
}

.sbn-roicalc-result h3 {
  margin-bottom: 20px;
}

.sbn-roicalc-output p {
  margin-bottom: 10px;
  font-size: 15px;
}

.sbn-roicalc-output span {
  color: #F5A623;
  font-weight: 600;
}

/* DESKTOP */

@media(min-width: 992px) {
  .sbn-roicalc-wrapper {
    flex-direction: row;
  }

  .sbn-roicalc-form,
  .sbn-roicalc-result {
    flex: 1;
  }

  .sbn-roicalc-heading h2 {
    font-size: 38px;
  }
}
/* ================= WHATSAPP WIDGET ================= */

.sbn-wa-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}


/* Floating Button */

.sbn-wa-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  border: none;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: 0.3s ease;
}

.sbn-wa-button:hover {
  transform: scale(1.1);
}

.sbn-wa-icon {
  width: 28px;
  height: 28px;
}

/* Popup */

.sbn-wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 300px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  animation: sbnWaFade 0.3s ease;
}

@keyframes sbnWaFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */

.sbn-wa-header {
  background: #075E54;
  color: #FFFFFF;
  padding: 12px;
  display: flex;
  align-items: center;
}

.sbn-wa-avatar {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  margin-right: 10px;
}

.sbn-wa-agent h4 {
  font-size: 14px;
  margin: 0;
}

.sbn-wa-status {
  font-size: 12px;
  color: #A5F3C6;
}

.sbn-wa-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
}

/* Body */

.sbn-wa-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

/* Chat Button */

.sbn-wa-chat-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
}

.sbn-wa-chat-btn:hover {
  background: #1DA851;
}

/* Show popup */

.sbn-wa-popup.active {
  display: block;
}

/* ================= POPUP ================= */

.sbn-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.sbn-popup {
  background: #FFFFFF;
  width: 90%;
  max-width: 420px;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  animation: sbnPopupFade 0.3s ease;
}

@keyframes sbnPopupFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sbn-popup h3 {
  font-size: 22px;
  color: #0B3C5D;
  margin-bottom: 15px;
}

.sbn-popup p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #555;
}

.sbn-popup-btn {
  display: block;
  background: linear-gradient(90deg, #F5A623, #E67E22);
  padding: 12px;
  border-radius: 40px;
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
}

.sbn-popup-wa {
  display: block;
  padding: 12px;
  border-radius: 40px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
}

.sbn-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.sbn-popup-overlay.active {
  display: flex;
}

/* ================= CREATIVE PRIVACY ================= */

.sbnp-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0B3C5D 0%, #072A40 100%);
  color: #FFFFFF;
  text-align: center;
}

.sbnp-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.sbnp-hero p {
  opacity: 0.85;
}

.sbnp-content {
  padding: 80px 20px;
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}

.sbnp-card {
  max-width: 900px;
  margin: -60px auto 0;
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.sbnp-block {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid #F5A623;
}

.sbnp-block h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0B3C5D;
}

.sbnp-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* Desktop */

@media(min-width: 992px) {
  .sbnp-hero h1 {
    font-size: 52px;
  }
}
/* ================= CREATIVE TERMS ================= */

.sbnt-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #072A40 0%, #0B3C5D 100%);
  color: #FFFFFF;
  text-align: center;
}

.sbnt-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.sbnt-content {
  padding: 80px 20px;
  background: linear-gradient(180deg, #F9FBFD 0%, #FFFFFF 100%);
}

.sbnt-card {
  max-width: 900px;
  margin: -60px auto 0;
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.sbnt-block {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid #F5A623;
}

.sbnt-block h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0B3C5D;
}

.sbnt-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

@media(min-width: 992px) {
  .sbnt-hero h1 {
    font-size: 52px;
  }
}
/* ================= REFUND POLICY ================= */

.sbnr-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #08324A 0%, #0B3C5D 100%);
  color: #FFFFFF;
  text-align: center;
}

.sbnr-hero h1 {
  font-size: 40px;
}

.sbnr-content {
  padding: 80px 20px;
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
}

.sbnr-card {
  max-width: 900px;
  margin: -60px auto 0;
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.sbnr-block {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid #F5A623;
}

.sbnr-block h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0B3C5D;
}

.sbnr-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
/* ================= PREMIUM STICKY BAR ================= */

.sbn-sticky-bar {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 480px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 6px;
}

/* Item */

.sbn-sticky-item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #0B3C5D;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
  border-radius: 40px;
  transition: 0.3s ease;
}

.sbn-sticky-icon {
  width: 20px;
  height: 20px;
}

/* Highlight WhatsApp */

.sbn-sticky-highlight {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(37,211,102,0.4);
}

/* Hover / Tap */

.sbn-sticky-item:active {
  transform: scale(0.95);
}

/* Hide on Desktop */

@media(min-width: 992px) {
  .sbn-sticky-bar {
    display: none;
  }
}

/* Prevent content hidden */

body {
  padding-bottom: 90px;
}

/* Overlay */
.sbn-eligibility-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Modal */
.sbn-eligibility-modal {
  background: #ffffff;
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  animation: sbnFadeIn 0.3s ease;
}

@keyframes sbnFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sbn-eligibility-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.sbn-eligibility-modal h2 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #0B3C5D;
}

.sbn-eligibility-field {
  margin-bottom: 15px;
}

.sbn-eligibility-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.sbn-eligibility-field select,
.sbn-eligibility-field input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.sbn-eligibility-submit {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #F5A623, #E67E22);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.sbn-eligibility-result {
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}