/* ============================================================
   MUSAFIR DRINKING WATER — Global Design System
   ============================================================ */

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

/* ── Custom Properties ── */
:root {
  --clr-white: #ffffff;
  --clr-light: #E0F2FE;
  --clr-light2: #BAE6FD;
  --clr-mid: #38BDF8;
  --clr-deep: #0C4A6E;
  --clr-deep2: #075985;
  --clr-green: #4ADE80;
  --clr-green2: #166534;
  --clr-text: #0f172a;
  --clr-text-muted: #64748b;
  --clr-bg: #f0f9ff;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(12, 74, 110, .08);
  --shadow-md: 0 8px 32px rgba(12, 74, 110, .14);
  --shadow-lg: 0 20px 60px rgba(12, 74, 110, .2);
  --shadow-glow: 0 0 40px rgba(56, 189, 248, .25);

  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--clr-white);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.6;
  scroll-padding-top: 120px;
}

@media (max-width: 640px) {
  body {
    scroll-padding-top: 160px;
  }
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: var(--font-body);
  outline: none;
}

.btn {
  font-family: var(--font-secondary);
}

.badge {
  font-family: var(--font-secondary);
}

.nav-links a {
  font-family: var(--font-secondary);
}

/* ── Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-deep);
  line-height: 1.2;
}

.section-sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  margin-top: .5rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-mid), var(--clr-green));
  border-radius: var(--radius-full);
  margin: 1rem 0;
}

.divider.center {
  margin: 1rem auto;
}

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-blue {
  background: var(--clr-light);
  color: var(--clr-deep);
}

/* ── Global Section Styles ── */
section {
  padding: 80px 24px;
}

.section-contact {
  background: #fff;
}

/* ── Glassmorphism ── */
.glass {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-md);
}

.glass-dark {
  background: rgba(12, 74, 110, .5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .15);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-deep2), var(--clr-mid));
  color: #fff;
  box-shadow: 0 8px 32px rgba(56, 189, 248, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(56, 189, 248, .5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-deep);
  border: 2px solid var(--clr-deep2);
}

.btn-outline:hover {
  background: var(--clr-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--clr-deep);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── Animations ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatSlow {

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

  50% {
    transform: translateY(-12px);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-drop {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes wave {
  0% {
    d: path("M0,60 C300,100 600,20 900,60 L900,120 L0,120 Z");
  }

  50% {
    d: path("M0,40 C300,80 600,0 900,40 L900,120 L0,120 Z");
  }

  100% {
    d: path("M0,60 C300,100 600,20 900,60 L900,120 L0,120 Z");
  }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float 5s ease-in-out 1.2s infinite;
}

.animate-pulse-drop {
  animation: pulse-drop 2.5s ease-in-out infinite;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

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


/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
/* ── Top Gradient Blur ── */
.top-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 900;
  backdrop-filter: blur(12px) brightness(1.02);
  -webkit-backdrop-filter: blur(12px) brightness(1.02);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 50px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, height 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  background: var(--clr-deep);
  /* Match footer background */
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav.scrolled {
  background: var(--clr-deep);
  height: 60px;
  top: 40px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.nav-logo-text {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .01em;
}

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

.nav-links a {
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  opacity: 1;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #38bdf8;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta .btn-primary {
  background: #fff;
  color: #111827;
  padding: 8px 20px;
  font-size: 0.8rem;
  border-radius: 10px;
}

.nav-cta .btn-primary:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}

.nav-hamburger span:nth-child(3) {
  width: 14px;
}

.nav-hamburger:hover span:nth-child(3) {
  width: 22px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-hamburger.active span:nth-child(3) {
  width: 22px;
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu — minimal slide-down panel below nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--banner-height, 44px) + 90px);
  left: 20px;
  right: 20px;
  background: var(--clr-deep);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
  align-items: stretch;
}

.nav-mobile.open {
  display: flex;
  animation: slideDown .25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  color: #fff;
  opacity: 0.8;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  opacity: 1;
  color: #38bdf8;
}

.nav-mobile a.active {
  color: #38bdf8;
  opacity: 1;
  background: rgba(56, 189, 248, 0.08);
  border-radius: 12px;
  padding-left: 12px;
}

.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: .95rem;
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 40%, #bae6fd 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .35;
}

.hero-bg-blob.b1 {
  width: 600px;
  height: 600px;
  background: var(--clr-mid);
  top: -200px;
  right: -100px;
}

.hero-bg-blob.b2 {
  width: 400px;
  height: 400px;
  background: var(--clr-green);
  bottom: -100px;
  left: -80px;
  opacity: .2;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-content .badge {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-deep);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--clr-mid);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--clr-deep2);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-bangla {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  font-style: italic;
}

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

.hero-drop {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-drop svg {
  width: 32px;
  height: 32px;
  fill: var(--clr-mid);
  opacity: .6;
}

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

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

.hero-bottle-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(56, 189, 248, .3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bottle {
  width: 380px;
  max-width: 100%;
  z-index: 1;
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(12, 74, 110, .25));
}

.hero-stat-card {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: .8rem;
  font-weight: 700;
  color: var(--clr-deep);
  white-space: nowrap;
}

.hero-stat-card.s1 {
  top: 20px;
  left: -80px;
}

.hero-stat-card.s2 {
  bottom: 60px;
  right: -60px;
}

.hero-stat-card .num {
  font-size: 1.4rem;
  font-family: var(--font-primary);
  color: var(--clr-deep2);
}

/* ── Subpage Hero ── */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0C4A6E 0%, #075985 60%, #0ea5e9 100%);
}

.page-hero .hero-bg-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(56, 189, 248, .15);
  border-radius: 50%;
  filter: blur(80px);
}

.page-hero .hero-bg-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: rgba(74, 222, 128, .1);
  border-radius: 50%;
  filter: blur(60px);
}

.page-hero .container {
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: #7DD3FC;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ── Responsive Row Grid Helper ── */
.row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

  .page-hero {
    min-height: 45vh;
  }
}

/* ══════════════════════════════════════════════
   WAVE DIVIDER
══════════════════════════════════════════════ */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: 140px 24px 100px;
  background: var(--clr-white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(56, 189, 248, .15);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-mid);
}

.about-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clr-light), var(--clr-light2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.about-card:hover .about-icon {
  background: linear-gradient(135deg, var(--clr-deep2), var(--clr-mid));
}

.about-icon svg {
  width: 36px;
  height: 36px;
  color: var(--clr-deep);
  transition: var(--transition);
}

.about-card:hover .about-icon svg {
  color: #fff;
}

.about-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-deep);
  margin-bottom: 12px;
}

.about-card p {
  color: var(--clr-text-muted);
  font-size: .92rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--clr-light) 0%, var(--clr-white) 100%);
  position: relative;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
  filter: drop-shadow(0 20px 40px rgba(12, 74, 110, .3));
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08) rotate(3deg);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--clr-deep2), var(--clr-mid));
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-deep);
  margin-bottom: 4px;
}

.product-info .product-sub {
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.product-info .product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-deep2);
  font-family: var(--font-primary);
  margin-bottom: 16px;
}

.product-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-deep2);
  background: transparent;
  color: var(--clr-deep2);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: .9rem;
}

.product-btn:hover {
  background: var(--clr-deep);
  border-color: var(--clr-deep);
  color: #fff;
}

/* ── Product Features Banner ── */
.product-features-banner {
  background: linear-gradient(135deg, var(--clr-deep), var(--clr-deep2));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why {
  padding: 100px 24px;
  background: var(--clr-white);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, .15);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(160deg, var(--clr-light) 0%, var(--clr-white) 100%);
  border-color: var(--clr-mid);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--clr-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--clr-deep2), var(--clr-mid));
}

.why-icon svg {
  width: 30px;
  height: 30px;
  color: var(--clr-deep2);
  transition: var(--transition);
}

.why-card:hover .why-icon svg {
  color: #fff;
}

.why-card h4 {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--clr-deep);
  margin-bottom: 8px;
}

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

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-white) 100%);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  columns: 3;
  gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--clr-deep) 0%, var(--clr-deep2) 50%, #164e63 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(56, 189, 248, .12);
  border-radius: 50%;
  filter: blur(60px);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-info p {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-mid);
}

.contact-item-text .label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-mid);
  margin-bottom: 2px;
}

.contact-item-text .value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-form {
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--clr-deep);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(56, 189, 248, .25);
  background: rgba(255, 255, 255, .9);
  font-size: .92rem;
  color: var(--clr-text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-mid);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .15);
}

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

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

/* ── Contact Map ── */
.map-divider {
  height: 2px;
  background: var(--clr-mid);
  opacity: 0.2;
}

.contact-map {
  margin-top: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(56, 189, 248, .1);
  height: 500px;
  width: 100%;
  background: var(--clr-light);
  transition: var(--transition);
}

.contact-map:hover {
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact-map {
    height: 350px;
    margin-top: 60px;
    border-radius: var(--radius-md);
  }
}

/* ══════════════════════════════════════════════
   FOOTER V2 (REDESIGNED)
══════════════════════════════════════════════ */
.footer-v2 {
  background: var(--clr-deep);
  color: #fff;
  padding: 80px 24px 24px;
  position: relative;
  overflow: hidden;
}

.footer-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #38BDF8, #0ea5e9, #0284c7);
}

.footer-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-v2-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-v2-brand p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  line-height: 1.6;
  margin: 20px 0 24px;
  max-width: 320px;
}

.footer-v2-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-v2-logo .nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-v2-logo .footer-logo-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-v2-social {
  display: flex;
  gap: 12px;
}

.footer-v2-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-v2-social a:hover {
  background: #38BDF8;
  border-color: #38BDF8;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(56, 189, 248, 0.4);
}

.footer-v2-social svg {
  width: 18px;
  height: 18px;
}

.footer-v2-col h5 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
}

.footer-v2-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-v2-col ul li a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .95rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
}

.footer-v2-col ul li a::before {
  content: '→';
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #38BDF8;
  font-weight: 800;
}

.footer-v2-col ul li a:hover {
  color: #38BDF8;
}

.footer-v2-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-v2-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  line-height: 1.5;
}

.footer-v2-contact-list li svg {
  width: 20px;
  height: 20px;
  color: #38BDF8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-v2-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════════ */
.admin-body {
  background: #f0f9ff;
  font-family: var(--font-body);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-deep) 0%, var(--clr-deep2) 100%);
}

.login-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.login-card h2 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-deep);
  margin-bottom: 8px;
}

.login-card p {
  color: var(--clr-text-muted);
  font-size: .9rem;
  margin-bottom: 32px;
}

.login-error {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
}

/* Admin Layout */
.admin-wrap {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 280px;
  background: #0f172a; /* Deep dark blue */
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
  color: #fff;
}

.admin-sidebar-logo {
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.admin-sidebar-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.admin-sidebar-logo-sub {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}

.admin-nav {
  flex: 1;
  padding: 0 16px;
  overflow-y: auto;
}

.admin-nav-group-label {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .3);
  padding: 24px 16px 12px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 4px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.admin-nav-item.active {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

.admin-nav-item svg {
  width: 18px;
  height: 18px;
  opacity: .7;
}

.admin-nav-item.active svg {
  opacity: 1;
}

.admin-logout {
  padding: 16px 24px 32px;
}

.admin-logout button {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.admin-logout button:hover {
  background: rgba(239, 68, 68, .1);
  border-color: rgba(239, 68, 68, .2);
  color: #f87171;
}

.admin-main {
  flex: 1;
  margin-left: 280px;
  min-height: 100vh;
  background: #f8fafc;
}

.admin-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 90;
}

.admin-header h1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.admin-header p {
  font-size: .8rem;
  color: #64748b;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.view-site-btn {
  padding: 10px 20px;
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-site-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
}

.admin-content {
  padding: 40px;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* Dashboard Stats Table */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.stat-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f0f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  margin-bottom: 20px;
}

.stat-card .icon-box svg {
  width: 24px;
  height: 24px;
}

.stat-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .lbl {
  font-size: .85rem;
  font-weight: 600;
  color: #64748b;
}

/* Cards & Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.admin-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.admin-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.admin-field {
  margin-bottom: 20px;
}

.admin-field label {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: .92rem;
  color: #1e293b;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.admin-field input:focus,
.admin-field textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.admin-save-btn {
  padding: 10px 24px;
  background: #0ea5e9;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: .85rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-add-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  font-size: .85rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.admin-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.3);
}

.admin-add-btn svg {
  width: 16px;
  height: 16px;
}

.admin-save-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.admin-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}



.quick-actions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #f0f9ff;
  border-radius: 12px;
  color: #0369a1;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quick-action-btn:hover {
  background: #e0f2fe;
  transform: translateX(4px);
}

.how-it-works-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-step {
  display: flex;
  gap: 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0369a1;
  font-size: .8rem;
  flex-shrink: 0;
}

.step-content p {
  font-size: .88rem;
  color: #64748b;
  line-height: 1.6;
}


/* Product items in admin */
.product-admin-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, .12);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: #f8faff;
}

.product-admin-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: white;
}

.product-admin-item .item-info {
  flex: 1;
}

.product-admin-item .item-name {
  font-weight: 700;
  color: var(--clr-deep);
  font-size: .9rem;
}

.product-admin-item .item-meta {
  font-size: .78rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

.product-admin-item .item-actions {
  display: flex;
  gap: 8px;
}

.btn-edit {
  padding: 6px 14px;
  background: var(--clr-light);
  color: var(--clr-deep2);
  border: none;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-edit:hover {
  background: var(--clr-mid);
  color: #fff;
}

.btn-delete {
  padding: 6px 14px;
  background: #fee2e2;
  color: #b91c1c;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-delete:hover {
  background: #ef4444;
  color: #fff;
}

/* Gallery admin thumbnails */
.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

.gallery-thumb .rm-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(239, 68, 68, .9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-thumb:hover .rm-btn {
  opacity: 1;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--clr-deep);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .88rem;
  z-index: 99999;
  opacity: 0;
  transform: translateY(20px);
  transition: all .35s ease;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: #166534;
}

.toast.error {
  background: #b91c1c;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn .2s ease;
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h2 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-deep);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--clr-text-muted);
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-admin-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-features-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-visual-inner {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto;
  }

  .hero-bottle {
    width: 280px;
  }

  .hero-bottle-glow {
    inset: -20px;
  }

  /* Place stat cards flanking the bottle on mobile */
  .hero-stat-row {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-stat-card {
    display: flex;
    position: absolute;
    margin: 0;
    padding: 10px 6px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
    border-radius: 12px;
    white-space: normal;
    text-align: center;
    width: 90px;
    height: auto;
    min-height: 80px;
    box-sizing: border-box;
    pointer-events: auto;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(12, 74, 110, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .hero-visual {
    flex-direction: column;
    gap: 0;
  }

  .hero-stat-card.s1 {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
  }

  .hero-stat-card.s2 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
  }

  .hero-stat-card .num {
    font-size: 1.25rem;
    font-family: var(--font-primary);
    color: var(--clr-deep2);
    margin-bottom: 2px;
    line-height: 1;
  }

  .hero-stat-card span {
    font-size: .65rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: normal;
    line-height: 1.2;
    word-break: break-word;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .admin-sidebar {
    width: 220px;
  }

  .admin-main {
    margin-left: 220px;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Footer V2 Mobile */
  .footer-v2-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-v2-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav {
    left: 12px;
    right: 12px;
    top: 44px;
    height: 60px;
    border-radius: 14px;
    padding: 0 16px;
  }

  .nav-mobile {
    left: 12px;
    right: 12px;
    top: 110px;
    border-radius: 14px;
  }

  .nav-logo-text {
    font-size: 1.1rem;
  }

  .nav-logo-icon {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
}

@media (max-width: 640px) {

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex !important;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-grid {
    columns: 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  /* Admin mobile */
  .admin-sidebar {
    transform: translateX(-100%);
    transition: var(--transition);
    position: fixed;
    z-index: 200;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 150;
  }

  .admin-mobile-overlay.open {
    display: block;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-header {
    padding: 0 16px;
  }

  .admin-content {
    padding: 16px;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .admin-grid-2,
  .admin-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .admin-card {
    padding: 20px;
    border-radius: 16px;
  }

  .admin-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .admin-card-header h3 {
    font-size: 1.05rem;
  }

  .admin-save-btn, 
  .admin-add-btn {
    width: 100%;
    justify-content: center;
  }

  .product-admin-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 12px;
  }

  .product-admin-item img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
  }

  .product-admin-item .item-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn-edit, .btn-delete {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .gallery-admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About page stats */
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA Banner Flex */
  section[style*="background:linear-gradient(135deg,var(--clr-deep),var(--clr-deep2))"] .container {
    flex-direction: column;
    text-align: center;
  }

  .admin-mobile-menu-btn {
    display: flex !important;
  }

  /* Contact */
  .contact {
    padding: 160px 16px 60px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  /* Hero */
  .hero {
    padding-top: 160px;
  }

  .hero-inner {
    padding: 20px 16px 60px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .btn {
    padding: 12px 24px;
    font-size: .9rem;
  }

  /* Subpages */
  .page-hero {
    padding-top: 160px;
    min-height: auto;
  }

  .page-hero .container {
    padding-bottom: 48px;
  }

  /* Gallery page */
  .gallery {
    padding: 160px 16px 60px;
  }

  /* Why page */
  .why {
    padding: 160px 16px 60px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Products */
  .products {
    padding: 160px 16px 60px;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-features-banner {
    grid-template-columns: 1fr 1fr;
    padding: 28px 20px;
    gap: 20px;
  }

  /* About */
  .about {
    padding: 160px 16px 60px;
  }

  .footer {
    padding: 48px 16px 24px;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  /* Footer V2 Mobile Small */
  .footer-v2 {
    padding: 64px 16px 24px;
  }

  .footer-v2-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-v2-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-v2-logo {
    justify-content: center;
  }

  .footer-v2-brand p {
    margin: 20px auto 24px;
    text-align: center;
  }

  .footer-v2-social {
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }

  .footer-v2-col {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .footer-v2-col h5 {
    margin-bottom: 20px;
  }

  .footer-v2-col ul {
    align-items: center;
  }

  .footer-v2-col ul li a::before {
    display: none;
  }

  .footer-v2-contact-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-v2-contact-list li svg {
    margin-bottom: 4px;
  }

  /* Modal */
  .modal {
    padding: 24px 16px;
  }
}

@media (max-width: 400px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.9rem;
  }
}

/* ── Header Notification Banner (High-Contrast Pill) ── */
.header-banner {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 99px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  text-decoration: none;
  /* Remove link underline */
  cursor: pointer;
}

.header-banner:hover {
  transform: translateX(-50%) scale(1.04);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.header-banner:active {
  transform: translateX(-50%) scale(0.98);
}


.header-banner .dot {
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
  flex-shrink: 0;
}

.header-banner .text {
  color: #111827;
  font-size: 0.62rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
}

@media (max-width: 640px) {
  .header-banner {
    top: 8px;
    padding: 4px 10px;
    gap: 6px;
    max-width: 90vw;
  }

  .header-banner .dot {
    width: 6px;
    height: 6px;
  }

  .header-banner .text {
    font-size: 0.62rem;
  }

  /* Contact Page Mobile Centering */
  /* Refined Contact Redesign (Horizontal Layout) */
  .section-contact { padding: 140px 16px 60px; }
  .section-contact h2 { text-align: left; font-size: 1.5rem !important; margin-bottom: 32px !important; }

  .ref-contact-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .ref-contact-item { 
    display: flex; 
    flex-direction: row !important; /* Force horizontal */
    align-items: center; 
    gap: 16px; 
    text-align: left !important;
  }
  .ref-icon-box {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ref-icon-box.bg-blue { background: #E0F2FE; color: #0369A1; }
  .ref-icon-box.bg-green { background: #DCF8C6; color: #15803d; }
  .ref-icon-box svg { width: 24px; height: 24px; }

  .ref-contact-text { 
    display: flex; 
    flex-direction: column; 
    gap: 2px; 
    text-align: left !important;
  }
  .ref-label { font-size: 0.75rem; font-weight: 800; color: #38BDF8; letter-spacing: 0.05em; margin-bottom: 0px; line-height: 1; }
  .ref-value { font-size: 1.15rem; font-weight: 700; color: #0C4A6E; line-height: 1.2; word-break: break-all; }
  
  .ref-action-btn {
    margin-left: auto;
    background: #F0F9FF;
    border: none;
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #0369A1;
    cursor: pointer;
    transition: var(--transition);
  }
  .ref-action-btn:hover { background: #E0F2FE; }
  .ref-action-btn svg { width: 14px; height: 14px; }

  .ref-hours-card {
    background: #E0F2FE;
    border-radius: 20px;
    padding: 32px 24px;
    margin-top: 24px;
    text-align: left;
  }
  .ref-hours-card h3 { 
    font-family: var(--font-display); 
    font-size: 1.1rem; 
    font-weight: 800; 
    color: #0C4A6E; 
    margin-bottom: 24px !important; 
    text-align: left !important;
  }
  .ref-hours-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    gap: 12px;
  }
  .ref-hours-day { color: #64748b; font-size: 0.95rem; }
  .ref-hours-time { font-weight: 700; color: #0C4A6E; font-size: 0.95rem; }
}