/* ==========================================================================
   GOLIWALA OFFICIAL™ - ULTRA LUXURY DIGITAL PROFILE & DASHBOARD STYLESHEET
   Aesthetics: Deep Obsidian Dark Mode + Glowing Emerald Glassmorphism
   Fonts: Outfit & Plus Jakarta Sans & Space Grotesk
   ========================================================================== */

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

:root {
  /* Brand Palette */
  --color-primary: #00FF87;
  --color-primary-glow: rgba(0, 255, 135, 0.45);
  --color-primary-dark: #05DF72;
  --color-primary-muted: rgba(0, 255, 135, 0.12);
  --color-accent-blue: #60EFFF;
  --color-accent-amber: #FBBF24;
  --color-accent-wa: #25D366;
  --color-accent-wa-dark: #128C7E;
  --color-accent-insta: #E1306C;
  --color-accent-insta-gradient: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);

  /* Obsidian & Dark Luxury Backgrounds */
  --bg-dark-base: #060C08;
  --bg-dark-surface: #0B140E;
  --bg-dark-elevated: #101C14;
  --bg-card: rgba(14, 26, 18, 0.65);
  --bg-card-hover: rgba(20, 38, 26, 0.85);

  /* Glassmorphism System */
  --glass-border: rgba(0, 255, 135, 0.16);
  --glass-border-hover: rgba(0, 255, 135, 0.4);
  --glass-blur: blur(20px);
  --glass-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 35px -5px rgba(0, 255, 135, 0.08);
  --glass-inner-glow: inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 0 15px rgba(0, 255, 135, 0.05);

  /* Typography Colors */
  --text-pure-white: #FFFFFF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Transitions & Spacing */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  background-color: var(--bg-dark-base);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------ GOLI SODA POP INTERACTIVE PRELOADER ------------------ */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030805;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.08);
}

.preloader-backdrop {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(0, 255, 135, 0.15) 0%, rgba(6, 12, 8, 0.95) 60%, #030805 100%);
  pointer-events: none;
  animation: preloaderPulse 4s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.preloader-glass-card {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 440px;
  padding: 30px 24px;
  border-radius: var(--radius-xl);
  background: rgba(10, 24, 16, 0.75);
  border: 1px solid rgba(0, 255, 135, 0.35);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 255, 135, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* AI Generated Video Player */
.loader-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(0, 255, 135, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 135, 0.25);
  margin-bottom: 18px;
  background: #000;
}

.loader-video-player {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn-skip-preloader {
  background: rgba(0, 255, 135, 0.12);
  border: 1px solid rgba(0, 255, 135, 0.3);
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-skip-preloader:hover {
  background: var(--color-primary);
  color: #000;
  box-shadow: 0 0 12px var(--color-primary);
}

/* 3D Soda Pop Stage */
.soda-pop-stage {
  position: relative;
  width: 200px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.pop-shockwave {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  opacity: 0;
  pointer-events: none;
}

.soda-pop-stage.popped .pop-shockwave.wave-1 {
  animation: shockwaveExpand 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.soda-pop-stage.popped .pop-shockwave.wave-2 {
  animation: shockwaveExpand 1.2s 0.15s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes shockwaveExpand {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.2);
  }

  100% {
    width: 350px;
    height: 350px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Bottle Rig & Codd Neck Shape */
.bottle-rig {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.soda-pop-stage:hover .bottle-rig {
  transform: scale(1.04);
}

.bottle-shape {
  position: relative;
  width: 76px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottle-rim {
  width: 32px;
  height: 8px;
  background: rgba(0, 255, 135, 0.25);
  border: 1.5px solid rgba(0, 255, 135, 0.6);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.3);
}

.bottle-neck {
  position: relative;
  width: 26px;
  height: 48px;
  background: rgba(0, 255, 135, 0.08);
  border-left: 1.5px solid rgba(0, 255, 135, 0.4);
  border-right: 1.5px solid rgba(0, 255, 135, 0.4);
  display: flex;
  justify-content: center;
}

/* Glass Marble ("Goli") */
.glass-marble {
  position: absolute;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #00FF87 40%, #057a44 80%, #02361c 100%);
  box-shadow: 0 0 14px rgba(0, 255, 135, 0.8), inset 0 0 4px #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  z-index: 5;
}

/* Marble Pop Down Animation */
.soda-pop-stage.popped .glass-marble {
  transform: translateY(32px) scale(0.92);
  box-shadow: 0 0 20px rgba(0, 255, 135, 1);
}

.marble-chamber {
  position: absolute;
  bottom: 0;
  width: 34px;
  height: 16px;
  border-radius: 0 0 12px 12px;
  border-bottom: 1.5px solid rgba(0, 255, 135, 0.4);
}

.bottle-body {
  position: relative;
  width: 76px;
  height: 124px;
  border-radius: 18px 18px 14px 14px;
  background: rgba(0, 255, 135, 0.06);
  border: 1.5px solid rgba(0, 255, 135, 0.35);
  box-shadow: inset 0 0 20px rgba(0, 255, 135, 0.15), 0 10px 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.liquid-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(180deg, rgba(0, 255, 135, 0.4) 0%, rgba(5, 122, 68, 0.7) 100%);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.4);
  transition: height 0.6s ease;
}

.bottle-brand-emblem {
  position: relative;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 135, 0.5);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.3);
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Soda Geyser Fizz Spurt */
.soda-geyser {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 70px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.soda-pop-stage.popped .soda-geyser {
  animation: geyserSpurt 0.9s cubic-bezier(0.12, 0.8, 0.3, 1) forwards;
}

@keyframes geyserSpurt {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
  }

  25% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.4);
  }

  70% {
    opacity: 0.9;
    transform: translateX(-50%) scaleY(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0.5);
  }
}

.geyser-stream {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 255, 135, 0.6) 60%, transparent 100%);
  border-radius: 20px 20px 0 0;
  filter: blur(1px);
}

/* Finger Pop Indicator Cue */
.pop-trigger-hand {
  position: absolute;
  top: -38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-primary);
  font-size: 1.3rem;
  animation: fingerTap 1.2s ease-in-out infinite alternate;
  pointer-events: none;
}

.soda-pop-stage.popped .pop-trigger-hand {
  display: none;
}

@keyframes fingerTap {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }

  100% {
    transform: translateY(12px);
    opacity: 1;
    text-shadow: 0 0 12px var(--color-primary);
  }
}

.pop-tap-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
  background: rgba(0, 255, 135, 0.15);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 255, 135, 0.3);
}

/* Preloader Meta & Progress */
.preloader-meta {
  width: 100%;
}

.preloader-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-pure-white);
  margin-bottom: 4px;
}

.preloader-subtext {
  font-size: 0.82rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 500;
}

.preloader-progress-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 255, 135, 0.2);
}

.preloader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00FF87, #60EFFF, #00FF87);
  box-shadow: 0 0 12px var(--color-primary);
  border-radius: var(--radius-full);
  transition: width 0.15s ease-out;
}

.preloader-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.preloader-percent {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-primary);
}

/* ------------------ CANVAS & AMBIENT BACKGROUND ------------------ */
.fixed-background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

.threejs-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  transition: all 1s ease;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00FF87 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #057a44 0%, transparent 70%);
  bottom: 10%;
  right: -200px;
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #0e4e6b 0%, transparent 70%);
  top: 40%;
  left: 25%;
  opacity: 0.2;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, 80px) scale(1.1);
  }

  100% {
    transform: translate(-40px, 40px) scale(0.95);
  }
}

/* ------------------ COMMON UTILITIES & LAYOUT ------------------ */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 90px 0;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #00FF87 0%, #60EFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inner-glow);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

/* ------------------ BUTTONS SYSTEM ------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #00FF87 0%, #00DF76 50%, #05B35C 100%);
  color: #031307;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 255, 135, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 255, 135, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #000;
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 135, 0.25);
  color: var(--text-pure-white);
  backdrop-filter: blur(10px);
}

.btn-secondary-glass:hover {
  background: rgba(0, 255, 135, 0.12);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-glass-wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4EFA8B;
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-glass-wa:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ------------------ TOP STATUS / ANNOUNCEMENT BAR ------------------ */
.top-status-bar {
  background: rgba(6, 12, 8, 0.85);
  border-bottom: 1px solid rgba(0, 255, 135, 0.1);
  padding: 7px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  position: relative;
  z-index: 101;
  backdrop-filter: blur(10px);
}

.status-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-left,
.status-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 12px var(--color-primary);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.divider-dot {
  color: rgba(255, 255, 255, 0.2);
}

.status-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.status-link:hover {
  color: var(--color-primary);
}

/* ------------------ STICKY HEADER & NAVBAR ------------------ */
.sticky-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(6, 12, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 135, 0.12);
  transition: all var(--transition-smooth);
}

.sticky-header.scrolled {
  background: rgba(6, 12, 8, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(0, 255, 135, 0.22);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

/* Brand Logo (Prominent & Luxury) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-pure-white);
}

.logo-icon-wrapper {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 135, 0.06);
  border: 1.5px solid rgba(0, 255, 135, 0.4);
  box-shadow: 0 0 22px rgba(0, 255, 135, 0.28);
  transition: all var(--transition-smooth);
  overflow: hidden;
  padding: 3px;
}

.brand-logo:hover .logo-icon-wrapper {
  transform: scale(1.06);
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.55);
}

.brand-svg-logo {
  width: 44px;
  height: 44px;
}

.brand-img-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.emblem-img-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.4);
}

.footer-img-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-pure-white);
  line-height: 1.1;
}

.logo-tm {
  font-size: 0.65rem;
  color: var(--color-primary);
  vertical-align: super;
  margin-left: 2px;
}

.logo-sub-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

/* Desktop Navigation */
.desktop-nav {
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0;
}

.mobile-toggle .bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-pure-white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(4, 8, 5, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  transition: right var(--transition-smooth);
  display: flex;
  justify-content: flex-end;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-inner {
  width: 82%;
  max-width: 380px;
  height: 100%;
  background: var(--bg-dark-surface);
  border-left: 1px solid var(--glass-border);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.close-drawer-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-pure-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link i {
  color: var(--color-primary);
  width: 22px;
}

.mobile-nav-link:hover {
  background: rgba(0, 255, 135, 0.1);
  color: var(--color-primary);
}

.drawer-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
}

.drawer-hotline-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drawer-phone {
  color: var(--text-pure-white);
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.drawer-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-whatsapp-full {
  width: 100%;
  background: #25D366;
  color: #000;
  font-weight: 700;
}

/* ------------------ HERO SECTION & EXECUTIVE DASHBOARD CARD ------------------ */
.hero-section {
  padding: 50px 0 85px 0;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Cinematic Hero Background & Animations */
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.65) contrast(1.15) saturate(1.2);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: center center;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

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

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(6, 12, 8, 0.4) 0%, rgba(6, 12, 8, 0.85) 75%, #060C08 100%),
    linear-gradient(180deg, rgba(6, 12, 8, 0.85) 0%, rgba(6, 12, 8, 0.2) 35%, rgba(6, 12, 8, 0.75) 85%, #060C08 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Dynamic Ambient Light Beams */
.hero-light-beam {
  position: absolute;
  width: 450px;
  max-width: 45vw;
  height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}

.hero-light-beam.beam-1 {
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.45) 0%, rgba(96, 239, 255, 0.2) 45%, transparent 70%);
  animation: beamFloat1 16s ease-in-out infinite alternate;
}

.hero-light-beam.beam-2 {
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(5, 223, 114, 0.35) 0%, rgba(0, 255, 135, 0.1) 50%, transparent 70%);
  animation: beamFloat2 20s ease-in-out infinite alternate;
}

@keyframes beamFloat1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.25;
  }

  50% {
    transform: translate(-80px, 60px) rotate(15deg);
    opacity: 0.45;
  }

  100% {
    transform: translate(40px, -40px) rotate(-10deg);
    opacity: 0.3;
  }
}

@keyframes beamFloat2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.2;
  }

  50% {
    transform: translate(70px, -50px) rotate(-12deg);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50px, 30px) rotate(8deg);
    opacity: 0.25;
  }
}

.executive-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid rgba(0, 255, 135, 0.28);
  background: linear-gradient(135deg, rgba(10, 24, 16, 0.42) 0%, rgba(4, 12, 7, 0.55) 100%);
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.75), 0 0 50px rgba(0, 255, 135, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  transform: none !important;
}

.executive-card:hover {
  border-color: rgba(0, 255, 135, 0.5);
  box-shadow: 0 35px 90px -15px rgba(0, 0, 0, 0.85), 0 0 65px rgba(0, 255, 135, 0.22), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.card-accent-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00FF87, #60EFFF, #00DF76, #00FF87);
  background-size: 200% 100%;
  animation: ribbonGlow 6s linear infinite;
}

@keyframes ribbonGlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.executive-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 45px;
  align-items: start;
}

/* Hero Left Column */
.exec-col-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
}

.status-pulse-live {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: pulseDot 1.5s infinite;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.location-pill i {
  color: var(--color-accent-blue);
}

/* Emblem & Identity */
.emblem-identity-wrapper {
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-emblem-crystal {
  position: relative;
  width: 95px;
  height: 95px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle, rgba(0, 255, 135, 0.18) 0%, rgba(6, 12, 8, 0.8) 100%);
  border: 1.5px solid rgba(0, 255, 135, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 135, 0.25);
  flex-shrink: 0;
  padding: 5px;
}

.emblem-img-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

.emblem-verified-tick {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: #00FF87;
  color: #031307;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 2px solid var(--bg-dark-base);
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.6);
}

.identity-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--text-pure-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.trademark {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.brand-tagline-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.brand-categories-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cat-dot {
  color: rgba(255, 255, 255, 0.25);
}

/* Quick Circular Actions */
.quick-circle-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
}

.circle-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-pure-white);
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
}

.circle-action-btn .tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #0B140E;
  color: var(--text-pure-white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.circle-action-btn:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.circle-action-btn.wa-circle:hover {
  background: #25D366;
  color: #000;
  border-color: #25D366;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.circle-action-btn.insta-circle:hover {
  background: var(--color-accent-insta-gradient);
  color: #FFF;
  border-color: transparent;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.circle-action-btn.phone-circle:hover {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 255, 135, 0.4);
}

.circle-action-btn.share-circle:hover,
.circle-action-btn.qr-circle:hover {
  background: rgba(96, 239, 255, 0.2);
  color: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(96, 239, 255, 0.3);
}

/* Bio / Overview Box */
.exec-overview-box {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 135, 0.12);
  border-left: 3px solid var(--color-primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.exec-bio-quote {
  font-size: 0.94rem;
  color: var(--text-main);
  line-height: 1.65;
  position: relative;
}

.quote-icon {
  color: var(--color-primary);
  opacity: 0.4;
  margin-right: 6px;
}

/* Hero CTA Group */
.exec-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

/* Hero Right Column: Official Channels */
.exec-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channels-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.micro-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  display: block;
}

.channels-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.verified-badge-pill {
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.25);
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Channel Cards */
.channels-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 135, 0.14);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-main);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.channel-card:hover {
  background: rgba(0, 255, 135, 0.08);
  border-color: var(--color-primary);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 255, 135, 0.18);
}

.channel-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.channel-insta .channel-icon-box {
  background: rgba(225, 48, 108, 0.15);
  color: #FF5E97;
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.channel-wa .channel-icon-box {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.channel-phone .channel-icon-box {
  background: rgba(0, 255, 135, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(0, 255, 135, 0.3);
}

.channel-franchise .channel-icon-box {
  background: rgba(251, 191, 36, 0.15);
  color: var(--color-accent-amber);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.channel-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.channel-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text-pure-white);
}

.channel-action-hint {
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 600;
}

.channel-tag-status {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.channel-tag-status.gold-tag {
  background: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
}

.channel-handle {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-main);
}

.channel-subtext {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Metrics Row */
.exec-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.metric-card {
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 135, 0.14);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform var(--transition-fast);
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.metric-number {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bottom Strip in Card */
.card-footer-strip {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.strip-item i {
  color: var(--color-primary);
}

/* ------------------ SECTION HEADERS ------------------ */
.section-header {
  max-width: 780px;
  margin: 0 auto 55px auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-pure-white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ------------------ SECTION 2: PILLARS GRID (ABOUT) ------------------ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
}

.featured-pillar {
  border-color: rgba(0, 255, 135, 0.45);
  background: linear-gradient(160deg, rgba(16, 35, 24, 0.8) 0%, rgba(8, 16, 11, 0.85) 100%);
}

.pillar-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--color-primary);
  color: #031307;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
}

.pillar-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: rgba(0, 255, 135, 0.12);
  border: 1px solid rgba(0, 255, 135, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.15);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.pillar-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pillar-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pillar-highlights li {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-highlights i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

/* ------------------ SECTION 3: SERVICES GRID ------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 135, 0.18);
}

.service-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--color-primary);
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-accent-blue);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 16px 0;
}

.service-bullets li {
  font-size: 0.82rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.service-bullets i {
  color: var(--color-primary);
  margin-top: 3px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.service-bullets strong {
  color: var(--text-pure-white);
}

.service-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-action-link:hover {
  gap: 12px;
  color: #60EFFF;
}

/* ------------------ SECTION 4: MOSAIC GALLERY ------------------ */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mosaic-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.mosaic-large {
  grid-column: span 2;
}

.mosaic-visual {
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.visual-vintage-cart {
  background: linear-gradient(180deg, rgba(6, 12, 8, 0.2) 0%, rgba(6, 12, 8, 0.95) 100%),
    radial-gradient(circle at center, #143522 0%, #060c08 80%);
}

.visual-arcade {
  background: linear-gradient(180deg, rgba(6, 12, 8, 0.2) 0%, rgba(6, 12, 8, 0.95) 100%),
    radial-gradient(circle at center, #0e3d48 0%, #060c08 80%);
}

.visual-mojitos {
  background: linear-gradient(180deg, rgba(6, 12, 8, 0.2) 0%, rgba(6, 12, 8, 0.95) 100%),
    radial-gradient(circle at center, #352514 0%, #060c08 80%);
}

.mosaic-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mosaic-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(0, 255, 135, 0.15);
  border: 1px solid rgba(0, 255, 135, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.mosaic-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.mosaic-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mosaic-highlight {
  background: linear-gradient(145deg, rgba(225, 48, 108, 0.15) 0%, rgba(11, 20, 14, 0.85) 100%);
  border-color: rgba(225, 48, 108, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  text-align: center;
}

.mosaic-insta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.insta-icon-large {
  font-size: 2.8rem;
  background: var(--color-accent-insta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insta-follow-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.insta-handle-pill {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 255, 135, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 255, 135, 0.25);
}

.insta-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* ------------------ SECTION 5: EXECUTIVE HUB ------------------ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hub-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.hub-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.hub-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.hub-wa-bg {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.hub-phone-bg {
  background: rgba(0, 255, 135, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(0, 255, 135, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.2);
}

.hub-insta-bg {
  background: rgba(225, 48, 108, 0.15);
  color: #FF5E97;
  border: 1px solid rgba(225, 48, 108, 0.3);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.2);
}

.hub-loc-bg {
  background: rgba(96, 239, 255, 0.15);
  color: var(--color-accent-blue);
  border: 1px solid rgba(96, 239, 255, 0.3);
  box-shadow: 0 0 20px rgba(96, 239, 255, 0.2);
}

.hub-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.hub-card-number {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hub-card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.btn-hub {
  width: 100%;
  margin-top: auto;
  padding: 10px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
}

.btn-hub-wa {
  background: #25D366;
  color: #000;
  font-weight: 700;
}

.btn-hub-wa:hover {
  background: #1ebd56;
  color: #000;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-hub-phone {
  background: var(--color-primary);
  color: #000;
  font-weight: 700;
}

.btn-hub-phone:hover {
  background: #00e077;
  color: #000;
  box-shadow: 0 6px 20px rgba(0, 255, 135, 0.4);
}

.btn-hub-insta {
  background: var(--color-accent-insta-gradient);
  color: #FFF;
  font-weight: 700;
}

.btn-hub-insta:hover {
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.btn-hub-loc {
  background: rgba(96, 239, 255, 0.15);
  border: 1px solid var(--color-accent-blue);
  color: var(--color-accent-blue);
}

.btn-hub-loc:hover {
  background: var(--color-accent-blue);
  color: #000;
}

/* ------------------ SECTION 6: CONTACT & INQUIRY FORM ------------------ */
.contact-wrapper {
  padding: 50px 44px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-pure-white);
  line-height: 1.2;
}

.contact-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.meta-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.meta-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meta-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-pure-white);
  text-decoration: none;
}

.meta-val.link-hover:hover {
  color: var(--color-primary);
}

.hours-badge {
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}

.hours-badge i {
  color: var(--color-accent-amber);
  font-size: 1.4rem;
}

.hours-badge div {
  display: flex;
  flex-direction: column;
}

/* Contact Form Column */
.contact-form-col {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-header {
  margin-bottom: 22px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.form-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.required {
  color: #FF5E97;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--color-primary);
  font-size: 0.95rem;
  pointer-events: none;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px 12px 44px;
  color: var(--text-pure-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.textarea-wrapper .input-icon {
  top: 14px;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  background: rgba(0, 255, 135, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.2);
}

.form-select option {
  background: #0B140E;
  color: #FFF;
}

.btn-submit {
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
}

.form-feedback {
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid #25D366;
}

.form-feedback.error {
  display: block;
  background: rgba(255, 94, 151, 0.15);
  color: #FF5E97;
  border: 1px solid #FF5E97;
}

/* ------------------ BIG CTA BANNER ROW ------------------ */
.cta-banner-section {
  padding: 30px 0 60px 0;
}

.cta-banner-card {
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.15) 0%, rgba(8, 16, 11, 0.95) 100%);
  border-color: rgba(0, 255, 135, 0.35);
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-pure-white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-banner-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ------------------ CORPORATE FOOTER ------------------ */
.corporate-footer {
  background: #040805;
  border-top: 1px solid rgba(0, 255, 135, 0.15);
  padding: 70px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.micro-logo {
  width: 36px;
  height: 36px;
}

.micro-logo .brand-svg-logo {
  width: 24px;
  height: 24px;
}

.footer-brand-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

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

.footer-soc-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-soc-link:hover {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--color-primary);
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-icon {
  color: var(--color-primary);
  margin-top: 4px;
}

.footer-contact-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom strong {
  color: var(--text-main);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ------------------ FLOATING ACTION BUTTONS (FAB) ------------------ */
.floating-fab-group {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-smooth);
  position: relative;
}

.fab-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.fab-phone {
  background: var(--color-primary);
  color: #031307;
  font-size: 1.25rem;
}

.fab-btn:hover {
  transform: scale(1.12) rotate(6deg);
}

.fab-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: fabPulse 2s infinite;
  z-index: -1;
}

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

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

/* ------------------ MODALS SYSTEM ------------------ */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  width: 100%;
  max-width: 440px;
  background: #0B140E;
  border: 1px solid var(--glass-border-hover);
  padding: 30px;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-card-large {
  max-width: 520px;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-pure-white);
}

.modal-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.close-modal-btn {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-pure-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.qr-code-frame {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px auto;
  border-radius: var(--radius-md);
  padding: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

.qr-code-svg {
  width: 100%;
  height: 100%;
}

.qr-instruction {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-quick-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.quick-modal-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid var(--glass-border);
}

.tile-wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

.tile-phone {
  background: rgba(0, 255, 135, 0.1);
  color: var(--color-primary);
  border-color: rgba(0, 255, 135, 0.3);
}

.quick-modal-tile strong {
  display: block;
  font-size: 0.85rem;
  color: #FFF;
}

.quick-modal-tile span {
  font-size: 0.72rem;
  opacity: 0.8;
}

.modal-divider-text {
  text-align: center;
  position: relative;
  margin: 18px 0;
}

.modal-divider-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.modal-divider-text span {
  position: relative;
  background: #0B140E;
  padding: 0 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #0B140E;
  border: 1px solid var(--color-primary);
  color: var(--text-pure-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 255, 135, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast i {
  color: var(--color-primary);
}

@keyframes toastIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------ 3D SIGNATURE DRINK SHOWCASE SECTION ------------------ */

.products-showcase-section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

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

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(14, 28, 19, 0.8) 0%, rgba(6, 12, 8, 0.92) 100%);
  border: 1px solid rgba(0, 255, 135, 0.22);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 135, 0.08);
  transition: all var(--transition-smooth);
  overflow: hidden;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 255, 135, 0.35);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 255, 135, 0.15) 0%, rgba(6, 12, 8, 0.9) 75%);
  border: 1px solid rgba(0, 255, 135, 0.2);
  margin-bottom: 18px;
}

.product-render-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-floating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 255, 135, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 135, 0.4);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.emerald-badge {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10B981;
  color: #34D399;
}

.blue-badge {
  background: rgba(96, 239, 255, 0.2);
  border-color: #60EFFF;
  color: #60EFFF;
}

.gold-badge {
  background: rgba(251, 191, 36, 0.2);
  border-color: #FBBF24;
  color: #FBBF24;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.product-tags-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-blue);
  background: rgba(96, 239, 255, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(96, 239, 255, 0.2);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure-white);
  line-height: 1.25;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.product-action-row {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  width: 100%;
}

/* ------------------ RESPONSIVE BREAKPOINTS ------------------ */
@media (max-width: 1100px) {
  .executive-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

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

  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .btn-text-desktop {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .cta-banner-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 72px;
  }

  .logo-icon-wrapper {
    width: 52px;
    height: 52px;
    padding: 2px;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-glass-wa {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius-md);
  }

  #open-inquiry-btn {
    padding: 9px 15px;
    font-size: 0.82rem;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .brand-title {
    font-size: 1.75rem;
  }

  .product-cards-grid {
    grid-template-columns: 1fr;
  }

  .executive-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .badge-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .status-pill,
  .location-pill {
    font-size: 0.76rem;
    padding: 5px 12px;
  }

  .exec-metrics-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .card-footer-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    padding: 12px 14px;
  }

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

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

  .footer-brand-col {
    grid-column: span 1;
  }

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

  .modal-quick-contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 66px;
  }

  .logo-icon-wrapper {
    width: 46px;
    height: 46px;
    padding: 2px;
  }

  .brand-svg-logo {
    width: 32px;
    height: 32px;
  }

  #open-inquiry-btn {
    padding: 7px 12px;
    font-size: 0.76rem;
  }

  #open-inquiry-btn i {
    display: none;
  }

  .btn-glass-wa {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
  }

  .executive-card {
    padding: 20px 14px;
  }

  .emblem-identity-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-emblem-crystal {
    width: 72px;
    height: 72px;
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .brand-tagline-text {
    font-size: 0.9rem;
  }

  .quick-circle-actions {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .circle-action-btn {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
    flex-shrink: 0;
  }

  .exec-bio-quote {
    font-size: 0.86rem;
  }

  .exec-cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .exec-cta-group .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    padding: 12px 20px;
  }

  .channels-heading {
    font-size: 1.15rem;
  }

  .channel-card {
    padding: 12px 14px;
    gap: 12px;
  }

  .channel-icon-box {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .channel-title {
    font-size: 0.95rem;
  }

  .channel-handle {
    font-size: 0.8rem;
  }

  .metric-card {
    padding: 10px 6px;
  }

  .metric-number {
    font-size: 1.15rem;
  }

  .metric-label {
    font-size: 0.68rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }

  .floating-actions {
    bottom: 16px;
    right: 14px;
    gap: 10px;
  }

  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}