/* =========================================================
   Sharma Water Proofing (SGWP) — Landing Page
   Theme: Blue #2C3F95 · Yellow #F4C434 · Orange #E68A00
   ========================================================= */

:root {
  --blue: #2C3F95;
  --blue-dark: #1E2B69;
  --blue-light: #3D53BE;
  --yellow: #f33a13;
  --yellow-dark: #DCAE1E;
  --orange: #E68A00;
  --white: #FFFFFF;
  --grey: #F5F7FA;
  --text: #1B2138;
  --muted: #242424;
  --wa: #25D366;
  --radius: 10px;
  --shadow-sm: 0 4px 14px rgba(28, 40, 90, .08);
  --shadow: 0 12px 34px rgba(28, 40, 90, .12);
  --shadow-lg: 0 22px 60px rgba(28, 40, 90, .20);
  --container: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.18
}

a {
  text-decoration: none;
  transition: .25s
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: var(--container)
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: var(--radius);
  font-weight: 700;
  padding: .7rem 1.4rem;
  border: 0;
  transition: transform .22s, box-shadow .22s, background .22s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.btn-lg {
  padding: .95rem 1.8rem;
  font-size: 1rem
}

.btn-sm {
  padding: .5rem .9rem;
  font-size: .82rem
}

.btn:active {
  transform: translateY(1px)
}

.btn-sgwp-yellow {
  background: var(--yellow);
  color: #fff;
  box-shadow: 0 8px 22px rgba(244, 196, 52, .38)
}

.btn-sgwp-yellow:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(230, 138, 0, .42)
}

.btn-sgwp-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(44, 63, 149, .30)
}

.btn-sgwp-blue:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(44, 63, 149, .42)
}

.btn-sgwp-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .30)
}

.btn-sgwp-wa:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-3px)
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-dark);
  color: #dfe4ff;
  font-size: .93rem;
  padding: .9rem 0;
}

.topbar i {
  color: var(--yellow);
  margin-right: .35rem
}

.topbar a {
  color: #dfe4ff;
  margin-left: 1.4rem
}

.topbar a:hover {
  color: var(--yellow)
}

/* ---------- Navbar ---------- */
.sgwp-nav {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(28, 40, 90, .08);
  padding: .6rem 0;
  z-index: 1030;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .7rem
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .5px;
  box-shadow: 0 6px 16px rgba(44, 63, 149, .32);
}

.brand-text strong {
  display: block;
  font-size: 1.02rem;
  color: var(--blue);
  line-height: 1.15;
  font-weight: 800
}

.brand-text small {
  display: block;
  font-size: .7rem;
  color: var(--muted);
  font-weight: 500
}

.navbar-toggler {
  border: 0;
  font-size: 1.7rem;
  color: var(--blue);
  box-shadow: none !important;
  padding: .2rem .5rem
}

.sgwp-nav .nav-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  padding: .5rem .85rem !important;
  border-radius: 8px;
}

.sgwp-nav .nav-link:hover {
  color: var(--blue);
  background: rgba(44, 63, 149, .07)
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
  position: relative
}

.section-grey {
  background: var(--grey)
}

.section-blue {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%)
}

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .9rem;
}

.eyebrow-light {
  color: var(--yellow)
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 1.1rem;
  color: var(--blue-dark)
}

.section-title.text-white {
  color: #fff
}

.section-text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark)
}

.hero-bg {
  position: absolute;
  inset: 0
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 29, 74, .94) 0%, rgba(28, 40, 105, .86) 45%, rgba(44, 63, 149, .62) 100%),
    radial-gradient(120% 90% at 80% 15%, rgba(244, 196, 52, .16) 0%, transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 110px 0 90px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(244, 196, 52, .15);
  border: 1px solid rgba(244, 196, 52, .45);
  color: var(--yellow);
  padding: .45rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .3)
}

.hero-title::after {
  content: "";
  display: block;
  width: 88px;
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  margin-top: 1.1rem;
}

.hero-sub {
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
  max-width: 640px
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.8rem
}

.hero-chips span {
  background: rgb(255 255 255);
  border: 1px solid rgb(255 255 255 / 20%);
  backdrop-filter: blur(6px);
  color: #0e0c0c;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 100px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 2rem
}

.trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem
}

.trust-badges li {
  color: #e6eaff;
  font-size: .87rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .45rem
}

.trust-badges i {
  color: var(--yellow);
  font-size: 1rem
}

/* water ripple accents */
.ripple {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  border: 2px solid rgba(244, 196, 52, .25);
  animation: ripple 7s ease-out infinite;
}

.ripple.r1 {
  width: 420px;
  height: 420px;
  right: -90px;
  top: -90px
}

.ripple.r2 {
  width: 620px;
  height: 620px;
  right: -180px;
  top: -180px;
  animation-delay: 2.2s
}

@keyframes ripple {
  0% {
    transform: scale(.7);
    opacity: .0
  }

  35% {
    opacity: .7
  }

  100% {
    transform: scale(1.25);
    opacity: 0
  }
}

/* Lead card (glassmorphism) */
.lead-card {
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--yellow);
}

.lead-card h3 {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: .35rem
}

.lead-card-sub {
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: 1.2rem
}

.form-note {
  font-size: .75rem;
  color: var(--muted);
  margin: .8rem 0 0;
  text-align: center
}

.form-note i {
  color: var(--wa)
}

.sgwp-form .form-control,
.sgwp-form .form-select {
  border-radius: var(--radius);
  border: 1.5px solid #dfe3ef;
  padding: .8rem 1rem;
  font-size: .93rem;
  background: #fbfcff;
}

.sgwp-form .form-control:focus,
.sgwp-form .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 .2rem rgba(44, 63, 149, .14);
  background: #fff;
}

.form-msg {
  font-size: .85rem;
  font-weight: 600;
  margin-top: .7rem;
  text-align: center
}

.form-msg.ok {
  color: #12874a
}

.form-msg.err {
  color: #c62828
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: #fd9801;
  padding: 38px 0;
}

.stats-strip .stat-num,
.stats-strip .stat-plus {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}

.stats-strip .stat-plus {
  font-size: 1.6rem
}

.stats-strip p {
  margin: .3rem 0 0;
  font-size: .85rem;
  font-weight: 600;
  color: #030303;
  text-transform: uppercase;
  letter-spacing: .06em
}

/* ---------- About ---------- */
.about-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover
}

.about-float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--yellow);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.about-float strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1
}

.about-float span {
  font-size: .76rem;
  font-weight: 600;
  color: #5a4a12
}

.about-point {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--grey);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  border-left: 4px solid var(--yellow);
}

.about-point i {
  color: var(--blue);
  font-size: 1.15rem
}

/* ---------- Service cards ---------- */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8ecf6;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.service-img {
  height: 250px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-light) 100%);
  position: relative
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.service-card:hover .service-img img {
  transform: scale(1.07)
}

.service-body {
  padding: 1.5rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column
}

.service-icon {
  position: absolute;
  top: -26px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(244, 196, 52, .45);
}

.service-body h3 {
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: .5rem;
  padding-right: 60px;
  font-weight: 600;
}

.service-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  flex: 1
}

.service-actions {
  display: flex;
  gap: .5rem
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative
}

.t-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 42px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 14px, transparent 14px 26px);
  display: none;
}

@media(min-width:992px) {
  .t-line {
    display: block
  }
}

.t-step {
  text-align: center;
  position: relative;
  padding: 0 .5rem
}

.t-num {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  margin: 0 auto 1.2rem;
  background: #fff;
  border: 3px solid var(--yellow);
  color: var(--blue);
  font-size: 1.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: .3s;
}

.t-step:hover .t-num {
  background: var(--blue);
  color: var(--yellow);
  border-color: var(--blue);
  transform: translateY(-5px)
}

.t-step h3 {
  font-size: 1.05rem;
  color: var(--blue-dark);
  margin-bottom: .4rem
}

.t-step p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0
}

/* ---------- Before / After ---------- */
.ba-card {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: .7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.ba-half {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, .2)
}

.ba-half img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .5s
}

.ba-card:hover .ba-half img {
  transform: scale(1.06)
}

.ba-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .6rem;
  border-radius: 6px;
}

.tag-before {
  background: rgba(0, 0, 0, .72);
  color: #fff
}

.tag-after {
  background: var(--yellow);
  color: var(--blue-dark)
}

.ba-caption {
  grid-column: 1/-1;
  margin: .4rem 0 .2rem;
  text-align: center;
  color: #dfe4ff;
  font-size: .85rem;
  font-weight: 600;
}

/* ---------- Why cards ---------- */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem 1.3rem;
  height: 100%;
  border-bottom: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.why-card.alt {
  border-bottom-color: var(--yellow)
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.why-card i {
  font-size: 1.6rem;
  color: var(--blue);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(44, 63, 149, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-card.alt i {
  color: var(--orange);
  background: rgba(244, 196, 52, .20)
}

.why-card h3 {
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: .4rem
}

.why-card p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6
}

/* ---------- Reviews ---------- */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.7rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8ecf6;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.review-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(44, 63, 149, .08);
  font-family: Georgia, serif;
}

.stars {
  color: var(--yellow);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: .9rem
}

.review-card p {
  font-size: .98rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 1.4rem
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-top: 1px solid #eef1f8;
  padding-top: 1rem
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue), var(--blue-light));
  color: var(--yellow);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer strong {
  display: block;
  font-size: .92rem;
  color: var(--blue-dark)
}

.reviewer small {
  font-size: .78rem;
  color: var(--muted)
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--grey)
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem
}

.contact-list i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 13px;
  background: var(--blue);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-list strong,
.contact-list a {
  display: block;
  font-size: .98rem;
  color: var(--blue-dark);
  font-weight: 700
}

.contact-list a:hover {
  color: var(--orange)
}

.contact-list span {
  display: block;
  font-size: .84rem;
  color: var(--muted)
}

.contact-list span a {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 600
}

.contact-card {
  background: var(--yellow);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.7rem;
  color: var(--blue-dark);
  margin-bottom: 1.4rem
}

.contact-card .form-control,
.contact-card .form-select {
  border: 0;
  background: #fff
}

.contact-card .form-msg {
  color: var(--blue-dark)
}

/* ---------- Footer ---------- */
.footer {
  background: var(--blue-dark);
  color: #c9d0f0;
  padding: 70px 0 0;
  font-size: .9rem
}

.f-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem
}

.f-brand strong {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800
}

.footer p {
  line-height: 1.75;
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  font-weight: 700
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer ul li {
  margin-bottom: .6rem
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: var(--yellow)
}

.f-contact li {
  display: flex;
  gap: .6rem;
  line-height: 1.6
}

.f-contact i {
  color: var(--yellow);
  margin-top: .2rem
}

.f-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem
}

.f-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-social a:hover {
  background: var(--yellow);
  color: var(--blue-dark)
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 52px;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: space-between;
}

.f-bottom p {
  margin: 0;
  font-size: .8rem;
  color: #fff;
}

/* ---------- Floating buttons ---------- */
.float-btns {
  position: fixed;
  right: 18px;
  bottom: 26px;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.fb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  transition: transform .25s;
  position: relative;
}

.fb:hover {
  transform: scale(1.1);
  color: #fff
}

.fb-call {
  background: #fd0000;
}

.fb-wa {
  background: #05b70a;
  color: #fff;
}

.fb-wa:hover {
  color: var(--blue-dark);
}

.fb-call::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1060;
  display: flex;
  background: #fff;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .14);
}

.sc {
  flex: 1;
  padding: .85rem .3rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}

.sc i {
  font-size: 1.15rem
}

.sc-call {
  background: var(--blue);
  color: #fff
}

.sc-wa {
  background: var(--wa);
  color: #fff
}

.sc-form {
  background: var(--yellow);
  color: var(--blue-dark)
}

.sc:hover {
  color: inherit;
  filter: brightness(1.05)
}

/* ---------- Responsive ---------- */
@media (max-width:1199px) {
  .hero-title {
    font-size: 2.9rem
  }
}

@media (max-width:991px) {
  .sgwp-nav .navbar-collapse {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    margin-top: .7rem;
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: auto
  }

  .hero-inner {
    padding: 70px 0 60px
  }

  .hero-title {
    font-size: 2.5rem
  }

  .section {
    padding: 70px 0
  }

  .section-title {
    font-size: 1.85rem
  }

  .about-img {
    height: 360px
  }

  .float-btns {
    bottom: 88px
  }
}

@media (max-width:767px) {
  body {
    padding-bottom: 64px
  }

  .hero-title {
    font-size: 2.05rem
  }

  .hero-sub {
    font-size: 1rem
  }

  .hero-cta .btn {
    flex: 1 1 100%
  }

  .trust-badges {
    gap: .45rem 1rem
  }

  .trust-badges li {
    font-size: .8rem
  }

  .lead-card {
    padding: 1.5rem 1.2rem
  }

  .section-title {
    font-size: 1.6rem
  }

  .stats-strip .stat-num {
    font-size: 1.9rem
  }

  .ba-half img {
    height: 150px
  }

  .contact-card {
    padding: 1.6rem 1.2rem
  }

  .why-card {
    padding: 1.2rem 1rem
  }

  .why-card i {
    width: 46px;
    height: 46px;
    font-size: 1.3rem
  }

  .f-bottom {
    flex-direction: column;
    text-align: center
  }

  .float-btns {
    bottom: 80px;
    right: 12px
  }

  .fb {
    width: 50px;
    height: 50px;
    font-size: 1.2rem
  }
}

@media (max-width:400px) {
  .hero-title {
    font-size: 1.8rem
  }

  .why-card h3 {
    font-size: .9rem
  }
}

/* ---------- Accessibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }
}


/* logo */

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo {
  width: 160px;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 991.98px) {
  .logo {
    width: 140px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .logo {
    width: 120px;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .logo {
    width: 110px;
  }
}