/* ═══════════════════════════════════════════════════════════
   AQUAVERO PURIFIED WATER SUPPLY — STYLESHEET
   Brand colours: Deep Blue #0a1f44 | Bright Blue #1565c0
   Cyan #00b4d8 | Light Cyan #90e0ef | White #ffffff
═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --deep-blue:    #0a1f44;
  --mid-blue:     #0d3270;
  --bright-blue:  #1565c0;
  --accent-blue:  #1976d2;
  --cyan:         #00b4d8;
  --cyan-light:   #48cae4;
  --cyan-pale:    #90e0ef;
  --cyan-faint:   #caf0f8;
  --white:        #ffffff;
  --off-white:    #f0f8ff;
  --text-dark:    #0d1b2e;
  --text-mid:     #2c4a6e;
  --text-light:   #5c7a99;
  --shadow-sm:    0 2px 12px rgba(0,30,80,.10);
  --shadow-md:    0 6px 28px rgba(0,30,80,.14);
  --shadow-lg:    0 16px 48px rgba(0,30,80,.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --nav-h:        74px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── Accessibility ── */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  #water-canvas { display: none; }
  .hero { background: linear-gradient(160deg, var(--deep-blue) 0%, var(--mid-blue) 50%, #0a3060 100%); }
}

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

/* ── Section shared ── */
.section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1.2;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--bright-blue));
  border-radius: 99px;
  margin-top: 14px;
}

.desktop-only { display: inline; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 15px 34px; font-size: .95rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20c45c 0%, #0f7a6e 100%);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  color: var(--white);
}

.btn-call {
  background: linear-gradient(135deg, var(--bright-blue) 0%, var(--deep-blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(21,101,192,.35);
}
.btn-call:hover {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--mid-blue) 100%);
  box-shadow: 0 8px 24px rgba(21,101,192,.45);
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--bright-blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,180,216,.30);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--accent-blue) 100%);
  box-shadow: 0 8px 24px rgba(0,180,216,.42);
  color: var(--white);
}

/* ═══ NAVIGATION ═══ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(10,31,68,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.navbar {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: 50px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  transition: opacity var(--transition), box-shadow var(--transition);
}
.logo-img:hover {
  opacity: .9;
  box-shadow: 0 2px 14px rgba(0,180,216,.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,.88);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--deep-blue) 0%, #0b2560 40%, #0d3a70 70%, #093060 100%);
}

#water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,31,68,.80) 0%,
    rgba(10,31,68,.50) 50%,
    rgba(5,20,50,.30) 100%
  );
  z-index: 1;
}

/* ── Two-column inner grid ── */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 48px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── LEFT: content ── */

.hero-logo-wrap {
  margin-bottom: 24px;
  /* White pill background so the logo reads clearly on the dark hero */
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(0,0,0,.30), 0 0 0 1px rgba(0,180,216,.25);
}

.hero-logo {
  height: 110px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 28px rgba(0,180,216,.45));
}

/* Business name block — shown separately for prominence */
.hero-name-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,180,216,.30);
}

.hero-brand-name {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: .14em;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

.hero-brand-sub {
  font-family: var(--font-head);
  font-size: clamp(.72rem, 1.3vw, .9rem);
  font-weight: 600;
  color: var(--cyan-pale);
  letter-spacing: .18em;
  margin-top: 5px;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: .06em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 0 28px rgba(0,180,216,.4), 0 2px 12px rgba(0,0,0,.5);
}

.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 400;
  max-width: 500px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-pale);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 32px;
  opacity: .85;
}

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

/* ── RIGHT: bottle visual ── */
.hero-bottle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

/* Animated pulsing water rings around the bottle */
.hero-bottle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,180,216,.35);
  animation: bottleRing 3.2s ease-out infinite;
  pointer-events: none;
}
.hero-ring-outer {
  width: 380px;
  height: 380px;
  animation-delay: 0s;
  border-color: rgba(0,180,216,.18);
}
.hero-ring-mid {
  width: 300px;
  height: 300px;
  animation-delay: .6s;
  border-color: rgba(0,180,216,.28);
}
.hero-ring-inner {
  width: 220px;
  height: 220px;
  animation-delay: 1.2s;
  border-color: rgba(72,202,228,.45);
}

@keyframes bottleRing {
  0%   { transform: scale(.92); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scale(1.08); opacity: 0; }
}

/* Radial glow behind the bottle */
.hero-bottle-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.22) 0%, rgba(0,100,160,.12) 50%, transparent 75%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);    opacity: .8; }
  50%       { transform: scale(1.12); opacity: 1; }
}

/* Bottle / product image */
.hero-bottle-img {
  position: relative;
  z-index: 2;
  max-height: 380px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(0,180,216,.15),
    0 12px 48px rgba(0,0,0,.45),
    0 0 60px rgba(0,180,216,.18);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.5));
  animation: bottleFloat 5s ease-in-out infinite;
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  80%  { top: 18px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

/* ── Hero responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: calc(var(--nav-h) + 36px) 28px 64px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    order: 1;
  }
  .hero-bottle-wrap {
    order: 2;
    min-height: 280px;
  }
  .hero-name-block { align-items: center; }
  .hero-sub        { max-width: 100%; }
  .hero-ring-outer { width: 280px; height: 280px; }
  .hero-ring-mid   { width: 220px; height: 220px; }
  .hero-ring-inner { width: 160px; height: 160px; }
  .hero-bottle-img { max-height: 260px; }
  .hero-bottle-glow { width: 220px; height: 220px; }
}

@media (max-width: 480px) {
  .hero-inner      { padding: calc(var(--nav-h) + 24px) 20px 56px; gap: 24px; }
  .hero-logo-wrap  { padding: 10px 18px; }
  .hero-logo       { height: 70px; }
  .hero-brand-name { font-size: 1.7rem; }
  .hero-heading    { font-size: 1.4rem; }
  .hero-buttons    { flex-direction: column; width: 100%; }
  .hero-buttons .btn { justify-content: center; }
  .hero-bottle-wrap  { min-height: 220px; }
  .hero-bottle-img   { max-height: 200px; }
  .hero-ring-outer   { width: 220px; height: 220px; }
  .hero-ring-mid     { width: 170px; height: 170px; }
  .hero-ring-inner   { width: 120px; height: 120px; }
  .hero-bottle-glow  { width: 160px; height: 160px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bottle-ring,
  .hero-bottle-glow,
  .hero-bottle-img { animation: none; }
}

/* ═══ REVEAL ANIMATIONS ═══ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .7s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .30s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .60s; }

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .10s; }
.reveal.delay-2 { transition-delay: .20s; }
.reveal.delay-3 { transition-delay: .30s; }
.reveal.delay-4 { transition-delay: .40s; }

/* ═══ ABOUT ═══ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--cyan-faint);
  color: var(--mid-blue);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: .03em;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card-visual {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 50%, #0a3a7a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0,180,216,.20);
  overflow: hidden;
}
.about-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,180,216,.15) 0%, transparent 60%);
}

/* Water drop animation inside circle */
.water-drop-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.drop {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,180,216,.12);
  animation: rippleGrow 3s ease-out infinite;
}
.d1 { width: 60px; height: 60px; top: 20%; left: 15%; animation-delay: 0s; }
.d2 { width: 40px; height: 40px; top: 55%; right: 18%; animation-delay: 1s; }
.d3 { width: 30px; height: 30px; top: 30%; right: 25%; animation-delay: 2s; }

@keyframes rippleGrow {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.about-slogan {
  position: relative;
  z-index: 1;
  text-align: center;
}
.slogan-line1 {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .12em;
}
.slogan-line2 {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--cyan-pale);
  letter-spacing: .08em;
  margin-top: 4px;
}

/* ═══ WHO WE SUPPLY ═══ */
.supply-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.supply-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,180,216,.10);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--bright-blue));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,180,216,.25);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--cyan-faint), rgba(0,180,216,.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--bright-blue);
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Last card spans to fill */
.cards-grid .card:last-child:nth-child(3n+2) {
  grid-column: span 1;
}
.cards-grid .card:nth-child(4),
.cards-grid .card:nth-child(5) {
  grid-column: span 1;
}

/* ═══ SERVICES ═══ */
.services-section {
  background: var(--white);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: grid;
  grid-template-columns: 48px 52px 1fr;
  align-items: center;
  gap: 20px 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid rgba(0,30,80,.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}

.service-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan-faint);
  line-height: 1;
  min-width: 48px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.service-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 4px;
}
.service-body p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══ PERSONALISED WATER ═══ */
.personalised-section {
  background: linear-gradient(160deg, var(--deep-blue) 0%, var(--mid-blue) 60%, #0a3a7a 100%);
  position: relative;
  overflow: hidden;
}
.personalised-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.12) 0%, transparent 65%);
  pointer-events: none;
}
.personalised-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,.08) 0%, transparent 65%);
  pointer-events: none;
}

.personalised-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.personalised-text .section-label { color: var(--cyan-pale); }
.personalised-text .section-title { color: var(--white); }
.personalised-text .section-title::after {
  background: linear-gradient(90deg, var(--cyan), rgba(255,255,255,.5));
}

.personalised-tagline {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cyan-pale);
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.personalised-text p {
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.personalised-note {
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: .88rem !important;
  margin-bottom: 28px !important;
}
.personalised-note strong { color: var(--cyan-pale); }

/* Bottle Mockup */
.personalised-visual {
  display: flex;
  justify-content: center;
}

.bottle-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bottle-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,.4));
}

.bottle-cap {
  width: 40px;
  height: 22px;
  background: linear-gradient(135deg, #1a237e, #283593);
  border-radius: 8px 8px 0 0;
}

.bottle-body {
  width: 110px;
  height: 280px;
  background: linear-gradient(180deg,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.10) 30%,
    rgba(0,180,216,.25) 60%,
    rgba(0,100,180,.35) 100%
  );
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px 12px 18px 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.bottle-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(0,180,216,.35), rgba(0,80,160,.55));
  border-radius: 0 0 17px 17px;
  animation: waterLevel 3s ease-in-out infinite;
}
@keyframes waterLevel {
  0%, 100% { height: 55%; }
  50%       { height: 58%; }
}

.bottle-label {
  position: absolute;
  top: 28px;
  left: 8px; right: 8px;
  background: rgba(255,255,255,.92);
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
  z-index: 1;
}
.bottle-brand {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  color: var(--deep-blue);
  letter-spacing: .12em;
}
.bottle-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  margin: 5px 0;
}
.bottle-custom {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: var(--bright-blue);
  letter-spacing: .06em;
}
.bottle-sub {
  font-family: var(--font-head);
  font-size: .6rem;
  color: var(--text-light);
  letter-spacing: .04em;
  margin-top: 2px;
}
.bottle-tagline {
  font-size: .5rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: .06em;
  margin-top: 6px;
  font-family: var(--font-head);
}

.bottle-caption {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  font-style: italic;
  max-width: 180px;
  line-height: 1.5;
}

/* ═══ GALLERY ═══ */
.gallery-section {
  background: var(--off-white);
}

.gallery-intro {
  color: var(--text-light);
  margin-top: -24px;
  margin-bottom: 40px;
  font-size: .95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--deep-blue);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  min-height: 200px;
}
.gallery-featured img { min-height: 380px; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,100,180,.55), rgba(0,180,216,.40));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  padding: 8px 20px;
  border-radius: 50px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,15,35,.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2.2rem;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  background: rgba(255,255,255,.10);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ═══ DELIVERY & PRICING ═══ */
.pricing-section {
  background: var(--white);
}

.pricing-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.pricing-inner .section-title::after { margin: 14px auto 0; }

/* Pricing poster image */
.pricing-image-wrap {
  margin: 0 auto 36px;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,180,216,.15);
}
.pricing-image {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .pricing-image-wrap { border-radius: var(--radius-md); }
}
@media (max-width: 480px) {
  .pricing-image-wrap {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
  }
}

.pricing-info {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.pricing-cta-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 28px;
}

/* ═══ WHY CHOOSE ═══ */
.why-section {
  background: var(--off-white);
}

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

.why-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,180,216,.10);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue), var(--bright-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.why-item h3 {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 10px;
}
.why-item p {
  font-size: .87rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--bright-blue) 60%, var(--cyan) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══ CONTACT ═══ */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--cyan-faint), rgba(0,180,216,.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--bright-blue);
}

.contact-item h3 {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-item p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 4px;
}
.contact-item a { color: var(--bright-blue); transition: color var(--transition); }
.contact-item a:hover { color: var(--cyan); }

.contact-link {
  color: var(--bright-blue);
  font-size: .92rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--cyan); }

.location-detail {
  font-size: .84rem !important;
  color: var(--text-light) !important;
}

.contact-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Enquiry Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,180,216,.12);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group label span { color: var(--cyan); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,30,80,.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  font-size: .92rem;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231565c0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}

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

.form-note {
  text-align: center;
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 12px;
  min-height: 24px;
}
.form-note.success { color: #2e7d32; font-weight: 600; }
.form-note.error   { color: #c62828; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--deep-blue);
}

.footer-top { padding: 72px 0 48px; }

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.footer-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 14px;
  background: rgba(255,255,255,.94);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  display: block;
}

.footer-slogan {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-tagline {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.10);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover {
  background: rgba(0,180,216,.18);
  color: var(--white);
  border-color: rgba(0,180,216,.35);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-hours-heading {
  margin-top: 24px !important;
}

.footer-nav ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cyan); }

.footer-contact ul li,
.footer-contact a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  text-align: center;
  font-family: var(--font-head);
  letter-spacing: .03em;
}

/* ═══ RESPONSIVE ═══ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .about-grid          { grid-template-columns: 1fr; gap: 48px; }
  .about-visual        { display: none; }
  .cards-grid          { grid-template-columns: repeat(2, 1fr); }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner    { grid-template-columns: 1fr 1fr; }
  .footer-brand        { grid-column: span 2; }
  .personalised-inner  { gap: 48px; }
  .gallery-grid        { grid-template-columns: repeat(3, 1fr); }
  .gallery-featured    { grid-column: span 3; grid-row: span 1; }
  .gallery-featured img { min-height: 260px; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section       { padding: 64px 0; }
  .desktop-only  { display: none; }

  /* Nav */
  .nav-cta         { display: none; }
  .hamburger       { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,31,68,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 28px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    padding: 13px 16px;
    font-size: .95rem;
    border-radius: var(--radius-sm);
  }

  /* Hero */
  .hero-logo    { height: 90px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* About */
  .about-grid   { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-badges { gap: 8px; }

  /* Cards */
  .cards-grid   { grid-template-columns: 1fr; }

  /* Services */
  .service-item {
    grid-template-columns: 36px 44px 1fr;
    gap: 14px 16px;
    padding: 20px;
  }
  .service-num { font-size: 1.2rem; }

  /* Personalised */
  .personalised-inner { grid-template-columns: 1fr; gap: 40px; }
  .personalised-visual { order: -1; }
  .bottle-shape { transform: scale(.85); transform-origin: top center; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-featured img { min-height: 200px; }
  .gallery-item img { min-height: 140px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-item { padding: 24px 16px; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Contact */
  .contact-grid         { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap    { padding: 28px 20px; }
  .contact-btn-row      { flex-direction: column; }
  .contact-btn-row .btn { text-align: center; justify-content: center; }

  /* Lightbox */
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }

  /* Footer */
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 1; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .section-title { font-size: 1.55rem; }
  .hero-heading  { font-size: 1.9rem; }
  .hero-logo     { height: 72px; }
  .why-grid      { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-featured { grid-column: span 1; }
  .gallery-item img { min-height: 180px; }
}

/* ═══ LOGO TEXT FALLBACK (shown if logo image missing) ═══ */
.logo-text-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.ltf-brand {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--white);
}
.ltf-sub {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--cyan-pale);
  font-size: .62em;
}
.nav-logo-text .ltf-brand  { font-size: 1.1rem; }
.hero-logo-text .ltf-brand { font-size: 2.2rem; color: var(--white); }
.hero-logo-text .ltf-sub   { font-size: .8rem; }
.footer-logo-text .ltf-brand { font-size: 1.3rem; }

/* ═══ GALLERY PLACEHOLDER (shown if product image missing) ═══ */
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 24px;
  min-height: 200px;
  height: 100%;
  width: 100%;
}
.gallery-placeholder svg  { fill: rgba(0,180,216,.4); }
.gallery-placeholder span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
}
.gallery-placeholder small {
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}