/* ============================================================
   VIVPURE — NEW ULTRA-LUXURY HOMEPAGE DESIGN SYSTEM
   style.css
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Official Brand Colors */
  --primary:      #06479B;
  --deep:         #062B63;
  --aqua:         #00B8D4;
  --sky:          #8DE8F2;
  --white:        #FFFFFF;
  --bg-soft:      #F5FAFC;
  --dark:         #071A2B;
  --gray:         #5A6C79;
  --gray-light:   #E4EDF2;
  --border-fine:  rgba(6, 71, 155, 0.12);
  --border-glass: rgba(255, 255, 255, 0.18);

  /* Typography */
  --font-primary:   'Manrope', sans-serif;
  --font-secondary: 'DM Sans', sans-serif;
  --font-editorial: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py:    7rem;
  --section-py-sm: 4.5rem;

  /* Transitions */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-subtle: 0 10px 40px rgba(6, 71, 155, 0.06);
  --shadow-card:   0 15px 50px rgba(7, 26, 43, 0.08);
  --shadow-glow:   0 0 60px rgba(0, 184, 212, 0.35);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--sky), var(--primary));
  z-index: 10001; width: 0%;
  transition: width 0.1s linear;
}

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

a {
  text-decoration: none; color: inherit;
  transition: color 0.3s var(--ease-editorial);
}

ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   CLASSICAL DECORATIVE ACCENTS
   ============================================================ */
.classical-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 2rem 0;
}

.classical-divider::before, .classical-divider::after {
  content: ''; height: 1px; width: 70px;
  background: linear-gradient(90deg, transparent, var(--border-fine), transparent);
}

.classical-diamond {
  width: 6px; height: 6px; background: var(--primary); transform: rotate(45deg);
}

.classical-arch-frame {
  border-radius: 180px 180px 16px 16px;
  border: 1px solid var(--border-fine);
  padding: 4rem 3rem; background: var(--white);
  box-shadow: var(--shadow-subtle);
}

/* ============================================================
   MINIMAL LUXURY LOGO PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at 50% 50%, #062B63 0%, #041220 100%);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
}

#preloader.preloader-exit {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.preloader-logo-wrap {
  display: flex; align-items: center; justify-content: center;
}

.preloader-logo {
  width: 210px; max-width: 75vw; height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(0, 184, 212, 0.7));
  animation: preloaderLogoPulse 1.4s ease-in-out infinite alternate;
}

@keyframes preloaderLogoPulse {
  0% { transform: scale(0.96); opacity: 0.85; filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(0, 184, 212, 0.5)); }
  100% { transform: scale(1.04); opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(0, 184, 212, 0.9)); }
}

.preloader-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--aqua), var(--sky));
  border-radius: 10px; transition: width 0.1s linear;
  box-shadow: 0 0 14px rgba(0, 184, 212, 0.9);
}

.preloader-counter {
  font-family: var(--font-primary); font-size: 0.82rem;
  font-weight: 700; color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem; letter-spacing: 0.12em;
}

@keyframes preloaderLogoPulse {
  0% { transform: scale(0.98); opacity: 0.85; }
  100% { transform: scale(1.03); opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 45px rgba(0, 184, 212, 0.75)); }
}

.cursor-dot, .cursor-ring {
  display: none !important;
}

body, html {
  cursor: auto !important;
}

a, button, [role="button"], input[type="submit"], input[type="button"] {
  cursor: pointer !important;
}

.pl-chip {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(141, 232, 242, 0.2);
  padding: 0.4rem 0.95rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.pl-chip:hover {
  background: rgba(0, 184, 212, 0.18);
  border-color: var(--aqua);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.vp-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s var(--ease-editorial), padding 0.4s var(--ease-editorial), box-shadow 0.4s;
}

.vp-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(7, 26, 43, 0.08);
  border-bottom: 1px solid var(--border-fine);
}

.vp-navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(4, 18, 32, 0.92) 0%, rgba(4, 18, 32, 0.45) 70%, transparent 100%);
  padding: 1.1rem 0;
}
.vp-navbar .navbar-brand img { height: 64px; width: auto; transition: filter 0.4s, transform 0.3s; }
.vp-navbar .navbar-brand:hover img { transform: scale(1.03); }
.vp-navbar:not(.scrolled) .navbar-brand img { filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,184,212,0.4)); }

.vp-navbar .nav-link {
  font-family: var(--font-secondary); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1.1rem !important; position: relative; transition: color 0.3s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.vp-navbar.scrolled .nav-link { color: var(--dark); text-shadow: none; }

.vp-navbar .nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 1.1rem; right: 1.1rem;
  height: 2.5px; background: var(--primary); border-radius: 3px;
  transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease-editorial);
}

.vp-navbar .nav-link:hover::after, .vp-navbar .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.vp-navbar .nav-link:hover, .vp-navbar .nav-link.active { color: var(--primary); }
.vp-navbar:not(.scrolled) .nav-link:hover, .vp-navbar:not(.scrolled) .nav-link.active { color: var(--sky); }
.vp-navbar:not(.scrolled) .nav-link::after { background: var(--sky); box-shadow: 0 0 10px rgba(141, 232, 242, 0.9); }

.btn-nav-cta {
  font-family: var(--font-secondary); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; background: var(--primary); color: var(--white) !important;
  border: none; padding: 0.65rem 1.5rem !important; border-radius: 50px;
  box-shadow: 0 4px 18px rgba(6, 71, 155, 0.25);
  transition: background 0.3s, transform 0.25s var(--ease-editorial), box-shadow 0.3s !important;
}

.btn-nav-cta:hover { background: var(--deep) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6, 71, 155, 0.38) !important; }

.vp-navbar:not(.scrolled) .btn-nav-cta {
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vp-navbar:not(.scrolled) .btn-nav-cta:hover { background: rgba(255, 255, 255, 0.28) !important; border-color: var(--sky); }

.navbar-toggler { border: none; padding: 0.25rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s var(--ease-editorial); }
.vp-navbar.scrolled .toggler-icon { background: var(--dark); }

.vp-offcanvas { background: linear-gradient(180deg, #062B63 0%, #071A2B 100%); width: 320px !important; }
.vp-offcanvas .offcanvas-header { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.vp-offcanvas .offcanvas-header img { height: 38px; filter: brightness(0) invert(1); }
.vp-offcanvas .btn-close { filter: invert(1); opacity: 0.8; }
.vp-offcanvas .offcanvas-body .nav-link {
  font-family: var(--font-secondary); font-size: 1.05rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.85); padding: 1.1rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); letter-spacing: 0.04em;
}
.vp-offcanvas .offcanvas-body .nav-link:hover { color: var(--sky); }
.btn-offcanvas-cta {
  display: block; margin-top: 2rem; font-family: var(--font-secondary); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.1em; text-align: center; padding: 1rem;
  background: var(--primary); color: var(--white) !important; border-radius: 50px; text-transform: uppercase;
}

.hero-split-section {
  position: relative;
  min-height: 92vh;
  padding: 8.5rem 0 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* ============================================================
   PAGE HERO & LUXURY BREADCRUMB
   ============================================================ */
.page-hero {
  position: relative;
  padding: 7.8rem 0 2.8rem;
  background: var(--dark);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 85% at 50% 40%, rgba(6, 71, 155, 0.55) 0%, transparent 70%),
              linear-gradient(135deg, #071A2B 0%, #062B63 100%);
}

.page-hero-content {
  position: relative; z-index: 2;
}

.page-hero-tag {
  font-family: var(--font-secondary); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--sky);
  margin-bottom: 0.85rem;
}

.page-hero-heading {
  font-family: var(--font-editorial); font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 600; line-height: 1.08; color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.page-hero-sub {
  font-family: var(--font-secondary); font-size: 1.08rem; color: rgba(255, 255, 255, 0.8);
  line-height: 1.7; max-width: 680px; margin-left: auto; margin-right: auto;
}

/* Glassmorphic Luxury Breadcrumb Pill */
.vp-breadcrumb-wrapper {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.45rem 1.35rem; border-radius: 50px; backdrop-filter: blur(16px);
  margin-bottom: 1.35rem; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vp-breadcrumb {
  display: flex; align-items: center; gap: 0.65rem; list-style: none;
  margin: 0; padding: 0; font-family: var(--font-secondary); font-size: 0.82rem; font-weight: 600;
}

.vp-breadcrumb li {
  display: flex; align-items: center; gap: 0.65rem; color: rgba(255, 255, 255, 0.7);
}

.vp-breadcrumb li a {
  color: var(--white); transition: color 0.3s; display: flex; align-items: center; text-decoration: none;
}

.vp-breadcrumb li a:hover {
  color: var(--sky);
}

.vp-breadcrumb li.active {
  color: var(--sky); font-weight: 700;
}

.vp-breadcrumb-divider {
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.4);
}

.hero-split-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(0, 184, 212, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 20% 30%, rgba(6, 71, 155, 0.5) 0%, transparent 65%),
    linear-gradient(135deg, #071A2B 0%, #062B63 50%, #06479B 100%);
}

.hero-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-editorial);
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.6; pointer-events: none;
}

.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1.25rem; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(141, 232, 242, 0.35); backdrop-filter: blur(14px);
  border-radius: 50px; font-family: var(--font-secondary); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.25em; color: var(--sky); text-transform: uppercase;
  margin-bottom: 1.75rem; opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-editorial) 1.1s forwards;
}

.hero-badge-pill i { color: var(--aqua); }

.hero-heading {
  font-family: var(--font-editorial);
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  font-weight: 600; color: var(--white); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 1.5rem; opacity: 0;
  transform: translateY(30px); animation: heroFadeUp 0.9s var(--ease-editorial) 1.3s forwards;
}

.hero-heading .accent {
  color: var(--sky); font-style: italic; font-weight: 400;
  text-shadow: 0 0 35px rgba(141, 232, 242, 0.4);
}

.hero-sub {
  font-family: var(--font-secondary); font-size: 1.15rem; font-weight: 400;
  color: rgba(141, 232, 242, 0.9); line-height: 1.6; margin-bottom: 1rem; opacity: 0;
  transform: translateY(20px); animation: heroFadeUp 0.8s var(--ease-editorial) 1.5s forwards;
}

.hero-desc {
  font-family: var(--font-secondary); font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7); line-height: 1.85; max-width: 480px;
  margin-bottom: 2.75rem; opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-editorial) 1.7s forwards;
}

.hero-btns {
  display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 3.5rem;
  opacity: 0; transform: translateY(20px); animation: heroFadeUp 0.8s var(--ease-editorial) 1.9s forwards;
}

.hero-stats {
  display: flex; gap: 1.5rem; opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-editorial) 2.1s forwards;
}

.hero-stat {
  display: flex; align-items: center; gap: 0.65rem;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1.1rem; border-radius: var(--radius-sm); backdrop-filter: blur(12px);
}

.hero-stat-icon {
  width: 32px; height: 32px; background: rgba(0, 184, 212, 0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--aqua); flex-shrink: 0;
}

.hero-stat-text {
  font-family: var(--font-secondary); font-size: 0.8rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Bottle Stage & Halo Lighting */
.hero-stage-col {
  position: relative; display: flex; align-items: center; justify-content: center;
}

.hero-stage-wrap {
  position: relative; z-index: 2; opacity: 0;
  animation: heroFadeUp 1s var(--ease-editorial) 1.4s forwards;
  perspective: 1000px;
}

.hero-bottle-halo {
  position: absolute; top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.32) 0%, rgba(6, 71, 155, 0.18) 50%, transparent 70%);
  filter: blur(45px); pointer-events: none;
  animation: haloPulse 6s ease-in-out infinite alternate;
}

.hero-bottle-img {
  width: clamp(270px, 33vw, 520px);
  filter: drop-shadow(0 45px 95px rgba(0, 184, 212, 0.42))
          drop-shadow(0 15px 35px rgba(0, 0, 0, 0.65));
  animation: bottleFloat 5.5s ease-in-out infinite;
  transform-origin: center bottom;
  transition: transform 0.3s ease-out;
}

.hero-bottle-reflection {
  position: absolute; bottom: -38px; left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: clamp(210px, 24vw, 380px);
  opacity: 0.16; filter: blur(5px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.hero-bottle-glow {
  position: absolute; bottom: -5%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 55px;
  background: radial-gradient(ellipse, rgba(0, 184, 212, 0.5) 0%, transparent 70%);
  filter: blur(18px); animation: glowPulse 5.5s ease-in-out infinite;
}

.hero-droplets { position: absolute; inset: 0; pointer-events: none; }
.droplet {
  position: absolute; width: 6px; height: 6px; background: var(--sky);
  box-shadow: 0 0 10px rgba(141, 232, 242, 0.9); border-radius: 50%; opacity: 0;
  animation: dropletFloat var(--dur, 4s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes dropletFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.9; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.4; transform: translateY(-50px) scale(0.7); }
  100% { opacity: 0; transform: translateY(-75px) scale(0); }
}

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-16px) rotate(0.4deg); }
  50% { transform: translateY(-8px) rotate(-0.3deg); }
  75% { transform: translateY(-20px) rotate(0.3deg); }
}
@keyframes haloPulse { 0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); } 50% { opacity: 0.85; transform: translateX(-50%) scale(1.2); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-vp {
  position: relative; display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-secondary); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; background: var(--primary); color: var(--white);
  border: none; padding: 0.95rem 2.2rem; border-radius: 50px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(6, 71, 155, 0.3);
  transition: background 0.3s, transform 0.3s var(--ease-editorial), box-shadow 0.3s;
  cursor: pointer; white-space: nowrap;
}

.btn-primary-vp::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s var(--ease-editorial);
}

.btn-primary-vp:hover::after { left: 100%; }
.btn-primary-vp:hover { background: var(--deep); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(6, 71, 155, 0.45); color: var(--white); }
.btn-primary-vp .btn-arrow { transition: transform 0.3s var(--ease-editorial); }
.btn-primary-vp:hover .btn-arrow { transform: translateX(6px); }

.btn-secondary-vp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-secondary); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; background: rgba(255, 255, 255, 0.06); color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35); backdrop-filter: blur(10px);
  padding: 0.95rem 2.2rem; border-radius: 50px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-editorial), box-shadow 0.3s;
  cursor: pointer; white-space: nowrap;
}

.btn-secondary-vp:hover { border-color: var(--sky); background: rgba(141, 232, 242, 0.12); transform: translateY(-4px); color: var(--sky); box-shadow: 0 10px 30px rgba(0, 184, 212, 0.2); }
.btn-secondary-vp .btn-arrow { transition: transform 0.3s; }
.btn-secondary-vp:hover .btn-arrow { transform: translateX(6px); }

.btn-outline-vp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-secondary); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary); padding: 0.9rem 2.2rem; border-radius: 50px;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-editorial), box-shadow 0.3s;
  cursor: pointer;
}

.btn-outline-vp:hover { background: var(--primary); color: var(--white); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(6, 71, 155, 0.3); }
.btn-outline-vp .btn-arrow { transition: transform 0.3s; }
.btn-outline-vp:hover .btn-arrow { transform: translateX(6px); }

.btn-dark-vp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-secondary); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; background: var(--white); color: var(--primary);
  border: none; padding: 0.95rem 2.4rem; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s var(--ease-editorial), box-shadow 0.3s;
  cursor: pointer;
}

.btn-dark-vp:hover { background: var(--sky); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0, 184, 212, 0.4); color: var(--deep); }
.btn-dark-vp .btn-arrow { transition: transform 0.3s; }
.btn-dark-vp:hover .btn-arrow { transform: translateX(6px); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-tag {
  font-family: var(--font-secondary); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase; color: var(--primary);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem;
}

.section-tag::before {
  content: ''; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--aqua)); flex-shrink: 0;
}

.section-tag-light { color: var(--sky); }
.section-tag-light::before { background: linear-gradient(90deg, var(--sky), var(--aqua)); }

.section-heading {
  font-family: var(--font-editorial); font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; color: var(--dark);
}

.section-heading-light { color: var(--white); }

.section-sub {
  font-family: var(--font-secondary); font-size: 1.05rem; color: var(--gray);
  line-height: 1.78; max-width: 560px;
}

.section-sub-light { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   TRUST BANNER & BAR
   ============================================================ */
.trust-strip {
  background: var(--white); border-bottom: 1px solid var(--gray-light);
  padding: 2.2rem 0; position: relative; z-index: 5;
}

.trust-strip-items {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); border-radius: var(--radius-md);
  border: 1px solid rgba(6, 71, 155, 0.06); padding: 0.75rem 0;
}

.trust-item {
  display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 3rem;
  border-right: 1px solid rgba(6, 71, 155, 0.08); flex: 1; justify-content: center;
  transition: transform 0.3s;
}

.trust-item:hover { transform: translateY(-2px); }
.trust-item:last-child { border-right: none; }

.trust-item-icon {
  font-size: 1.4rem; color: var(--primary); background: var(--white);
  width: 42px; height: 42px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(6, 71, 155, 0.08);
}

.trust-item-text {
  font-family: var(--font-secondary); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--dark); text-transform: uppercase;
}

/* ============================================================
   ULTRA-LUXURY FORM & MOBILE RESPONSIVE STYLING
   ============================================================ */
.form-floating-vp {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-floating-vp label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-floating-vp input[type="text"],
.form-floating-vp input[type="email"],
.form-floating-vp input[type="tel"],
.form-floating-vp select,
.form-floating-vp textarea {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--bg-soft);
  border: 1.5px solid rgba(6, 71, 155, 0.14);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-floating-vp select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2306479b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 14px;
  padding-right: 2.8rem;
}

.form-floating-vp input:focus,
.form-floating-vp select:focus,
.form-floating-vp textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 16px rgba(6, 71, 155, 0.12);
}

.form-error {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 0.35rem;
  display: block;
}

/* ============================================================
   CORE VALUES LUXURY REDESIGN
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 575px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.09);
  border-radius: 24px;
  padding: 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(6, 71, 155, 0.04);
  transition: transform 0.4s var(--ease-editorial), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 184, 212, 0.4);
  box-shadow: 0 20px 45px rgba(6, 71, 155, 0.12);
}

.value-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.value-icon-node {
  width: 56px; height: 56px;
  background: rgba(6, 71, 155, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary);
  transition: background 0.35s, color 0.35s, transform 0.35s;
}

.value-card:hover .value-icon-node {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(6, 71, 155, 0.3);
}

.value-num {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(6, 71, 155, 0.14);
  line-height: 1;
  transition: color 0.3s;
}

.value-card:hover .value-num {
  color: var(--aqua);
}

.value-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.value-card:hover .value-title {
  color: var(--primary);
}

.value-desc {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   LUXURY SERVICE CARDS & TRIO BOTTLE STAGE REDESIGN
   ============================================================ */
.service-card-luxury {
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.09);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(6, 71, 155, 0.06);
  transition: transform 0.4s var(--ease-editorial), box-shadow 0.4s;
}

.service-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(6, 71, 155, 0.12);
}

.service-card-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .service-card-content { padding: 2.5rem 1.75rem; }
}

.service-num-badge {
  font-family: var(--font-editorial);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(6, 71, 155, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.service-card-title {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark) !important;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.service-card-desc {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--gray) !important;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-card-visual {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-stage-light {
  background: linear-gradient(135deg, #F8FCFE 0%, #E2F2FA 100%);
}

.service-stage-dark {
  background: linear-gradient(135deg, #041220 0%, #062B63 100%);
}

.service-bottle-halo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.25) 0%, rgba(6, 71, 155, 0.08) 60%, transparent 80%);
  filter: blur(25px); border-radius: 50%; pointer-events: none;
}

.service-bottle-halo-dark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.4) 0%, rgba(6, 71, 155, 0.2) 60%, transparent 80%);
  filter: blur(35px); border-radius: 50%; pointer-events: none;
}

.service-bottle-main {
  height: clamp(200px, 22vw, 270px);
  width: auto;
  filter: drop-shadow(0 25px 50px rgba(6, 71, 155, 0.25));
  animation: bottleFloat 5.5s ease-in-out infinite;
  position: relative; z-index: 2;
}

/* Trio Bottles Stage for Private Label */
.service-trio-stage {
  position: relative;
  width: 100%;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.trio-bottle {
  position: absolute;
  bottom: 10px;
  transition: transform 0.4s var(--ease-editorial);
  filter: drop-shadow(0 25px 45px rgba(0, 184, 212, 0.35)) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
}

.trio-center {
  height: 230px; width: auto;
  z-index: 3;
  animation: bottleFloat 5s ease-in-out infinite;
}

.trio-left {
  height: 155px; width: auto;
  left: 22%; z-index: 2; opacity: 0.92;
  transform: rotate(-6deg);
  animation: bottleFloat 6s ease-in-out 0.5s infinite;
}

.trio-right {
  height: 175px; width: auto;
  right: 22%; z-index: 2; opacity: 0.92;
  transform: rotate(6deg);
  animation: bottleFloat 5.5s ease-in-out 1s infinite;
}

@media (max-width: 575px) {
  .trio-left { left: 10%; height: 130px; }
  .trio-right { right: 10%; height: 145px; }
  .trio-center { height: 190px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   LUXURY EDITORIAL BRAND INTRODUCTION
   ============================================================ */
.brand-intro-section {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, #F8FCFE 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.brand-intro-card {
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.1);
  border-radius: 28px;
  padding: 3.5rem 2rem 2.5rem;
  box-shadow: 0 15px 45px rgba(7, 26, 43, 0.05);
}

.brand-intro-badge {
  position: absolute; top: 1.25rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-secondary); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary);
  background: rgba(6, 71, 155, 0.08); padding: 0.4rem 1.1rem;
  border-radius: 50px; white-space: nowrap;
}

.brand-intro-halo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.22) 0%, rgba(6, 71, 155, 0.08) 50%, transparent 70%);
  filter: blur(25px); border-radius: 50%; pointer-events: none;
}

.brand-intro-bottle {
  width: clamp(160px, 18vw, 240px); height: auto;
  filter: drop-shadow(0 25px 50px rgba(6, 71, 155, 0.22));
  animation: bottleFloat 5.5s ease-in-out infinite; position: relative; z-index: 2;
}

.brand-intro-heading {
  font-family: var(--font-editorial); font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 600; line-height: 1.12; color: var(--dark); letter-spacing: -0.02em;
}

.brand-intro-heading .accent-italic {
  color: var(--primary); font-style: italic; display: block;
}

.brand-intro-text {
  font-family: var(--font-secondary); font-size: 1.05rem; color: var(--gray);
  line-height: 1.85; margin-bottom: 0;
}

.brand-intro-metrics {
  border-top: 1px solid var(--gray-light);
}

.brand-metric-item {
  display: flex; flex-direction: column;
}

.brand-metric-val {
  font-family: var(--font-primary); font-size: 1.5rem; font-weight: 800;
  color: var(--primary); line-height: 1.1;
}

.brand-metric-lbl {
  font-family: var(--font-secondary); font-size: 0.75rem; font-weight: 600;
  color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem;
}

.brand-story-deco {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(0, 184, 212, 0.14) 0%, transparent 70%);
  border-radius: 50%;
}

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-section {
  padding: 5.5rem 0; background: linear-gradient(135deg, #06479B 0%, #062B63 100%);
  position: relative; overflow: hidden;
}

.stat-item { text-align: center; padding: 1.5rem; }

.stat-number {
  font-family: var(--font-primary); font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.stat-label {
  font-family: var(--font-secondary); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.75); text-transform: uppercase;
}

/* ============================================================
   WHY VIVPURE
   ============================================================ */
.why-section { padding: var(--section-py) 0; background: var(--white); }

.why-feature {
  border: 1px solid var(--gray-light); border-radius: var(--radius-md);
  padding: 3rem 2.5rem; margin-bottom: 1.5rem; position: relative;
  cursor: pointer; background: var(--white);
  transition: all 0.4s var(--ease-editorial); overflow: hidden;
}

.why-feature:hover {
  border-color: rgba(0, 184, 212, 0.4); box-shadow: 0 20px 50px rgba(6, 71, 155, 0.12);
  transform: translateY(-4px);
}

.why-feature-inner {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 2rem; align-items: center;
}

.why-num {
  font-family: var(--font-editorial); font-size: 3.8rem; font-weight: 700;
  color: rgba(6, 71, 155, 0.12); line-height: 1;
  transition: color 0.3s, transform 0.4s var(--ease-editorial);
}

.why-feature:hover .why-num { color: var(--primary); transform: scale(1.08); }

.why-icon {
  width: 56px; height: 56px; background: var(--bg-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary);
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-editorial);
  margin-bottom: 1.25rem;
}

.why-feature:hover .why-icon {
  background: var(--primary); color: var(--white);
  transform: scale(1.1) rotate(6deg); box-shadow: 0 8px 24px rgba(6, 71, 155, 0.3);
}

.why-title {
  font-family: var(--font-primary); font-size: 1.45rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.75rem; transition: color 0.3s;
}

.why-feature:hover .why-title { color: var(--primary); }

.why-desc {
  font-family: var(--font-secondary); font-size: 0.95rem; color: var(--gray);
  line-height: 1.8; max-width: 440px;
}

.why-cta-arrow {
  font-size: 1.6rem; color: var(--gray-light); transition: color 0.3s, transform 0.3s; align-self: center;
}

.why-feature:hover .why-cta-arrow { color: var(--aqua); transform: translateX(8px); }

.why-feature-bg {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--aqua)); opacity: 0;
  transition: opacity 0.4s var(--ease-editorial);
}

.why-feature:hover .why-feature-bg { opacity: 1; }

/* ============================================================
   CINEMATIC WATER SECTION
   ============================================================ */
.water-section {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background: var(--dark); overflow: hidden;
}

.water-section-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 50% 50%, rgba(6, 71, 155, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0, 184, 212, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #071A2B 0%, #062B63 50%, #071A2B 100%);
}

#waterCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.7; }
.water-text-block { position: relative; z-index: 2; }
.water-text-sm {
  font-family: var(--font-secondary); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--aqua); margin-bottom: 1.5rem;
}

.water-text-main {
  font-family: var(--font-editorial); font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 700; color: var(--white); line-height: 1.05; letter-spacing: -0.02em;
}

.water-text-main .line-2 { color: var(--sky); font-style: italic; text-shadow: 0 0 35px rgba(141, 232, 242, 0.5); }
.water-bottle-center { position: relative; z-index: 2; }

.water-bottle-img {
  width: clamp(200px, 22vw, 340px);
  filter: drop-shadow(0 0 70px rgba(0, 184, 212, 0.5)) drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
  animation: bottleFloat 5s ease-in-out infinite;
}

.water-ripple-wrap {
  position: absolute; bottom: -25px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 70px;
}

.water-ripple-ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1.5px solid rgba(0, 184, 212, 0.6);
  animation: waterRipple 2.5s ease-out infinite;
}
.water-ripple-ring:nth-child(2) { animation-delay: 0.8s; }
.water-ripple-ring:nth-child(3) { animation-delay: 1.6s; }

@keyframes waterRipple {
  0% { width: 40px; height: 16px; opacity: 0.9; }
  100% { width: 220px; height: 70px; opacity: 0; }
}

/* ============================================================
   NEW LUXURY EDITORIAL PRODUCT SHOWCASE
   ============================================================ */
.products-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #EBF4FA 100%);
  position: relative;
}

.product-showcase-header { position: relative; z-index: 2; }

.product-tabs-wrapper {
  display: flex; justify-content: center;
}

.product-tabs {
  display: inline-flex; gap: 0.5rem; background: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.5rem; border-radius: 50px;
  border: 1px solid rgba(6, 71, 155, 0.12);
  box-shadow: 0 4px 20px rgba(6, 71, 155, 0.05);
  backdrop-filter: blur(10px);
}

.product-tab-btn {
  font-family: var(--font-secondary); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray);
  background: transparent; border: none; padding: 0.65rem 1.6rem;
  border-radius: 50px; cursor: pointer; transition: all 0.35s var(--ease-editorial);
}

.product-tab-btn.active {
  color: var(--white); background: var(--primary);
  box-shadow: 0 6px 20px rgba(6, 71, 155, 0.3);
}

.product-panel {
  display: none; opacity: 0; transform: translateY(20px);
  transition: opacity 0.45s var(--ease-editorial), transform 0.45s var(--ease-editorial);
}

.product-panel.active { display: block; opacity: 1; transform: translateY(0); }

.product-panel-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
  background: var(--white); border-radius: 24px; padding: 2.5rem 3rem;
  box-shadow: 0 15px 50px rgba(7, 26, 43, 0.07); border: 1px solid rgba(6, 71, 155, 0.08);
  max-width: 950px; margin: 0 auto;
}

.product-badge {
  display: inline-flex; align-items: center;
  padding: 0.35rem 1rem; background: rgba(6, 71, 155, 0.08);
  color: var(--primary); font-family: var(--font-secondary);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: 50px; margin-bottom: 1.1rem;
}

.product-badge.bg-info-tag {
  background: rgba(0, 184, 212, 0.12); color: #007a8c;
}

.product-name {
  font-family: var(--font-editorial); font-size: 2rem;
  font-weight: 600; color: var(--dark); line-height: 1.15; margin-bottom: 0.75rem;
}

.product-desc {
  font-family: var(--font-secondary); font-size: 0.92rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 1.4rem; max-width: 440px;
}

.product-features { margin-bottom: 1.6rem; }

.product-feature-item {
  display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-secondary);
  font-size: 0.88rem; font-weight: 500; color: var(--dark); padding: 0.45rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.product-feature-item i { color: var(--primary); font-size: 1.05rem; }

.product-visual-col {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}

.product-stage-halo {
  position: absolute; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.22) 0%, rgba(6, 71, 155, 0.08) 50%, transparent 70%);
  filter: blur(20px); border-radius: 50%; pointer-events: none;
}

.product-bottle-img {
  width: clamp(150px, 16vw, 210px); height: auto;
  filter: drop-shadow(0 20px 45px rgba(6, 71, 155, 0.25));
  animation: bottleFloat 5.5s ease-in-out infinite; position: relative; z-index: 2;
}

/* SIZES GRID */
/* SIZES SECTION — LUXURY REDESIGN */
.sizes-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  position: relative;
  overflow: visible;
}

.sizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
  overflow: visible;
}

.size-card {
  padding: 2.5rem 1.8rem;
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.09);
  border-radius: 24px;
  position: relative;
  overflow: visible !important;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 10px 35px rgba(6, 71, 155, 0.05);
  transition: transform 0.4s var(--ease-editorial), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.size-card:hover {
  background: var(--white);
  border-color: rgba(0, 184, 212, 0.45);
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(6, 71, 155, 0.14);
}

.size-badge-tag {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(6, 71, 155, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.size-badge-popular {
  background: rgba(0, 184, 212, 0.14);
  color: #007a8c;
  border: 1px solid rgba(0, 184, 212, 0.3);
}

.size-ml {
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.size-bottle-silhouette {
  height: 230px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  position: relative;
  overflow: visible !important;
}

.size-bottle-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.2) 0%, rgba(6, 71, 155, 0.05) 50%, transparent 70%);
  filter: blur(18px);
  border-radius: 50%;
  pointer-events: none;
}

.size-bottle-silhouette img {
  height: auto;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(6, 71, 155, 0.22));
  transition: filter 0.4s, transform 0.4s var(--ease-editorial);
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}

.size-card:hover .size-bottle-silhouette img {
  filter: drop-shadow(0 25px 45px rgba(0, 184, 212, 0.38));
  transform: translateY(-8px) scale(1.05);
}

.size-desc {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   SERVICES EDITORIAL
   ============================================================ */
.services-section { padding: var(--section-py) 0; background: var(--white); }

.service-editorial {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 2rem;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(6, 71, 155, 0.06);
}

.service-editorial-content {
  padding: 4.5rem; background: var(--bg-soft); display: flex;
  flex-direction: column; justify-content: center; transition: background 0.4s var(--ease-editorial);
}

.service-editorial:hover .service-editorial-content { background: var(--primary); }
.service-editorial:hover .service-num, .service-editorial:hover .service-title, .service-editorial:hover .service-desc { color: var(--white); }
.service-editorial:hover .section-tag { color: var(--sky); }
.service-editorial:hover .section-tag::before { background: var(--sky); }
.service-editorial:hover .btn-outline-vp { border-color: var(--white); color: var(--white); }
.service-editorial:hover .btn-outline-vp:hover { background: var(--white); color: var(--primary); }

.service-num { font-family: var(--font-editorial); font-size: 5rem; font-weight: 700; color: rgba(6, 71, 155, 0.08); line-height: 1; margin-bottom: 1rem; transition: color 0.3s; }
.service-title { font-family: var(--font-editorial); font-size: 2.2rem; font-weight: 600; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; transition: color 0.3s; }
.service-desc { font-family: var(--font-secondary); font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.75rem; transition: color 0.3s; }
.service-editorial-visual { position: relative; background: var(--gray-light); overflow: hidden; }
.service-editorial-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-editorial); }
.service-editorial:hover .service-editorial-visual img { transform: scale(1.06); }

/* Private Label Bottling Section (3D Podium Stage) */
.private-label-section {
  position: relative; padding: 5rem 0; background: var(--deep); overflow: hidden;
}

.private-label-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(0, 184, 212, 0.25) 0%, rgba(6, 71, 155, 0.15) 50%, transparent 70%),
              linear-gradient(135deg, #062B63 0%, #071A2B 100%);
}

.private-label-heading {
  font-family: var(--font-editorial); font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.05; letter-spacing: -0.02em;
}

.private-label-heading .highlight {
  color: var(--sky); font-style: italic; text-shadow: 0 0 30px rgba(141, 232, 242, 0.4);
}

.private-label-podium {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  min-height: 350px;
}

.pl-podium-glow {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.38) 0%, rgba(6, 71, 155, 0.15) 60%, transparent 75%);
  filter: blur(35px); border-radius: 50%; pointer-events: none;
}

.pl-podium-stage {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  width: 100%; height: 230px; z-index: 2;
}

.pl-podium-bottle {
  position: absolute; bottom: 0;
  filter: drop-shadow(0 20px 40px rgba(0, 184, 212, 0.35)) drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  transition: transform 0.4s var(--ease-editorial);
}

.pl-center-bottle {
  width: clamp(105px, 11vw, 140px);
  z-index: 3;
  animation: bottleFloat 5s ease-in-out infinite;
}

.pl-left-bottle {
  width: clamp(75px, 8vw, 95px);
  left: 14%; z-index: 2; opacity: 0.88;
  transform: rotate(-6deg);
  animation: bottleFloat 6s ease-in-out 0.5s infinite;
}

.pl-right-bottle {
  width: clamp(85px, 9vw, 110px);
  right: 14%; z-index: 2; opacity: 0.88;
  transform: rotate(6deg);
  animation: bottleFloat 5.5s ease-in-out 1s infinite;
}

.private-label-podium:hover .pl-center-bottle {
  transform: translateY(-8px) scale(1.05);
}

/* Delivery Steps */
.delivery-section { padding: var(--section-py) 0; background: var(--white); }
.delivery-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; margin-top: 4rem; }
.delivery-steps::before { content: ''; position: absolute; top: 40px; left: 20%; right: 20%; height: 2px; background: linear-gradient(to right, var(--primary), var(--aqua), var(--primary)); }
.delivery-step { text-align: center; padding: 2.5rem 1.5rem; background: var(--bg-soft); border-radius: var(--radius-md); border: 1px solid rgba(6, 71, 155, 0.06); position: relative; transition: transform 0.3s var(--ease-editorial), box-shadow 0.3s; }
.delivery-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); background: var(--white); }
.delivery-step-dot { width: 76px; height: 76px; background: var(--white); border: 2px solid var(--gray-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.6rem; color: var(--primary); transition: background 0.3s, border-color 0.3s, transform 0.3s, color 0.3s; position: relative; z-index: 1; box-shadow: 0 6px 20px rgba(6, 71, 155, 0.08); }
.delivery-step:hover .delivery-step-dot { background: var(--primary); border-color: var(--primary); color: var(--white); transform: scale(1.1); box-shadow: 0 10px 25px rgba(6, 71, 155, 0.3); }
.delivery-step-num { font-family: var(--font-secondary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.3em; color: var(--aqua); text-transform: uppercase; margin-bottom: 0.5rem; }
.delivery-step-title { font-family: var(--font-primary); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.delivery-step-desc { font-family: var(--font-secondary); font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* Quality Process (Interactive Step Cards Grid) */
.process-section {
  padding: 6rem 0;
  background: var(--bg-soft);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 575px) {
  .process-grid { grid-template-columns: 1fr; }
}

.process-card {
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.08);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 8px 30px rgba(6, 71, 155, 0.04);
  transition: all 0.4s var(--ease-editorial);
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 45px rgba(6, 71, 155, 0.12);
}

.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.process-step-badge {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--primary);
  background: rgba(6, 71, 155, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.process-card-icon {
  width: 46px; height: 46px;
  background: rgba(0, 184, 212, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--aqua);
  transition: background 0.35s, color 0.35s, transform 0.35s;
}

.process-card:hover .process-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(6, 71, 155, 0.3);
}

.process-card-title {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.process-card-desc {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Quality Promise */
.promise-section { padding: var(--section-py) 0; background: var(--white); }
.promise-headline { font-family: var(--font-editorial); font-size: clamp(3.2rem, 6vw, 6.2rem); font-weight: 600; color: var(--dark); line-height: 1.05; letter-spacing: -0.03em; }
.promise-headline span { display: block; }
.promise-headline .accent-word { color: var(--primary); }
.promise-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.promise-check { display: flex; align-items: center; gap: 0.85rem; font-family: var(--font-secondary); font-size: 0.95rem; font-weight: 600; color: var(--dark); background: var(--bg-soft); padding: 0.9rem 1.25rem; border-radius: var(--radius-sm); border: 1px solid rgba(6, 71, 155, 0.06); }
.promise-check-icon { width: 34px; height: 34px; background: rgba(6, 71, 155, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.95rem; flex-shrink: 0; }

/* Sustainability */
.sustain-section { padding: var(--section-py) 0; background: var(--bg-soft); overflow: hidden; }
.sustain-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 2.2rem; background: var(--white); border-radius: var(--radius-md); border: 1px solid rgba(6, 71, 155, 0.06); box-shadow: var(--shadow-subtle); transition: transform 0.3s var(--ease-editorial), box-shadow 0.3s, border-color 0.3s; }
.sustain-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(0, 184, 212, 0.3); }
.sustain-icon { width: 52px; height: 52px; background: rgba(0, 184, 212, 0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--aqua); flex-shrink: 0; }
.sustain-title { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.sustain-desc { font-family: var(--font-secondary); font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* Final Pre-Footer CTA (2-Column Asymmetric Stage) */
.final-cta-section {
  position: relative; padding: 3.5rem 0; overflow: hidden; background: var(--dark);
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 85% at 75% 50%, rgba(6, 71, 155, 0.55) 0%, transparent 70%),
              linear-gradient(135deg, #071A2B 0%, #062B63 100%);
}
.final-cta-heading {
  font-family: var(--font-editorial); font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.final-cta-heading .accent {
  color: var(--sky); font-style: italic; text-shadow: 0 0 35px rgba(141, 232, 242, 0.4);
}
.final-cta-desc {
  font-family: var(--font-secondary); font-size: 1.05rem; color: rgba(255, 255, 255, 0.8);
  line-height: 1.75; max-width: 540px;
}

.final-cta-stage {
  position: relative; display: flex; align-items: center; justify-content: center;
}

.final-cta-halo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.35) 0%, rgba(6, 71, 155, 0.15) 60%, transparent 75%);
  filter: blur(30px); border-radius: 50%; pointer-events: none;
}

.final-cta-bottle-img {
  width: clamp(200px, 22vw, 320px); height: auto;
  filter: drop-shadow(0 30px 65px rgba(0, 184, 212, 0.45)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  animation: bottleFloat 5.5s ease-in-out infinite; position: relative; z-index: 2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.vp-footer { background: var(--dark); padding: 5.5rem 0 2.5rem; position: relative; overflow: hidden; }
.vp-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--primary), var(--aqua), var(--primary), transparent); }
.footer-logo img { height: 72px; filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(0,184,212,0.3)); margin-bottom: 1rem; }
.footer-tagline { font-family: var(--font-secondary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--sky); margin-bottom: 1.25rem; }
.footer-desc { font-family: var(--font-secondary); font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); line-height: 1.85; max-width: 310px; }
.footer-badge-pill {
  font-family: var(--font-secondary); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky);
  background: rgba(0, 184, 212, 0.1); border: 1px solid rgba(141, 232, 242, 0.25);
  padding: 0.35rem 0.85rem; border-radius: 50px;
}
.footer-heading { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sky); margin-bottom: 1.4rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-family: var(--font-secondary); font-size: 0.92rem; font-weight: 500; color: rgba(255, 255, 255, 0.85); transition: color 0.3s; display: flex; align-items: center; gap: 0.5rem; }
.footer-links a:hover { color: var(--sky); }
.footer-links a::before { content: ''; width: 6px; height: 1.5px; background: var(--sky); transition: width 0.3s, background 0.3s; }
.footer-links a:hover::before { width: 14px; background: var(--aqua); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1.1rem; }
.footer-contact-item i { color: var(--aqua); font-size: 1rem; margin-top: 0.15rem; }
.footer-contact-item a, .footer-contact-item span { font-family: var(--font-secondary); font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.85); line-height: 1.6; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--sky); }
.footer-divider { height: 1px; background: rgba(255, 255, 255, 0.15); margin: 3rem 0 1.75rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: var(--font-secondary); font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
.footer-bottom-links { display: flex; gap: 1.75rem; }
.footer-bottom-links a { font-family: var(--font-secondary); font-size: 0.85rem; font-weight: 500; color: rgba(255, 255, 255, 0.65); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--sky); }

.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.75rem; background: #25D366; color: var(--white);
  padding: 0.85rem 1.4rem 0.85rem 1.1rem; border-radius: 50px; box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  font-family: var(--font-secondary); font-size: 0.82rem; font-weight: 700; cursor: pointer;
  transition: transform 0.3s var(--ease-editorial); animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); color: var(--white); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35); } 50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6); } }

/* Enhanced Bottle Cutout & Transparent Blend Rules */
.product-bottle-img,
.brand-story-bottle-img,
.size-bottle-silhouette img {
  mix-blend-mode: multiply;
  filter: contrast(1.05) brightness(0.98) drop-shadow(0 25px 45px rgba(6, 71, 155, 0.22));
}

.hero-bottle-img,
.water-bottle-img,
.final-cta-bottle,
.pl-bottle {
  mix-blend-mode: normal;
  filter: drop-shadow(0 35px 70px rgba(0, 184, 212, 0.4)) drop-shadow(0 15px 30px rgba(7, 26, 43, 0.7));
}

/* ============================================================
   CONTACT PAGE LUXURY REDESIGN
   ============================================================ */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .contact-quick-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.contact-quick-card {
  padding: 2.2rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.09);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(6, 71, 155, 0.04);
  transition: transform 0.35s var(--ease-editorial), border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-quick-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 212, 0.4);
  box-shadow: 0 20px 45px rgba(6, 71, 155, 0.12);
}

.contact-quick-icon {
  width: 52px; height: 52px;
  background: rgba(6, 71, 155, 0.08);
  color: var(--primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.contact-quick-card:hover .contact-quick-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08) rotate(4deg);
}

.contact-quick-title {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.35rem;
}

.contact-quick-val {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.contact-quick-sub {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.contact-quick-link {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s, color 0.3s;
}

.contact-quick-card:hover .contact-quick-link {
  gap: 0.75rem;
  color: var(--aqua-dark, #007a8c);
}

/* Contact Studio Form */
.contact-form-studio {
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.09);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 15px 45px rgba(6, 71, 155, 0.06);
}

@media (max-width: 575px) {
  .contact-form-studio { padding: 2rem 1.5rem; }
}

.contact-info-card {
  background: var(--dark);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(7, 26, 43, 0.2);
}

.contact-info-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 184, 212, 0.22) 0%, rgba(6, 71, 155, 0.1) 60%, transparent 80%);
  pointer-events: none;
}

.contact-info-block {
  display: flex; align-items: flex-start; gap: 1.25rem;
  margin-bottom: 2rem; position: relative; z-index: 2;
}

.contact-info-icon-node {
  width: 48px; height: 48px;
  background: rgba(0, 184, 212, 0.12);
  border: 1px solid rgba(141, 232, 242, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky); font-size: 1.2rem; flex-shrink: 0;
}

.contact-info-label-sm {
  font-family: var(--font-secondary);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 0.35rem;
}

.contact-info-val-lg {
  font-family: var(--font-secondary);
  font-size: 0.95rem; color: rgba(255, 255, 255, 0.9);
  line-height: 1.7; margin-bottom: 0;
}

.contact-map-wrap {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-top: 2rem; position: relative; z-index: 2;
}

/* ============================================================
   MASTER CONTACT PAGE REDESIGN — ULTRA LUXURY STYLING
   ============================================================ */
.contact-hero-luxury {
  background: linear-gradient(180deg, #041220 0%, #062B63 100%);
  padding: 6.8rem 0 2.2rem;
  position: relative;
  overflow: hidden;
}

.contact-hero-luxury::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 184, 212, 0.25) 0%, rgba(6, 71, 155, 0.1) 60%, transparent 80%);
  pointer-events: none;
}

.contact-hero-title {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.contact-hero-desc {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 650px;
}

.contact-pills-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.contact-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  backdrop-filter: blur(16px);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.35s var(--ease-editorial);
}

.contact-pill-item:hover {
  background: rgba(0, 184, 212, 0.2);
  border-color: var(--sky);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 184, 212, 0.3);
}

.contact-pill-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0, 184, 212, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky); font-size: 0.95rem;
}

/* Master Form Studio Split */
.contact-master-studio {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .contact-master-studio { grid-template-columns: 1fr; margin-top: 2rem; }
}

.contact-card-white {
  background: var(--white);
  border: 1px solid rgba(6, 71, 155, 0.1);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 60px rgba(6, 71, 155, 0.08);
}

@media (max-width: 575px) {
  .contact-card-white { padding: 2rem 1.5rem; }
}

.contact-service-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact-service-selector { grid-template-columns: repeat(2, 1fr); }
}

.contact-chip-btn {
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(6, 71, 155, 0.12);
  background: var(--bg-soft);
  border-radius: 14px;
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-chip-btn.active, .contact-chip-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(6, 71, 155, 0.25);
}

.contact-card-dark {
  background: linear-gradient(135deg, #071A2B 0%, #062B63 100%);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(7, 26, 43, 0.25);
  border: 1px solid rgba(0, 184, 212, 0.25);
}

.contact-card-dark::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.3) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
