:root {
  --navy: #2c5372;
  --navy-mid: #1e4d99;
  --navy-light: #3068c0;
  --red: #cc2126;
  --red-lt: #e03a3f;
  --green: #3d8c44;
  --green-lt: #4ea656;
  --gray-bg: #f5f7fa;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
}

* {
  box-sizing: border-box;
}

/* Fade-in-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

body {
  font-family: 'Red Hat Display', sans-serif;
  color: var(--text-dark);
  background: #fff;
}

/* TOPBAR */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 0;
}

.topbar a {
  color: #adc8ff;
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

/* NAVBAR */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  height: 85px;
  width: auto;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  font-size: 0.88rem;
  padding: 6px 14px !important;
}

.nav-link:hover {
  color: var(--navy-mid) !important;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  transition: filter .25s, transform .2s;
}

.btn-nav-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

/* DROPDOWN */
.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 32px rgba(26, 51, 102, .13);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 200px;
}

.dropdown-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 9px 20px;
}

.dropdown-item:hover {
  background: #eaf5eb;
  color: var(--green);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 240px;
}

.dropdown-submenu:hover>.submenu {
  display: block;
}

.dropdown-submenu>.dropdown-item {
  color: var(--text-dark);
}

.dropdown-submenu:hover>.dropdown-item {
  background: #eaf5eb;
  color: var(--green);
}

/* HERO */
.hero {
  background:
    linear-gradient(to right, rgba(28, 55, 90, 0.97) 0%, rgba(28, 55, 90, 0.92) 40%, rgba(28, 55, 90, 0.55) 65%, rgba(28, 55, 90, 0.05) 100%),
    url('../images/banner.webp') center right / cover no-repeat;
  color: #fff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 520px;
  height: 520px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #a8e6ab;
}

.hero p.lead {
  font-size: 1.05rem;
  opacity: .88;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #a8e6ab;
}

.hero-stat span {
  font-size: 0.82rem;
  opacity: .8;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--green) 0%, #1e6b24 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter .25s, transform .2s;
}

.btn-hero-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  color: #fff;
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s;
}

.btn-hero-secondary:hover {
  background: #fff;
  color: var(--navy);
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(4px);
}

.hero-card h6 {
  font-size: 0.78rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .12);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  margin: 4px;
}

.feature-pill i {
  color: #a8e6ab;
}

.hero-wa-box {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 14px;
  margin-top: 20px;
}

.wa-label {
  font-size: .78rem;
  opacity: .7;
  font-weight: 600;
}

.wa-number {
  color: #a8e6ab;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.wa-number:hover {
  color: #fff;
}

/* HERO TRUST ROW */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.hero-trust-item i {
  color: #a8e6ab;
  font-size: 0.95rem;
}

/* HERO PRODUCT SHOWCASE */
.hero-showcase {
  position: relative;
}

.hero-prod-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}

.hero-prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}

.hero-prod-card:hover img {
  transform: scale(1.08);
}

.hero-prod-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, transparent 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 28px 12px 11px;
  line-height: 1.3;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--gray-bg);
  border-bottom: 1px solid #e5e9f0;
  padding: 18px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-item i {
  font-size: 1.3rem;
  color: var(--green);
}

/* SECTION HEADERS */
.section-tag {
  display: inline-block;
  background: #eaf5eb;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

h2.section-title,
h3.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.22;
}

h2.section-title span,
h3.section-title span {
  color: var(--navy-mid);
}

p.section-sub {
  color: var(--text-mid);
  font-size: 18px;
  max-width: 600px;
}

/* STATS */
.stats-section {
  padding: 70px 0;
  background: var(--gray-bg);
}

.stats-section .row>[class*="col"] {
  display: flex;
  align-items: stretch;
}

.stat-card {
  width: 100%;
  height: 100%;
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(26, 51, 102, .08);
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 52px rgba(26, 51, 102, .14);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy-mid));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform .45s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  background: #eaf5eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: background .3s;
}

.stat-card:hover .stat-card-icon {
  background: var(--green);
}

.stat-card-icon i {
  font-size: 1.5rem;
  color: var(--green);
  transition: color .3s;
}

.stat-card:hover .stat-card-icon i {
  color: #fff;
}

.stat-card-num {
  display: block;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* PRODUCTS */
.products {
  padding: 80px 0;
  background: #fff;
}

.products .row>[class*="col"] {
  display: flex;
  align-items: stretch;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 20px rgba(26, 51, 102, .08);
  transition: box-shadow .25s, transform .25s;
  background: #fff;
  will-change: transform;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(26, 51, 102, .15);
  transform: translateY(-5px);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-bg);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.prod-body {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 4px;
}

.prod-body h4 {
  flex: 0 0 100%;
  margin-bottom: 6px !important;
}

.prod-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.prod-body p {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}


.product-tag {
  display: inline-block;
  background: #eaf5eb;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* WHY US */
.why-us {
  padding: 80px 0;
  background: #fff;
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(26, 51, 102, .07);
  height: 100%;
  transition: box-shadow .25s;
  will-change: transform;
}

.why-card:hover {
  box-shadow: 0 10px 36px rgba(26, 51, 102, .13);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.why-card h4,
.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  margin: 0;
}

/* INDUSTRIES */
.industries {
  padding: 80px 0;
  background: var(--gray-bg);
}

.industry-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 16px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26, 51, 102, .07);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  border: 1.5px solid transparent;
  cursor: default;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(61, 140, 68, .13);
  border-color: var(--green);
}

.industry-icon {
  width: 58px;
  height: 58px;
  background: #eaf5eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background .25s;
}

.industry-card:hover .industry-icon {
  background: var(--green);
}

.industry-icon i {
  font-size: 1.5rem;
  color: var(--green);
  transition: color .25s;
}

.industry-card:hover .industry-icon i {
  color: #fff;
}

.industry-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color .25s;
}

.industry-card:hover span {
  color: var(--green);
}

/* SEO CONTENT */
.seo-content-section {
  padding: 80px 0;
  background: #fff;
}

.seo-block {
  margin-bottom: 8px;
}

.seo-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.seo-block h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eaf5eb;
}

.seo-block p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

.seo-block strong {
  color: var(--navy);
  font-weight: 700;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 70px 0;
}

.cta-band h2,
.cta-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.cta-band p {
  opacity: .85;
  font-size: 1rem;
}

.btn-cta-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}

.btn-cta-white:hover {
  background: #eaf5eb;
  color: var(--navy);
}

.btn-cta-orange {
  background: linear-gradient(135deg, var(--green) 0%, #1e6b24 100%);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: filter .25s, transform .2s;
}

.btn-cta-orange:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  color: #fff;
}

/* CONTACT */
.contact-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.section-tag-slash {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-main-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 16px;
}

.contact-main-title span {
  color: var(--green);
}

.contact-main-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.contact-info-card {
  background: #fff;
  border: 1.5px solid #dce8f2;
  border-radius: 16px;
  padding: 22px 18px;
  height: 100%;
  transition: border-color .2s, box-shadow .2s;
}

.contact-info-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(61, 140, 68, .1);
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--navy);
  display: block;
  margin-bottom: 14px;
}

.contact-info-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--navy);
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--green);
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(26, 51, 102, .08);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #eaf5eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--green);
}

.contact-info-item h6 {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-info-item p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--text-dark);
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--green);
}

.form-control,
.form-select {
  border: 1.5px solid #dde3ef;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 140, 68, .1);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy-mid) 100%);
  color: #fff;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  width: 100%;
  transition: filter .25s, transform .2s;
}

.btn-submit:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.btn-wa-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  background: #e9faf0;
  color: #1a7a43;
}

.btn-wa-chat:hover {
  background: #d0f0df;
  color: #1a7a43;
}

/* ABOUT MUMBAI SECTION */
.about-mumbai-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

/* SERVICE AREA SECTION */
.service-area-section {
  padding: 80px 0;
  background: #fff;
}

.service-area-card {
  background: var(--gray-bg);
  border-radius: 14px;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s, box-shadow .2s;
}

.service-area-card:hover {
  background: #eaf5eb;
  box-shadow: 0 4px 18px rgba(61, 140, 68, .1);
}

.service-area-card i {
  font-size: 1.3rem;
  color: var(--green);
}

.service-area-card strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.service-area-card span {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-item {
  border: 1.5px solid #e5edf5;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-btn {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  padding: 18px 22px;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--green);
  background: #f4fbf4;
}

.faq-btn::after {
  filter: none;
}

.faq-btn:not(.collapsed)::after {
  filter: hue-rotate(90deg) saturate(2);
}

.faq-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 4px 22px 20px;
  background: #f4fbf4;
}

/* FOOTER */
.site-footer {
  background: #eef4fa;
  padding: 60px 0 0;
  color: var(--text-dark);
  border-top: 2px solid #d4e4f0;
}

.footer-logo {
  height: 110px;
  width: auto;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.footer-social-link:hover {
  background: var(--green);
  transform: translateY(-2px);
  color: #fff;
}

.footer-col-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 3px solid var(--green);
}

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

.footer-list li {
  margin-bottom: 10px;
}

.footer-list li a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .2s, padding-left .2s;
}

.footer-list li a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.footer-contact-item i {
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact-item a:hover {
  color: var(--green);
}

.footer-export-strip {
  margin-top: 48px;
  padding: 28px 0;
  border-top: 1px solid #d4e4f0;
  text-align: center;
}

.footer-export-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.footer-export-countries {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin: 0;
}

.footer-divider {
  border-color: #d4e4f0;
  margin: 0;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.footer-bottom p {
  margin: 0;
}

.footer-agency-link {
  color: #e07020;
  font-weight: 600;
  text-decoration: none;
}

.footer-agency-link:hover {
  color: #c05c10;
}

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 999;
  display: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

/* p.footer-export-countries {
  color: var(--green);
} */

.footer-export-countries a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}


/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
  .hero {
    background:
      linear-gradient(to bottom, rgba(28, 55, 90, 0.96) 0%, rgba(28, 55, 90, 0.92) 60%, rgba(28, 55, 90, 0.82) 100%),
      url('../images/banner.webp') center center / cover no-repeat;
    padding: 60px 0 52px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .hero-trust-row {
    gap: 8px;
  }

  .hero-trust-item {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  /* sections */
  .stats-section,
  .products,
  .why-us,
  .industries,
  .cta-band,
  .contact-section {
    padding: 60px 0;
  }

  /* CTA band buttons wrap */
  .cta-band .d-flex {
    flex-wrap: wrap;
    gap: 12px !important;
  }
}

@media (max-width: 768px) {

  /* NAVBAR */
  .nav-logo {
    height: 60px;
  }

  /* HERO */
  .hero {
    padding: 48px 0 44px;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero p.lead {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  /* SECTIONS general */
  .stats-section,
  .products,
  .why-us,
  .industries,
  .cta-band,
  .contact-section {
    padding: 48px 0;
  }

  p.section-sub {
    font-size: 0.95rem;
  }

  /* STATS — 2 columns on mobile */
  .stats-section .row>[class*="col"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stat-card {
    padding: 26px 18px;
  }

  .stat-card-num {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  /* PRODUCTS */
  .prod-body h4 {
    font-size: 0.82rem;
  }

  .product-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  /* WHY US */
  .why-card {
    padding: 22px 18px;
  }

  /* INDUSTRIES */
  .industry-card {
    padding: 20px 10px 16px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
  }

  .industry-icon i {
    font-size: 1.2rem;
  }

  .industry-card span {
    font-size: 0.75rem;
  }

  /* CTA BAND */
  .cta-band {
    text-align: center;
  }

  .cta-band .d-flex {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .btn-cta-white,
  .btn-cta-orange {
    width: 100%;
    justify-content: center;
  }

  /* CONTACT */
  .contact-card {
    padding: 24px 18px;
  }

  .contact-main-title {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }

  /* FOOTER */
  .footer-export-strip {
    padding: 20px 16px;
  }

  .footer-export-countries {
    font-size: 0.78rem;
    line-height: 1.9;
  }

  .footer-logo {
    max-width: 160px;
  }

  /* TRUST STRIP */
  .trust-item {
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  /* BACK TO TOP */
  .back-to-top {
    bottom: 13px;
    right: 44%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: var(--gray-bg);
    color: var(--text-mid);
  }

  /* footer padding so content not hidden under quick-connect bar */
  .site-footer {
    padding-bottom: 80px;
  }

  .footer-bottom {
    margin-bottom: 0;
  }
}