/* Global Layout, Navigation, Responsive System & Footer */

body { margin: 0; }

/* Floating Crystal Glass Header */
.eswp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
  height: var(--eswp-header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(7, 42, 92, 0.04);
  transition: all 0.3s ease;
}

.eswp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.eswp-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.eswp-brand-logo__img {
  height: 52px;
  width: auto;
  object-fit: contain;
  max-width: 240px;
  transition: transform 0.25s ease;
}
.eswp-brand-logo__img:hover {
  transform: scale(1.03);
}

/* Primary Navigation Menu */
.eswp-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
}

.eswp-nav__link {
  text-decoration: none;
  color: #334155;
  font-family: var(--eswp-font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.6rem;
  position: relative;
  transition: color 0.2s ease;
  cursor: pointer;
  background: transparent !important;
}

.eswp-nav__link:hover {
  color: var(--eswp-blue);
}

.eswp-nav__link.active {
  color: var(--eswp-blue);
  font-weight: 700;
}

.eswp-nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 6px;
  right: 6px;
  height: 3px;
  background: var(--eswp-blue);
  border-radius: 3px;
}

/* Navigation Dropdown Menu (Shop) */
.eswp-nav__item-dropdown {
  position: relative;
}

.eswp-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: #ffffff;
  border-radius: var(--eswp-radius-md);
  border: 1px solid var(--eswp-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0.35rem 0 0 0;
}

/* 2-Column Modern Mega Dropdown */
.eswp-mega-menu {
  min-width: 580px;
  max-width: 620px;
  padding: 1.15rem 1.15rem 0.85rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 45px -8px rgba(15, 23, 42, 0.16);
}

.eswp-mega-menu--services {
  min-width: 540px;
}

.eswp-mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.eswp-mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.eswp-mega-menu__category-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.45rem;
  padding-left: 0.5rem;
}

.eswp-mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.65rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.eswp-mega-item:hover {
  background: #f0f9ff;
  transform: translateY(-1px);
}

.eswp-mega-item__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eswp-icon-blue { background: #e0f2fe; color: #0284c7; }
.eswp-icon-indigo { background: #e0e7ff; color: #4f46e5; }
.eswp-icon-teal { background: #ccfbf1; color: #0d9488; }
.eswp-icon-amber { background: #fef3c7; color: #d97706; }
.eswp-icon-cyan { background: #cffafe; color: #0891b2; }
.eswp-icon-emerald { background: #d1fae5; color: #059669; }

.eswp-mega-item__body {
  display: flex;
  flex-direction: column;
}

.eswp-mega-item__title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 2px;
  transition: color 0.15s ease;
}

.eswp-mega-item:hover .eswp-mega-item__title {
  color: #0066cc;
}

.eswp-mega-item__desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.35;
}

.eswp-mega-menu__footer {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #64748b;
}

.eswp-mega-menu__footer a {
  font-weight: 700;
  color: #0066cc;
  text-decoration: none;
  transition: color 0.15s ease;
}

.eswp-mega-menu__footer a:hover {
  color: #004c99;
}

.eswp-nav__item-dropdown:hover .eswp-nav__dropdown-menu,
.eswp-nav__item-dropdown:focus-within .eswp-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eswp-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.85rem;
  border-radius: var(--eswp-radius-sm);
  text-decoration: none;
  transition: background 0.15s ease;
}

.eswp-dropdown-item:hover {
  background: #f0f9ff;
}

.eswp-dropdown-item__title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--eswp-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eswp-dropdown-item__desc {
  font-size: 0.76rem;
  color: var(--eswp-text-muted);
  margin-top: 2px;
  font-weight: 400;
}

.eswp-header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.eswp-header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--eswp-navy);
  transition: opacity 0.2s ease;
}
.eswp-header-phone:hover {
  opacity: 0.85;
}
.eswp-header-phone__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--eswp-cyan-light);
  color: var(--eswp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eswp-header-phone__info {
  display: flex;
  flex-direction: column;
}
.eswp-header-phone__num {
  font-family: var(--eswp-font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.2;
  color: var(--eswp-navy);
}
.eswp-header-phone__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--eswp-muted);
}

.eswp-btn-header {
  padding: 0.65rem 1.35rem;
  font-size: 0.88rem;
  border-radius: var(--eswp-radius-sm);
  background: var(--eswp-blue);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.25);
}

.eswp-dropdown-tag {
  font-size: 0.7rem;
  color: var(--eswp-blue);
  background: var(--eswp-cyan-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.eswp-caret {
  font-size: 0.72rem;
  opacity: 0.7;
}

/* Mobile Nav Toggle Hamburger */
.eswp-menu-toggle {
  display: none;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: var(--eswp-radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--eswp-primary);
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.eswp-menu-toggle:hover {
  background: rgba(0, 102, 204, 0.15);
}

/* Mobile Slide-out Drawer */
.eswp-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 11, 26, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.eswp-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

html.eswp-no-scroll,
body.eswp-no-scroll {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none !important;
}

.eswp-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 360px;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: #ffffff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  padding: 1.25rem 1.15rem 1.75rem;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
}

.eswp-mobile-drawer::-webkit-scrollbar {
  width: 5px;
}
.eswp-mobile-drawer::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.eswp-mobile-drawer.open {
  transform: translateX(0);
}

.eswp-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--eswp-border);
  flex-shrink: 0;
  position: sticky;
  top: -1.25rem;
  background: #ffffff;
  z-index: 20;
  padding-top: 0.25rem;
}

.eswp-mobile-drawer__close {
  background: rgba(7, 42, 92, 0.06);
  border: none;
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eswp-primary);
}

.eswp-mobile-drawer__scroll {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.eswp-mobile-drawer__nav {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eswp-mobile-drawer__link {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--eswp-text-heading);
  text-decoration: none;
  border-radius: var(--eswp-radius-md);
  transition: background 0.2s ease;
}

.eswp-mobile-drawer__link:hover,
.eswp-mobile-drawer__link.active {
  background: #f0f7ff;
  color: var(--eswp-accent);
}

/* Mobile Sticky Bottom Action Bar (Thumb-Friendly on Phones) */
.eswp-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.65rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(7, 42, 92, 0.12);
}

@media (max-width: 768px) {
  .eswp-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 60px; /* Offset for sticky bar */
  }
}

/* Hero Content Column */
.eswp-hero-card {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  color: #ffffff;
  box-shadow: none;
  width: 100%;
  max-width: 620px;
  pointer-events: auto;
}

@keyframes eswp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer Styling */
/* ==========================================================================
   FOOTER - HIGH TRUST MODERN DESIGN
   ========================================================================== */
.eswp-footer {
  background: radial-gradient(circle at 50% 0%, #0c2b5e 0%, #03152d 100%);
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.25);
}

.eswp-footer-heading-wrap {
  margin-bottom: 1.25rem;
}

.eswp-footer-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.4rem 0;
}

.eswp-footer-heading-bar {
  width: 28px;
  height: 3px;
  background: #0284c7;
  border-radius: 2px;
}

/* Trust Cards (Column 1) */
.eswp-footer-trust-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.eswp-footer-trust-card:hover {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.15);
}

.eswp-footer-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #38bdf8;
}

/* Explore Icon Links (Column 2) */
.eswp-footer-explore-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.eswp-footer-explore-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: all 0.2s ease;
}

.eswp-footer-explore-link svg {
  color: #94a3b8;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.eswp-footer-explore-link:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.eswp-footer-explore-link:hover svg {
  color: #38bdf8;
  transform: scale(1.1);
}

.eswp-coverage-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  max-width: 230px;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(14, 165, 233, 0.08);
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: all 0.25s ease;
}

.eswp-coverage-pill-btn:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
}

/* Service Rich List (Column 3) */
.eswp-footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.eswp-footer-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: all 0.2s ease;
}

.eswp-footer-service-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #38bdf8;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.eswp-footer-service-item:hover .eswp-footer-service-icon {
  background: rgba(56, 189, 248, 0.2);
  transform: scale(1.08);
  color: #7dd3fc;
}

.eswp-footer-service-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #f1f5f9;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.eswp-footer-service-item:hover .eswp-footer-service-title {
  color: #38bdf8;
}

.eswp-footer-service-sub {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.3;
  margin-top: 1px;
}

/* Brand Logos Grid */
.eswp-footer-brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 3.25rem auto 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.eswp-footer-brand-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.35));
}

.eswp-footer-brand-line.right {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.35), transparent);
}

.eswp-footer-brand-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  white-space: nowrap;
}

.eswp-footer-brand-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.eswp-footer-brand-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 0.4rem 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 112px;
  box-sizing: border-box;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.eswp-footer-brand-card img {
  max-height: 26px;
  max-width: 88px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.2s ease;
}

.eswp-footer-brand-card:hover {
  background: #ffffff;
  border-color: #38bdf8;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.eswp-footer-brand-card:hover img {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .eswp-footer-brand-divider {
    margin: 2.25rem auto 1.25rem;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .eswp-footer-brand-title {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    white-space: normal;
  }
  .eswp-footer-brand-line {
    max-width: 32px;
  }
  .eswp-footer-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.25rem;
    box-sizing: border-box;
  }
  .eswp-footer-brand-card {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .eswp-footer-brand-card img {
    max-height: 22px;
    max-width: 85%;
  }
}

/* Bottom Bar */
.eswp-footer__bottom {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.eswp-footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

@media (max-width: 1024px) {
  .eswp-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* 1. Large Displays (1280px - 2560px+) */
@media (min-width: 1280px) {
  :root {
    --eswp-container-max: 1320px;
  }
}

/* 2. Tablet & Medium Screens (768px - 1024px) */
@media (max-width: 1024px) {
  .eswp-header__actions .eswp-btn-outline {
    display: none; /* Hide phone text button in navbar to conserve space */
  }
  .eswp-nav__link {
    padding: 0.4rem 0.65rem;
    font-size: 0.88rem;
  }
}

/* 3. Mobile Header & Nav (< 900px) */
@media (max-width: 900px) {
  .eswp-nav {
    display: none;
  }
  .eswp-menu-toggle {
    display: flex;
  }
  .eswp-header__actions .eswp-btn-whatsapp {
    display: none; /* Accessible in sticky bottom bar & mobile drawer */
  }
/* Global Body Background */
body {
  background-color: var(--eswp-bg);
  color: var(--eswp-text-body);
}

/* Hero Section Layout (Target Mockup Clean D2C Pure Water Theme) */
#hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  padding-top: calc(var(--eswp-header-height, 80px) + 3.5rem);
  padding-bottom: 6rem;
  background-color: #f8fafc;
  background-image: url('../images/hero-bg.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--eswp-line);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.eswp-hero-content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.eswp-hero-card {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--eswp-text-body);
  width: 100%;
  max-width: 580px;
  pointer-events: auto;
}

.eswp-hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.eswp-hero-title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: #0a2540;
  line-height: 1.12;
  margin: 0 0 0.5rem 0;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.eswp-hero-title span {
  color: #0066cc;
}

.eswp-hero-title-accent {
  width: 38px;
  height: 3px;
  background: #ef4444;
  border-radius: 2px;
  margin-bottom: 1.35rem;
}

.eswp-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  max-width: 520px;
  margin: 0 0 2rem 0;
  font-weight: 500;
}

.eswp-hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.eswp-btn-hero-primary {
  background: #0066cc;
  color: #ffffff;
  padding: 0.85rem 1.65rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.25);
  text-decoration: none;
  transition: all 0.2s ease;
}
.eswp-btn-hero-primary:hover {
  background: #0052a3;
  transform: translateY(-2px);
  color: #ffffff;
}

.eswp-btn-hero-whatsapp {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #22c55e;
  padding: 0.85rem 1.65rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.eswp-btn-hero-whatsapp:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  color: #0f172a;
}

/* 4 Trust Cards Matrix */
.eswp-hero-trust-cards {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
}

.eswp-hero-trust-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.9rem 0.75rem;
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.eswp-hero-trust-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.12);
  border-color: #0066cc;
}
.eswp-hero-trust-box__icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.eswp-hero-dot-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f97316;
  border: 1.5px solid #ffffff;
}
.eswp-hero-trust-box__text {
  font-size: 0.74rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

/* 100% Pure & Safe Water Badge on Marble */
.eswp-hero-glass-seal {
  position: absolute;
  bottom: 210px;
  right: 38%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  padding: 0.65rem 1.15rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.eswp-hero-glass-seal__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #0a2540;
  line-height: 1;
}
.eswp-hero-glass-seal__sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  line-height: 1.2;
}

/* Section 2 Floating Metrics Card */
.eswp-trust-ribbon-section {
  position: relative;
  margin-top: -3.5rem;
  z-index: 10;
  padding: 0 1rem;
}

.eswp-metrics-floating-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--eswp-container-max);
  margin: 0 auto;
}

.eswp-metrics-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eswp-metrics-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066cc;
  flex-shrink: 0;
}

.eswp-metrics-value {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0a2540;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eswp-metrics-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 3px;
}

.eswp-metrics-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.eswp-metrics-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.eswp-metrics-divider {
  width: 1px;
  height: 48px;
  background: #e2e8f0;
}

/* Mobile & Tablet Responsiveness (< 992px & Touch Screens) */
@media (max-width: 991px), (hover: none) and (max-width: 1024px) {
  #hero {
    min-height: auto;
    padding-top: calc(var(--eswp-header-height, 80px) + 2rem);
    padding-bottom: 4rem;
    background-position: center top;
  }

  .eswp-hero-card {
    max-width: 100%;
    padding: 0;
  }

  .eswp-hero-title {
    font-size: clamp(2rem, 6.5vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .eswp-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .eswp-hero-trust-cards {
    flex-wrap: wrap;
  }
  .eswp-hero-trust-box {
    flex: 1 1 calc(50% - 0.85rem);
  }

  .eswp-hero-glass-seal {
    display: none;
  }

  .eswp-metrics-floating-card {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .eswp-metrics-divider {
    display: none;
  }
}

/* 4. Small Mobile Screens (< 640px) */
@media (max-width: 640px) {
  :root {
    --eswp-header-height: 68px;
  }
  .eswp-brand-logo__img {
    height: 44px;
    max-width: 200px;
  }
  .eswp-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .eswp-grid {
    gap: 1.25rem;
  }
  .eswp-footer {
    padding-top: 3.5rem;
  }
  .eswp-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

