/* ============================================================
   SOAR DEW — REDESIGNED STYLESHEET
   Inspired by Varahi.in luxury water brand aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

:root {
  --ice:      #e8f4f8;
  --sky:      #c8e6f5;
  --blue:     #1a6fa3;
  --blue-d:   #0d4a73;
  --blue-deep:#082d47;
  --teal:     #0d8c7b;
  --gold:     #c9a84c;
  --gold-l:   #e8cc80;
  --white:    #ffffff;
  --off:      #f5fafd;
  --dark:     #061824;
  --dark-2:   #0d2d42;
  --text:     #1e3a4f;
  --text-m:   #3a5a72;
  --text-l:   #6a8da0;
  --border:   #cde3ef;
  --shadow:   0 8px 40px rgba(13,75,115,0.12);
  --shadow-lg:0 24px 80px rgba(13,75,115,0.2);
  --radius:   20px;
  --r-sm:     10px;
  --trans:    all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --font-cap:   'Cinzel', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--white);
  background-image: url('../images/bg-bokeh.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- TOPBAR ---- */
.topbar {
  background: #061824;
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  padding: 9px 0;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar i { color: var(--gold); margin-right: 5px; }
.topbar .announce { color: var(--gold-l); font-style: italic; text-transform: none; letter-spacing: 0; }

/* ---- NAVBAR ---- */
#mainNav {
  background: #ffffff;
  border-bottom: 2px solid rgba(26,111,163,0.15);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--trans);
  box-shadow: 0 2px 16px rgba(13,75,115,0.12);
}
#mainNav .container { padding: 14px 15px; }
#mainNav.scrolled { box-shadow: 0 4px 30px rgba(13,75,115,0.18); }
.navbar-brand img { height: 52px; object-fit: contain; border-radius: 6px; }
.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  color: #061824 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 14px !important;
  position: relative;
  transition: var(--trans);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 14px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: var(--trans);
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }
.nav-link:hover, .nav-link.active { color: var(--blue) !important; }
.navbar-toggler { border: 1.5px solid var(--blue); padding: 6px 10px; border-radius: 6px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a6fa3' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- BUTTONS ---- */
.btn-primary-sd {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: var(--white) !important;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--trans);
  display: inline-block;
  cursor: pointer;
}
.btn-primary-sd:hover {
  background: linear-gradient(135deg, var(--blue-d) 0%, var(--blue-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,111,163,0.35);
}
.btn-outline-sd {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--trans);
  display: inline-block;
  cursor: pointer;
}
.btn-outline-sd:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline-dark-sd {
  background: transparent;
  color: var(--blue) !important;
  border: 1.5px solid var(--blue);
  padding: 13px 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--trans);
  display: inline-block;
}
.btn-outline-dark-sd:hover {
  background: var(--blue);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.btn-gold-sd {
  background: linear-gradient(135deg, var(--gold) 0%, #a07828 100%);
  color: var(--white) !important;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--trans);
  display: inline-block;
}
.btn-gold-sd:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

/* ---- SECTION BASICS ---- */
.section-pad { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-cap);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--blue);
}
.lead-text {
  font-size: 1.1rem;
  color: var(--text-m);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== HERO SLIDER ===== */
#heroSlider .carousel-item { height: 100vh; min-height: 560px; }
.hero-slide-cover {
  position: relative;
  height: 100vh; min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-item.active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(6,24,36,0.85) 0%,
    rgba(6,24,36,0.55) 55%,
    rgba(6,24,36,0.15) 100%);
  z-index: 1;
}
.hero-content-wrap {
  position: relative; z-index: 2;
  width: 100%; padding: 0 15px;
}
.hero-content { max-width: 680px; }
.hero-tag {
  display: inline-block;
  font-family: var(--font-cap);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-l);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--sky); }
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 300;
}
.carousel-control-prev, .carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: rgba(255,255,255,0.25);
  opacity: 1;
}
.carousel-control-prev i, .carousel-control-next i { font-size: 1.1rem; }
.carousel-indicators {
  bottom: 28px;
}
.carousel-indicators button {
  width: 30px; height: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0 4px;
  transition: var(--trans);
}
.carousel-indicators button.active {
  background: var(--gold);
  width: 50px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-d) 100%);
  padding: 0;
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
  display: block;
}
.stat-sym {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
}
.stat-item p {
  font-family: var(--font-cap);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 8px 0 0;
}

/* ===== WHY US — FEATURE CARDS ===== */
.why-us { background: var(--off); }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transition: var(--trans);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 70px; height: 70px;
  background: var(--ice);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--blue);
  transition: var(--trans);
}
.feature-card:hover .feature-icon {
  background: var(--blue);
  color: var(--white);
}
.feature-card h5 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p { color: var(--text-m); font-size: 0.95rem; }

/* ===== PRODUCT FLYER SHOWCASE ===== */
.product-flyer-showcase {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(13,75,115,0.15);
  transition: var(--trans);
  background: var(--white);
  padding: 0;
}
.product-flyer-showcase:hover {
  box-shadow: 0 20px 70px rgba(13,75,115,0.25);
  transform: translateY(-4px);
}
.product-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ===== PRODUCTS SECTION ===== */
.products-preview { background: var(--white); }
.product-card {
  background: var(--off);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-card.featured { border-color: var(--gold); }
.product-img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--ice);
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img {
  height: 100%; width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-info {
  padding: 18px;
  text-align: center;
}
.product-info h6 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-info span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-l);
}
.badge-bestseller {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===== ABOUT HOME ===== */
.about-home { background: var(--off); }
.about-img-grid {
  position: relative;
  height: 520px;
}
.img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 85%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 46%; height: 50%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.about-list { list-style: none; margin: 22px 0; }
.about-list li {
  padding: 8px 0;
  color: var(--text-m);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.about-list li i { color: var(--teal); flex-shrink: 0; }

/* ===== GALLERY STRIP ===== */
.gallery-strip { background: var(--white); }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(6,24,36,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--trans);
  font-size: 1.5rem;
  color: var(--white);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 50px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--ice);
  position: absolute;
  top: -10px; left: 30px;
  line-height: 1;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: 0.88rem;
  color: var(--text-l);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.testimonial-indicators {
  bottom: -40px !important;
}
.testimonial-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--border) !important;
}
.testimonial-indicators button.active { background: var(--blue) !important; width: 8px !important; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-d) 40%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 420px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-d) 60%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M41.3,-50.2C52.6,-39.9,59.9,-24.2,62.8,-7.3C65.7,9.6,64.2,27.7,55.4,40.1C46.6,52.5,30.5,59.3,13.2,64.6C-4.1,69.9,-22.7,73.7,-36.1,66.7C-49.5,59.7,-57.8,41.9,-62.8,23.3C-67.8,4.7,-69.7,-14.7,-62.9,-30.2C-56.1,-45.7,-40.6,-57.4,-24.6,-66.1C-8.6,-74.8,7.9,-80.5,22.4,-75.1C36.9,-69.7,30,-60.5,41.3,-50.2Z' transform='translate(100 100)'/%3E%3C/svg%3E");
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: right -100px center;
  opacity: 0.5;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.breadcrumb { background: none; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255,255,255,0.65);
}

/* ===== ABOUT PAGE ===== */
.mission-section { background: var(--blue-deep); }
.mission-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  transition: var(--trans);
}
.mission-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); }
.mission-card.accent { background: rgba(26,111,163,0.3); border-color: rgba(26,111,163,0.5); }
.mission-icon {
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold-l);
}
.mission-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
}
.mission-card p { color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.8; }

.process-section { background: var(--off); }
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-num {
  font-family: var(--font-cap);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ice);
  line-height: 1;
  margin-bottom: -12px;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(26,111,163,0.3);
}
.process-step h6 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.88rem; color: var(--text-l); }

.cert-section { background: var(--white); }
.cert-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--trans);
}
.cert-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: var(--blue); }
.cert-card i { font-size: 2.5rem; color: var(--blue); margin-bottom: 16px; display: block; }
.cert-card h6 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.cert-card p { font-size: 0.88rem; color: var(--text-l); }

/* ===== PRODUCTS PAGE ===== */
.product-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}
.bestseller-badge { background: var(--gold); }
.product-full-img {
  height: 280px;
  overflow: hidden;
  background: var(--ice);
  display: flex; align-items: center; justify-content: center;
}
.product-full-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-full-card:hover .product-full-img img { transform: scale(1.05); }
.product-full-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-full-body h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-tagline {
  font-size: 0.88rem;
  color: var(--text-l);
  margin-bottom: 18px;
  font-style: italic;
}
.product-features { list-style: none; margin-bottom: auto; }
.product-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-m);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
}
.product-features li:last-child { border: none; }
.product-features li i { color: var(--teal); font-size: 0.8rem; }

.why-spring { background: var(--off); }
.mineral-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 20px;
  text-align: center;
  transition: var(--trans);
}
.mineral-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.mineral-card i { color: var(--blue); font-size: 1.4rem; margin-bottom: 10px; }
.mineral-card h6 { font-family: var(--font-serif); font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.mineral-card p { font-size: 0.82rem; color: var(--text-l); }

/* ===== GALLERY PAGE ===== */
.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 16px;
}
.gallery-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-grid-item .gg-overlay {
  position: absolute; inset: 0;
  background: rgba(6,24,36,0.55);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--trans);
  color: var(--white);
}
.gallery-grid-item:hover img { transform: scale(1.08); }
.gallery-grid-item:hover .gg-overlay { opacity: 1; }
.gallery-grid-item .gg-overlay i { font-size: 1.8rem; margin-bottom: 8px; }
.gallery-grid-item .gg-overlay span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox-modal .modal-dialog { max-width: 90vw; }
.lightbox-modal .modal-content { background: rgba(6,24,36,0.97); border: none; }
.lightbox-modal .modal-body { padding: 10px; text-align: center; }
.lightbox-modal img { max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-modal .btn-close { filter: invert(1); opacity: 0.7; }

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--trans);
  height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.contact-info-card.accent { background: var(--blue); border-color: var(--blue); }
.contact-info-card.accent h5, .contact-info-card.accent p, .contact-info-card.accent a { color: var(--white) !important; }
.contact-info-card.accent .contact-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.contact-icon {
  width: 60px; height: 60px;
  background: var(--ice);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--blue);
}
.contact-info-card h5 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-info-card p, .contact-info-card a { font-size: 0.93rem; color: var(--text-m); }

.contact-form-wrap { padding: 60px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.custom-input {
  border: 1px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 14px 16px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
  transition: var(--trans) !important;
  background: var(--off) !important;
}
.custom-input:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(26,111,163,0.12) !important;
  background: var(--white) !important;
}
.form-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-l); margin-bottom: 6px; }

/* ===== ORDER SECTION ===== */
.order-section { background: var(--off); }
.size-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
}
.size-card:hover, .size-card.selected {
  border-color: var(--blue);
  background: var(--ice);
  transform: translateY(-4px);
}
.size-card h5 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--dark); margin-bottom: 4px; }
.size-card p { font-size: 0.82rem; color: var(--text-l); }

/* ===== CTA BANNER WITH BACKGROUND ===== */
.cta-banner {
  background: linear-gradient(105deg,
    rgba(6,24,36,0.82) 0%,
    rgba(13,75,115,0.65) 50%,
    rgba(6,24,36,0.75) 100%),
    url('images/hero-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 0 !important;
  position: relative;
}
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.cta-banner p { color: rgba(255,255,255,0.87); font-size: 1.08rem; }
.cta-banner .section-tag { color: var(--gold-l); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--trans);
}
.social-links a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-3px); }
.footer-heading {
  font-family: var(--font-cap);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold-l); padding-left: 4px; }
.footer-contact { list-style: none; }
.footer-contact li {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 60px 0 0; }
.footer-bottom {
  padding: 24px 0;
}
.footer-copy, .footer-cert {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 0;
}
.footer-cert i { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26,111,163,0.4);
  transition: var(--trans);
  z-index: 9999;
}
.back-to-top:hover { background: var(--blue-d); transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ===== DECORATIVE DIVIDER ===== */
.wave-divider { display: block; line-height: 0; }
.gold-line {
  display: block;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  margin: 16px 0 28px;
}
.gold-line.center { margin: 16px auto 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .about-img-grid { height: 360px; }
  .contact-form-wrap { padding: 36px 24px; }
  .product-flyer-showcase { margin-top: 40px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2.4rem; }
  .stat-item { padding: 24px 12px; }
  .stat-num { font-size: 2.2rem; }
  .about-img-grid { height: 280px; }
  .testimonial-card { padding: 36px 24px; }
  .cta-banner { padding: 80px 0; }
  .page-hero { height: 320px; }
  .page-hero-title { font-size: 2.2rem; }
  .product-flyer-showcase { 
    margin-top: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(13,75,115,0.12);
  }
  .product-flyer-img { border-radius: 16px; }
}

/* ============================================================
   GLOBAL BACKGROUND OVERLAY — bokeh background visible through sections
   ============================================================ */
.why-us,
.products-preview,
.about-home,
.gallery-strip,
.testimonials,
.process-section,
.cert-section,
.why-spring,
.order-section,
.contact-section,
.page-hero,
.products-full,
.about-section,
.team-section,
.gallery-section,
.contact-info-section,
section {
  background-color: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(2px);
}

/* Dark sections — keep their original dark background, restore text visibility */
.mission-section {
  background: var(--blue-deep) !important;
  backdrop-filter: none !important;
}
.mission-section .mission-card {
  background: rgba(255,255,255,0.06) !important;
}
.mission-section .mission-card.accent {
  background: rgba(26,111,163,0.3) !important;
}
.mission-section .mission-card h4 {
  color: #ffffff !important;
}
.mission-section .mission-card p {
  color: rgba(255,255,255,0.85) !important;
}
.mission-section .section-tag {
  color: var(--gold-l) !important;
}
.mission-section .section-title,
.mission-section h2 {
  color: #ffffff !important;
}
.values-section {
  background-color: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(2px);
}

/* Keep dark/opaque sections as-is */
.topbar { background: #061824 !important; backdrop-filter: none !important; }
.topbar-new { background: #0d1f2d !important; backdrop-filter: none !important; }
#mainNav, .navbar { background: #ffffff !important; backdrop-filter: none !important; }
.footer,
.stats-bar,
.cta-strip,
.hero-slide-cover,
.hero-slide-bg {
  background-color: unset !important;
  backdrop-filter: none !important;
}

/* Cards and boxes stay white but slightly transparent */
.card, .product-card, .cert-card, .value-card, .process-step,
.contact-form-wrap, .testimonial-card {
  background: rgba(255, 255, 255, 0.92) !important;
}

/* ============================================================
   BENEFITS BANNER SECTION
   ============================================================ */
.benefits-banner-section {
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 0;
  line-height: 0;
}
.benefits-banner-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.benefits-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

/* Desktop: show full wide image */
@media (min-width: 992px) {
  .benefits-banner-img {
    max-height: 480px;
    object-position: center center;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
  .benefits-banner-img {
    max-height: 360px;
    object-position: center center;
  }
}

/* Mobile: let it scale naturally, no crop */
@media (max-width: 575px) {
  .benefits-banner-img {
    max-height: none;
    height: auto;
  }
}

/* ============================================================
   NEW TOPBAR & NAVBAR REDESIGN
   ============================================================ */

/* ---- TOPBAR ---- */
.topbar-new {
  background: #0d1f2d;
  padding: 10px 0;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-item {
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar-item:hover { color: #ffffff; }
.topbar-icon-wrap {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.topbar-item:hover .topbar-icon-wrap {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}
.topbar-icon-wrap.delivery {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.topbar-divider {
  color: rgba(255,255,255,0.25);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
}
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}
.topbar-social-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.topbar-social-icon:hover { transform: scale(1.12); opacity: 0.9; }
.topbar-social-icon.facebook { background: #1877F2; color: #fff; }
.topbar-social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.topbar-right { display: flex; align-items: center; }
.topbar-announce {
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.highlight-city {
  color: #f5c542;
  font-weight: 700;
}

/* ---- NAVBAR NEW ---- */
.navbar-new {
  background: #ffffff !important;
  border-bottom: 2px solid rgba(26,111,163,0.12) !important;
  box-shadow: 0 2px 20px rgba(13,75,115,0.1) !important;
  padding: 0 !important;
  backdrop-filter: none !important;
}
.navbar-new .container { padding: 12px 15px; }
.navbar-new .navbar-brand img {
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
}
.navbar-new .nav-link {
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  color: #0d1f2d !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 10px 18px !important;
  position: relative;
  transition: color 0.2s !important;
}
.navbar-new .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.navbar-new .nav-link:hover::after,
.navbar-new .nav-link.active::after { width: calc(100% - 36px); }
.navbar-new .nav-link:hover,
.navbar-new .nav-link.active { color: var(--blue) !important; }

.navbar-order-wrap { margin-left: 16px; }
.btn-order-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a4f96;
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,79,150,0.35);
  white-space: nowrap;
}
.btn-order-now i { font-size: 0.9rem; }
.btn-order-now:hover {
  background: #0d3a75;
  box-shadow: 0 6px 20px rgba(26,79,150,0.45);
  transform: translateY(-1px);
  color: #ffffff !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .topbar-left { gap: 7px; }
  .topbar-item { font-size: 0.75rem; }
  .topbar-announce { font-size: 0.75rem; }
  .navbar-new .navbar-collapse {
    border-top: 1px solid rgba(26,111,163,0.1);
    padding: 12px 0;
  }
  .navbar-new .nav-link { padding: 10px 8px !important; }
  .navbar-order-wrap { margin: 10px 0 4px; }
  .btn-order-now { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
  .topbar-new { padding: 8px 0; }
  .topbar-item span.d-none { display: none; }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE FIX — Mobile / Tablet / Desktop
   ============================================================ */

/* === GLOBAL OVERFLOW FIX — prevents horizontal scroll everywhere === */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
.container, .container-fluid,
.row { max-width: 100%; }
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* === FOOTER — prevent overflow / horizontal scroll === */
.site-footer {
  overflow: hidden;
  width: 100%;
}
.site-footer .container { overflow: hidden; }
.footer-bottom .row {
  flex-wrap: wrap;
  gap: 8px 0;
}
.footer-copy, .footer-cert {
  text-align: center !important;
  word-break: break-word;
}

/* === TOPBAR — responsive stacking === */
@media (max-width: 767px) {
  .topbar-new { padding: 7px 0; }
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .topbar-left {
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }
  .topbar-right { display: none !important; }
  .topbar-divider { display: none !important; }
  .topbar-item { font-size: 0.72rem; }
  .topbar-icon-wrap { width: 24px; height: 24px; font-size: 0.62rem; }
  .topbar-socials { margin-left: 0; }
}

/* === NAVBAR — mobile menu fix === */
@media (max-width: 991px) {
  .navbar-new .container { padding: 10px 15px; }
  .navbar-new .navbar-brand img { height: 52px; }
  .navbar-new .navbar-collapse {
    background: #fff;
    border-top: 1px solid rgba(26,111,163,0.1);
    padding: 10px 0 16px;
    width: 100%;
  }
  .navbar-new .nav-link {
    padding: 9px 16px !important;
    font-size: 0.82rem !important;
    border-bottom: 1px solid rgba(26,111,163,0.06);
  }
  .navbar-new .nav-link:last-of-type { border-bottom: none; }
  .navbar-order-wrap { margin: 10px 16px 0; }
  .btn-order-now { width: 100%; justify-content: center; padding: 12px 20px; }
}

/* === HERO SLIDER — mobile === */
@media (max-width: 767px) {
  #heroSlider .carousel-item { height: 70vh; min-height: 420px; }
  .hero-slide-cover { height: 70vh; min-height: 420px; }
  .hero-title { font-size: 1.9rem !important; line-height: 1.25 !important; }
  .hero-sub { font-size: 0.9rem !important; }
  .hero-content { padding: 0 4px; }
  .hero-tag { font-size: 0.65rem; }
  .btn-primary-sd, .btn-outline-sd { font-size: 0.78rem; padding: 10px 18px; }
  .d-flex.gap-3 { gap: 10px !important; }
}
@media (max-width: 480px) {
  #heroSlider .carousel-item { height: 60vh; min-height: 360px; }
  .hero-slide-cover { height: 60vh; min-height: 360px; }
  .hero-title { font-size: 1.6rem !important; }
}

/* === STATS BAR === */
@media (max-width: 767px) {
  .stats-bar .row { flex-wrap: wrap; }
  .stat-item { padding: 18px 10px; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 2rem; }
}

/* === BENEFITS BANNER === */
@media (max-width: 575px) {
  .benefits-banner-img { min-height: 140px; object-fit: cover; }
}

/* === WHY CHOOSE US — cards === */
@media (max-width: 767px) {
  .why-card { padding: 28px 18px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }
}

/* === PRODUCTS PREVIEW === */
@media (max-width: 575px) {
  .product-card { margin-bottom: 20px; }
  .product-card img { height: 180px; }
}

/* === ABOUT HOME SECTION === */
@media (max-width: 991px) {
  .about-img-grid { height: 280px; margin-bottom: 30px; }
}
@media (max-width: 575px) {
  .about-img-grid { height: 220px; }
}

/* === PAGE HERO (inner pages) === */
@media (max-width: 575px) {
  .page-hero { height: 240px; }
  .page-hero-title { font-size: 1.8rem !important; }
  .page-hero-sub { font-size: 0.85rem; }
}

/* === GALLERY === */
@media (max-width: 767px) {
  .gallery-masonry { column-count: 2 !important; column-gap: 10px; }
}
@media (max-width: 480px) {
  .gallery-masonry { column-count: 1 !important; }
}

/* === CONTACT FORM === */
@media (max-width: 767px) {
  .contact-form-wrap { padding: 24px 16px; border-radius: 12px; }
}

/* === TESTIMONIALS === */
@media (max-width: 575px) {
  .testimonial-card { padding: 28px 18px; }
  .testimonial-text { font-size: 1rem; }
}

/* === CTA STRIP === */
@media (max-width: 575px) {
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 1.6rem; }
}

/* === FOOTER — fully responsive === */
@media (max-width: 991px) {
  .site-footer { padding: 60px 0 0; }
  .site-footer .row.g-5 { --bs-gutter-y: 2.5rem; }
}
@media (max-width: 767px) {
  .site-footer { padding: 48px 0 0; }
  .site-footer .col-lg-4,
  .site-footer .col-lg-2,
  .site-footer .col-lg-3 { width: 100% !important; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto; }
  .social-links { justify-content: center; }
  .footer-heading { margin-top: 4px; }
  .footer-divider { margin: 36px 0 0; }
  .footer-bottom { padding: 16px 0; }
  .footer-copy, .footer-cert {
    font-size: 0.78rem;
    text-align: center !important;
    padding: 4px 0;
  }
  .footer-bottom .col-md-6 { width: 100%; }
}
@media (max-width: 480px) {
  .site-footer .container { padding-left: 16px; padding-right: 16px; }
  .footer-contact li { font-size: 0.82rem; }
  .footer-links a { font-size: 0.82rem; }
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 0.9rem; }
}

/* === PROCESS / CERT / VALUES SECTIONS === */
@media (max-width: 767px) {
  .process-step { padding: 24px 14px; }
  .cert-card { padding: 24px 16px; }
  .value-card { padding: 24px 16px; }
}

/* === MISSION SECTION — cards stack on mobile === */
@media (max-width: 767px) {
  .mission-card { padding: 32px 20px; margin-bottom: 16px; }
}

/* === SECTION PADDING SCALE === */
@media (max-width: 575px) {
  .section-pad { padding: 48px 0; }
}

/* === PRODUCTS PAGE full-width fix === */
@media (max-width: 767px) {
  .products-full .row { --bs-gutter-x: 1rem; }
  .product-full-body { padding: 20px 16px; }
}

/* === TABLE RESPONSIVE fix === */
table { width: 100%; overflow-x: auto; display: block; }

/* === FIX: no horizontal scroll from any absolute/wide element === */
.hero-slide-bg,
.hero-overlay,
.stats-bar,
.cta-banner,
.mission-section,
.site-footer {
  overflow: hidden;
}


/* Footer dev credit link */
.footer-dev-link {
  color: var(--gold-l);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dev-link:hover { color: #ffffff; text-decoration: underline; }
