@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --blue: #0057B8;
  --blue-dark: #003d82;
  --blue-light: #e8f1ff;
  --accent: #FFB800;
  --green: #28a745;
  --green-light: #e8f5e9;
  --text: #1a1a2e;
  --gray: #6c757d;
  --light: #f8f9fa;
  --white: #fff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08)
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

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

/* NAV */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 87, 184, .12);
  position: sticky;
  top: 0;
  z-index: 1000
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  line-height: 1.1
}

.logo-sub {
  font-size: 10px;
  color: var(--gray);
  font-weight: 400
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  transition: .3s;
  position: relative
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--blue)
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600 !important
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: #fff !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  transition: .3s
}

.mobile-menu {
  display: none;
  background: #fff;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1)
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  color: var(--text)
}

.mobile-menu a:hover {
  color: var(--blue)
}

/* HERO */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: none
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: rgba(255, 184, 0, .07);
  border-radius: 50%
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px)
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px
}

.hero h1 span {
  color: var(--accent)
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  line-height: 1.7
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px
}

.hero-checks li::before {
  content: '✅';
  font-size: 14px
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: .3s;
  border: none;
  cursor: pointer;
  display: inline-block
}

.btn-primary:hover {
  background: #e0a600;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 184, 0, .4)
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, .6);
  transition: .3s;
  display: inline-block
}

.btn-outline:hover {
  background: #fff;
  color: var(--blue)
}

.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.hero-img img {
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, .3));
  animation: float 4s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

/* SECTIONS */
section {
  padding: 80px 0;
  margin: 0
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3
}

.section-title span {
  color: var(--blue)
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7
}

.text-center {
  text-align: center
}

.text-center .section-sub {
  margin: 0 auto
}

/* ABOUT BRAND */
.about-brand {
  background: var(--light)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px
}

.about-img-wrap {
  position: relative
}

.about-img-wrap img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 87, 184, .15)
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  text-align: center
}

.about-badge .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue)
}

.about-badge .lbl {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500
}

.about-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px
}

.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 87, 184, .08)
}

.stat-box .n {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue)
}

.stat-box .l {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500
}

/* WHY CHOOSE */
.why-choose {
  background: #fff
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px
}

.feature-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 30px;
  transition: .3s;
  position: relative;
  overflow: hidden
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 87, 184, .12);
  border-color: var(--blue)
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text)
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6
}

/* HIGHLIGHTS */
.highlights {
  background: linear-gradient(135deg, #003d82, #0057B8)
}

.highlights-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.highlights-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px
}

.hl-item::before {
  content: '✔';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0
}

.highlights-img img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

/* HOW IT WORKS */
.how-works {
  background: var(--light)
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--accent));
  z-index: 0
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  position: relative;
  z-index: 1;
  transition: .3s
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 87, 184, .12)
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text)
}

.step-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6
}

/* TESTIMONIALS */
.testimonials {
  background: #fff
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px
}

.testi-card {
  background: var(--light);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: .3s
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 87, 184, .1)
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--blue);
  opacity: .12;
  font-family: Georgia, serif;
  line-height: 1
}

.stars {
  color: #FFB800;
  font-size: 18px;
  margin-bottom: 16px
}

.testi-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px
}

.testi-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text)
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #003d82, #0057B8, #0080ff);
  padding: 80px 0;
  text-align: center
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

/* FOOTER */
footer {
  background: #0a1628;
  color: #fff;
  padding: 60px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px
}

.footer-brand .logo-text {
  color: #fff;
  font-size: 20px
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-top: 16px;
  line-height: 1.7
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px
}

.footer-col ul li {
  margin-bottom: 10px
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: .3s
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, .6)
}

.footer-contact li span:first-child {
  color: var(--accent);
  flex-shrink: 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .4)
}

/* PAGE BANNER */
.page-banner {
  background: linear-gradient(135deg, #003d82, #0057B8);
  padding: 50px 0px;
  text-align: center
}

.page-banner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  padding-top: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px
}

.page-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8)
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6)
}

.breadcrumb a {
  color: rgba(255, 255, 255, .8);
  transition: .3s
}

.breadcrumb a:hover {
  color: var(--accent)
}

.breadcrumb span {
  color: var(--accent)
}

/* ABOUT PAGE */
.mission-vision {
  background: var(--light)
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px
}

.mv-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.mv-card .icon {
  font-size: 40px;
  margin-bottom: 20px
}

.mv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px
}

.mv-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500
}

.strength-item::before {
  content: '⭐';
  font-size: 16px
}

/* PRODUCTS PAGE */
.product-hero {
  background: var(--light);
  padding: 60px 0
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.product-img-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 87, 184, .1);
  text-align: center;
  position: sticky;
  top: 90px
}

.product-img-box img {
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto
}

.product-details h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px
}

.product-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text)
}

.features-list li::before {
  content: '✅';
  font-size: 13px
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px
}

.spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8edf5;
  font-size: 14px
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 45%;
  background: var(--light)
}

.spec-table td:last-child {
  color: var(--gray)
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px
}

.pack-box {
  background: #fff;
  border: 2px solid #e8edf5;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: .3s;
  cursor: pointer
}

.pack-box:hover,
.pack-box.active {
  border-color: var(--blue);
  background: var(--blue-light)
}

.pack-box .weight {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue)
}

.pack-box .label {
  font-size: 12px;
  color: var(--gray)
}

/* Product Showcase Small */
.product-showcase-small img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-showcase-small img:hover {
  transform: scale(1.02);
}

/* GALLERY PAGE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--blue-light)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.gallery-item:hover img {
  transform: scale(1.08)
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 61, 130, .8), transparent);
  opacity: 0;
  transition: .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.gallery-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 600
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  font-size: 40px
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-card {
  background: var(--light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: .3s
}

.contact-card:hover {
  box-shadow: 0 8px 30px rgba(0, 87, 184, .1);
  transform: translateY(-3px)
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: #fff
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px
}

.contact-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5
}

.contact-form-wrap {
  background: var(--light);
  border-radius: 20px;
  padding: 40px
}

.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde3ee;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
  outline: none;
  background: #fff
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, .08)
}

.form-group textarea {
  height: 120px;
  resize: vertical
}

.btn-submit {
  background: var(--blue);
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: .3s;
  font-family: 'Poppins', sans-serif
}

.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 87, 184, .3)
}

.faq-section {
  background: var(--light);
  padding: 80px 0
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05)
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--blue);
  font-weight: 300;
  transition: .3s
}

.faq-item.open .faq-q::after {
  content: '−'
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: .35s;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  margin-top: 50px
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0
}

.distributor-box {
  background: linear-gradient(135deg, #003d82, #0057B8);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin-top: 50px;
  color: #fff
}

.distributor-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px
}

.distributor-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 30px
}

/* RESPONSIVE */
@media(max-width:900px) {

  .hero-inner,
  .about-grid,
  .highlights-inner,
  .product-main,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .features-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr
  }

  .steps-grid::before {
    display: none
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .mv-grid {
    grid-template-columns: 1fr
  }

  .about-badge {
    right: 10px;
    bottom: -10px
  }

  .product-img-box {
    position: relative;
    top: auto
  }
}

@media(max-width:600px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-inner {
    padding: 40px 20px
  }

  .features-grid,
  .testi-grid,
  .steps-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .packs-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-stats {
    grid-template-columns: 1fr 1fr
  }

  .strengths-grid {
    grid-template-columns: 1fr
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: flex-start
  }
}

/* Fix slider gap */
.navbar+section,
.navbar+.hero-slider {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Additional Gallery & Layout Polishing */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-weight: 600;
}

.gallery-placeholder span {
  font-size: 14px;
  margin-top: 10px;
}

/* Ensure slider images and containers have no gaps */
.hero-slider,
.slide {
  margin: 0 !important;
  padding: 0 !important;
}

.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* PRODUCT SHOWCASE SECTION */
.product-showcase {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  padding: 100px 0;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.showcase-img {
  position: relative;
  text-align: center;
}

.showcase-img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  animation: float 4s ease-in-out infinite;
  border: 10px red;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sf-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid rgba(0, 87, 184, 0.05);
}

.sf-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 87, 184, 0.1);
  border-color: var(--blue);
}

.sf-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 87, 184, 0.1);
}

.sf-item:hover .sf-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(10deg);
}

.sf-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.sf-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-img img {
    max-width: 80%;
    margin: 0 auto;
  }

  .sf-item:hover {
    transform: translateY(-5px);
  }
}

/* CONTACT SECTION REDESIGN */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.contact-form-side {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 87, 184, 0.1);
  border-color: var(--blue-light);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.info-text p,
.info-text a {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  text-decoration: none;
}

.info-text a:hover {
  color: var(--blue);
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}