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

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
  --color-primary: #0088FF;      /* Sky Blue */
  --color-primary-dark: #00d2ff; /* Neon Aqua Blue */
  --color-secondary: #00D2FF;    /* Aqua Blue */
  --color-accent: #38bdf8;       /* Vibrant Cyan */
  
  --color-text-dark: #f8fafc;    /* Pure Off-White */
  --color-text-light: #94a3b8;   /* Slate Cool Silver */
  
  --color-bg-white: #020813;     /* Deep Space Blue-Black */
  --color-bg-light-blue: #041026;/* Saturated Dark Navy */
  --color-bg-light-grey: #051430;/* Saturated Mid-Dark Navy */
  
  --font-main: 'Poppins', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
  --border-radius-pill: 50px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 20px -5px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 30px -8px rgba(0, 0, 0, 0.5), 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light-grey);
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ==========================================================================
   Typography & Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

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

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

/* Waves */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 10;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-divider-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 10;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.wave-divider-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Water Droplet Elements */
.water-droplet {
  position: absolute;
  background: rgba(0, 180, 255, 0.12);
  border-radius: 50% 0 50% 50%;
  transform: rotate(-45deg);
  pointer-events: none;
  z-index: 1;
  animation: floatDroplet 8s ease-in-out infinite;
}
.drop-1 { width: 36px; height: 36px; top: 12%; left: 8%; animation-delay: 0s; }
.drop-2 { width: 20px; height: 20px; top: 60%; left: 4%; animation-delay: 2s; }
.drop-3 { width: 28px; height: 28px; top: 22%; right: 10%; animation-delay: 4.5s; }

@keyframes floatDroplet {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50% { transform: translateY(-15px) rotate(-40deg); }
}

/* ==========================================================================
   Header / Sticky Navigation
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 8, 19, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 74, 215, 0.12);
  border: 2.5px solid #ffffff;
  transition: var(--transition-smooth);
}

.scrolled .logo-img {
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 8px rgba(0, 74, 215, 0.08);
}

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

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--color-primary), var(--color-accent), var(--color-primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoFlow 6s ease infinite;
  line-height: 1.1;
  letter-spacing: 0.5px;
  display: block !important;
  white-space: nowrap !important;
}

@keyframes logoFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  display: block !important;
  white-space: nowrap !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

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

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

.btn-get-touch {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-bg-white);
  padding: 10px 22px;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 86, 214, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-get-touch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-get-touch:hover::before {
  left: 150%;
}

.btn-get-touch:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 86, 214, 0.25);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* ==========================================================================
   Mobile Navigation Drawer (Drawer Sidebar)
   ========================================================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 86, 214, 0.25);
  backdrop-filter: blur(4px);
  z-index: 1005;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100vh;
  background: var(--color-bg-white);
  z-index: 1010;
  box-shadow: -10px 0 30px rgba(0, 86, 214, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: var(--transition-smooth);
}
.mobile-nav.open {
  right: 0;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  display: block;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Home Page Sections
   ========================================================================== */

/* Hero */
/* Hero */
.hero {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(10, 88, 202, 0.25) 0%, rgba(4, 16, 38, 0.95) 45%, #020813 100%);
  position: relative;
  overflow: hidden;
  padding: 30px 0 100px 0;
}

/* Dotted Grid Pattern on Top Left */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(rgba(0, 86, 214, 0.08) 12%, transparent 13%);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

/* Background Wave Curves */
.hero-bg-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-bg-waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Glass Teardrop */
.hero-teardrop-wrapper {
  position: absolute;
  top: 25%;
  right: 14%;
  width: 110px;
  z-index: 2;
  opacity: 0.85;
  animation: floatDroplet 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0, 86, 214, 0.12));
}

@keyframes floatDroplet {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.03); }
}

/* Light Glow Spots */
.glow-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
.spot-1 {
  width: 320px;
  height: 320px;
  background: rgba(0, 180, 255, 0.22);
  top: 10%;
  right: 15%;
}
.spot-2 {
  width: 260px;
  height: 260px;
  background: rgba(0, 86, 214, 0.12);
  bottom: 15%;
  left: 5%;
}

/* Water Ripples Background */
.ripple-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ripple-circle {
  position: absolute;
  border: 1px solid rgba(0, 136, 255, 0.08);
  border-radius: 50%;
  animation: rippleAnim 12s linear infinite;
  opacity: 0;
}
.rip-1 { width: 220px; height: 220px; animation-delay: 0s; }
.rip-2 { width: 440px; height: 440px; animation-delay: 4s; }
.rip-3 { width: 660px; height: 660px; animation-delay: 8s; }

@keyframes rippleAnim {
  0% { transform: scale(0.5); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.5; }
  100% { transform: scale(1.5); border-color: rgba(0, 180, 255, 0); opacity: 0; }
}

/* Water Bubbles (Glassmorphism & Depth) */
.water-bubble {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(0, 180, 255, 0.15) 80%, rgba(255, 255, 255, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.3), inset 0 -4px 8px rgba(0, 86, 214, 0.08), 0 8px 16px rgba(0, 86, 214, 0.04);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 2;
  animation: floatBubble 10s ease-in-out infinite;
}
.bubble-1 { width: 45px; height: 45px; top: 25%; left: 20%; animation-delay: 0s; }
.bubble-2 { width: 28px; height: 28px; top: 70%; left: 40%; animation-delay: 3s; }
.bubble-3 { width: 60px; height: 60px; top: 45%; right: 25%; animation-delay: 1.5s; }
.bubble-4 { width: 35px; height: 35px; top: 80%; right: 15%; animation-delay: 5s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 620px;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-secondary) 40%, var(--color-accent) 85%, var(--color-primary) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTextFlow 8s ease infinite;
  margin-bottom: 24px;
}

@keyframes heroTextFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 13px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-blue {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 86, 214, 0.15);
}

.btn-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-blue:hover::before {
  left: 150%;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 214, 0.25);
}

.btn-hollow {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-hollow:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 440px;
  animation: floatBottle 6s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.hero-splash-bg-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 155%;
  height: 155%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  animation: splashEntrance 1.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-splash-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(1.1);
  mix-blend-mode: screen;
}

@keyframes splashEntrance {
  0% {
    transform: translate(-50%, -40%) scale(0.85);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.85;
  }
}

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

/* Glassmorphic Value Propositions Card */
.hero-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(3, 15, 38, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-lg);
  padding: 24px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), inset 0 4px 10px rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  z-index: 5;
  position: relative;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 16px;
  padding: 0 20px;
}

.hero-stat-item:not(:last-child) {
  border-right: 1.5px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 86, 214, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: inset 0 2px 5px rgba(0, 86, 214, 0.05);
  flex-shrink: 0;
}

.hero-stat-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 2px;
  line-height: 1.2;
}

.hero-stat-item p {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.2;
}

/* Certifications Section */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.cert-card {
  background: var(--color-bg-white);
  border: 1.5px solid rgba(10, 88, 202, 0.06);
  border-radius: var(--border-radius-md);
  padding: 35px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 74, 215, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 88, 202, 0.15);
}

.cert-card:hover::before {
  background: var(--color-secondary);
}

.cert-card.highlight {
  border-color: rgba(10, 88, 202, 0.15);
  background: linear-gradient(180deg, var(--color-bg-white) 60%, var(--color-bg-light-blue) 100%);
  box-shadow: 0 12px 30px rgba(0, 74, 215, 0.05);
}

.cert-card.highlight::before {
  background: var(--color-primary);
}

.cert-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(10, 88, 202, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.cert-card:hover .cert-icon-wrapper {
  background: var(--color-primary);
  color: var(--color-bg-white);
  transform: scale(1.1);
}

.cert-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}

.cert-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cert-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-secondary);
  background: rgba(0, 136, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Home Brands */
.home-brands {
  background: var(--color-primary);
  color: var(--color-bg-white);
  padding: 120px 0 160px 0;
  text-align: center;
  position: relative;
}

.home-brands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.brands-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.home-brands h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-bg-white);
}

.brands-divider {
  width: 50px;
  height: 2px;
  background: var(--color-bg-white);
  margin: 0 auto 20px auto;
  opacity: 0.6;
}

.brands-desc {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.brands-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

/* Flowing Water Wave Animation */
.flowing-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.flowing-waves svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  display: block;
}

.flowing-waves .wave1 {
  animation: waveMovement 22s linear infinite;
  opacity: 0.8;
}

.flowing-waves .wave2 {
  animation: waveMovement 14s linear infinite;
  opacity: 0.45;
  bottom: 3px;
}

.flowing-waves .wave3 {
  animation: waveMovement 9s linear infinite;
  opacity: 0.25;
  bottom: 6px;
}

@keyframes waveMovement {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-panel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  padding: 45px 30px;
  transition: var(--transition-smooth);
}

.brand-panel-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.brand-badge-circle {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
  overflow: hidden;
  border: 4px solid #ffffff;
}

.noor-dhara-badge {
  background: var(--color-bg-white);
}

.noor-dhara-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.go-flow-badge {
  background: var(--color-bg-white);
}

.go-flow-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-panel-card:hover .brand-badge-circle {
  transform: scale(1.08) rotate(5deg);
}

.brand-panel-card h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-bg-white);
}

.brand-panel-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.btn-white-hollow {
  border: 2px solid var(--color-bg-white);
  color: var(--color-bg-white);
  padding: 10px 24px;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
}

.btn-white-hollow:hover {
  background: var(--color-bg-white);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Why Choose Us Section */
.home-why {
  background: var(--color-bg-white);
  padding: 100px 0;
}

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

.why-header h2 {
  font-size: 2.25rem;
  color: var(--color-text-dark);
}

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

.why-5-card {
  background: var(--color-bg-light-grey);
  border: 1px solid rgba(0, 86, 214, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.why-5-card:hover {
  background: var(--color-bg-white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 86, 214, 0.12);
}

.why-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--color-primary);
  font-size: 1.35rem;
  background: transparent;
  transition: var(--transition-smooth);
}

.why-5-card:hover .why-circle-icon {
  background: var(--color-primary);
  color: var(--color-bg-white);
  transform: rotate(360deg);
}

.why-5-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.why-5-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   Subpages Banners
   ========================================================================== */
.page-banner {
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 255, 0.16) 0%, rgba(0, 86, 214, 0.08) 35%, rgba(255, 255, 255, 0) 70%),
              linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-light-blue) 100%);
  color: var(--color-primary-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 86, 214, 0.05);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(rgba(0, 86, 214, 0.08) 12%, transparent 13%);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(15deg);
  width: 320px;
  height: 320px;
  background-image: url('assets/water_splash_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.26;
  mix-blend-mode: multiply;
  z-index: 1;
}

.page-banner h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-secondary) 40%, var(--color-accent) 85%, var(--color-primary) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTextFlow 8s ease infinite;
  position: relative;
  z-index: 5;
}

.page-breadcrumbs {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  position: relative;
  z-index: 5;
}

.page-breadcrumbs a {
  color: var(--color-primary-dark);
}

/* ==========================================================================
   About Page Components
   ========================================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.about-showcase-img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.vision-mission-card {
  background: var(--color-bg-light-grey);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--border-radius-sm);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.vision-mission-card.vision {
  border-left-color: var(--color-accent);
}

.vision-mission-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.about-core-values {
  margin-top: 80px;
  text-align: center;
}

.about-core-values h2 {
  margin-bottom: 40px;
}

.values-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.val-card {
  flex: 1 1 200px;
  max-width: 220px;
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 86, 214, 0.08);
  border-radius: var(--border-radius-md);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.val-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 86, 214, 0.15);
}

.val-card i {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.val-card h4 {
  font-size: 1.1rem;
}

/* ==========================================================================
   Brands Page Components
   ========================================================================== */
.brand-identity-block {
  padding: 80px 0;
  position: relative;
}

.brand-identity-block:nth-child(even) {
  background-color: var(--color-bg-light-blue);
}

.brand-identity-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.brand-identity-grid.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.brand-identity-image {
  display: flex;
  justify-content: center;
}

.brand-identity-image img {
  max-width: 320px;
}

.brand-identity-content {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 86, 214, 0.08);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.brand-identity-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.brand-identity-badge img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.brand-identity-badge h2 {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.brand-identity-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.brand-size-section h4 {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.brand-size-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-size-tag {
  background: var(--color-bg-light-grey);
  border: 1px solid rgba(0, 86, 214, 0.08);
  padding: 8px 18px;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   Products Page Components
   ========================================================================== */
.product-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.filter-tab-btn {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--border-radius-pill);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
  background: var(--color-primary);
  color: var(--color-bg-white);
}

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

.catalog-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 86, 214, 0.06);
  border-radius: var(--border-radius-md);
  padding: 35px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 86, 214, 0.15);
}

.catalog-img-wrapper {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.catalog-img-wrapper img {
  max-height: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 86, 214, 0.1));
  transition: var(--transition-smooth);
}

.catalog-card:hover .catalog-img-wrapper img {
  transform: scale(1.05);
}

.catalog-card .brand-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: var(--color-bg-light-blue);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 12px;
}

.catalog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.catalog-card .bottle-size {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.catalog-card .btn-enquire {
  margin-top: auto;
  width: 100%;
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* ==========================================================================
   Manufacturing Page Components
   ========================================================================== */
.mfg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mfg-image img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.mfg-timeline-title {
  text-align: center;
  margin: 80px 0 50px 0;
}

.mfg-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mfg-step-card {
  background: var(--color-bg-light-grey);
  border: 1px solid rgba(0, 86, 214, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  position: relative;
  transition: var(--transition-smooth);
}

.mfg-step-card:hover {
  background: var(--color-bg-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 86, 214, 0.12);
}

.mfg-step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0, 86, 214, 0.12);
  line-height: 1;
}

.mfg-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.mfg-step-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Quality Page Components
   ========================================================================== */
.quality-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.quality-intro h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

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

.quality-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 86, 214, 0.06);
  border-radius: var(--border-radius-md);
  padding: 35px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  text-align: center;
}

.quality-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 86, 214, 0.15);
}

.quality-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-bg-light-blue);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.quality-card:hover .quality-card-icon {
  background: var(--color-primary);
  color: var(--color-bg-white);
}

.quality-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.quality-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Why Choose Us Page Components
   ========================================================================== */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wcu-card {
  background: var(--color-bg-light-grey);
  border: 1px solid rgba(0, 86, 214, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.wcu-card:hover {
  background: var(--color-bg-white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 86, 214, 0.15);
}

.wcu-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.wcu-card:hover .wcu-card-icon {
  background: var(--color-secondary);
  color: var(--color-bg-white);
}

.wcu-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.wcu-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.wcu-channels {
  margin-top: 80px;
  background-color: var(--color-bg-light-blue);
  border-radius: var(--border-radius-md);
  padding: 60px 40px;
}

.wcu-channels-title {
  text-align: center;
  margin-bottom: 40px;
}

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

.wcu-channel-card {
  background: var(--color-bg-white);
  border-radius: var(--border-radius-sm);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.wcu-channel-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.wcu-channel-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ==========================================================================
   Gallery Page Components
   ========================================================================== */
.gallery-layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 86, 214, 0) 40%, rgba(0, 86, 214, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay-hover {
  opacity: 1;
}

.gallery-overlay-hover span {
  color: var(--color-bg-white);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ==========================================================================
   Contact Page Components
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

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

.contact-detail-card {
  background: var(--color-bg-light-grey);
  border: 1px solid rgba(0, 86, 214, 0.05);
  border-radius: var(--border-radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.contact-detail-card:hover {
  background: var(--color-bg-white);
  border-color: rgba(0, 86, 214, 0.15);
  box-shadow: var(--shadow-md);
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-light-blue);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.contact-detail-text a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-map-placeholder {
  height: 280px;
  background-color: #E2E8F0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.contact-form-card {
  background: var(--color-bg-white);
  border: 1px solid rgba(0, 86, 214, 0.08);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--color-bg-light-grey);
  color: var(--color-text-dark);
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-primary);
  background: var(--color-bg-white);
  box-shadow: 0 0 0 3px rgba(0, 86, 214, 0.15);
}

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

.form-status {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  display: none;
  font-weight: 500;
}

.form-status.success {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BCF0DA;
}

.form-status.error {
  background: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #F8D7DA;
}

/* ==========================================================================
   Call To Action (CTA) Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #00368c 0%, #0056D6 60%, #0088FF 100%);
  color: var(--color-bg-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(0, 180, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
}

.cta-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-bg-white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px auto;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-white {
  background: var(--color-bg-white);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--color-bg-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white-hollow-cta {
  border: 2px solid var(--color-bg-white);
  color: var(--color-bg-white);
}

.btn-white-hollow-cta:hover {
  background: var(--color-bg-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0B132B; /* Dark Navy */
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-logo h3 {
  font-size: 1.15rem;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-nav h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

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

.footer-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-contact-list p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.footer-contact-list a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Back To Top & Floating Buttons
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 86, 214, 0.25);
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* Floating Bottom Widgets (Mobile Only) */
.mobile-floating-widgets {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: var(--color-bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 86, 214, 0.08);
}

.mobile-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-widget-btn.whatsapp {
  background: #25D366;
  color: var(--color-bg-white);
}

.mobile-widget-btn.call {
  background: var(--color-primary);
  color: var(--color-bg-white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media screen and (max-width: 1200px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  
  .why-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-catalog-grid, .mfg-timeline, .quality-grid, .gallery-layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcu-grid, .wcu-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Laptop Nav Overlap Prevent */
  .logo-img {
    width: 68px;
    height: 68px;
    border-width: 2px;
  }
  .scrolled .logo-img {
    width: 56px;
    height: 56px;
  }
  .logo-title {
    font-size: 1.02rem;
  }
  .logo-subtitle {
    font-size: 0.58rem;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
  .btn-get-touch {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .brands-panel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-intro-grid, .brand-identity-grid, .brand-identity-grid.reverse, .mfg-grid, .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .brand-identity-image {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  /* Clean Mobile Header with Hamburger Menu */
  .mobile-menu-btn {
    display: block !important;
    font-size: 1.55rem;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 1002;
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    background: rgba(10, 88, 202, 0.05);
    border: 1px solid rgba(10, 88, 202, 0.1);
  }
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2px 0;
  }
  nav, .nav-cta {
    display: none !important;
  }
  .logo-img {
    width: 96px;
    height: 96px;
    border-width: 2.5px;
  }
  .logo-title {
    font-size: 1.12rem;
  }
  .logo-subtitle {
    font-size: 0.62rem;
  }
  
  /* Shrink certifications grid to 2 columns on tablets */
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  h1, .hero-content h1, .page-banner h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .why-5-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-catalog-grid, .mfg-timeline, .quality-grid, .gallery-layout-grid {
    grid-template-columns: 1fr;
  }
  .wcu-grid, .wcu-channels-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Shrink certifications grid to 1 column on mobile */
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Shrink hero stats card on tablets */
  .hero-stats-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
    gap: 20px;
    border-radius: var(--border-radius-md);
    margin-top: 40px;
    max-width: 600px;
  }
  .hero-stat-item {
    border-right: none !important;
    padding: 0 10px;
  }
  .hero-stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  .hero-stat-item h4 {
    font-size: 0.88rem;
    line-height: 1.2;
  }
  .hero-stat-item p {
    font-size: 0.72rem;
  }
}

@media screen and (max-width: 576px) {
  h1, .hero-content h1, .page-banner h1 { font-size: 1.8rem; }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .why-5-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .logo-title {
    font-size: 1.15rem;
  }
  .logo-subtitle {
    font-size: 0.65rem;
  }
  .logo-img {
    width: 40px;
    height: 40px;
  }
  .section-padding {
    padding: 60px 0;
  }
  
  /* Scale teardrop on mobile */
  .hero-teardrop-wrapper {
    width: 70px;
    top: 15%;
    right: 5%;
  }
  
  /* Optimize hero stats card on small mobile screens */
  .hero-stats-card {
    grid-template-columns: 1fr;
    padding: 16px 20px;
    gap: 16px;
    border-radius: var(--border-radius-md);
    margin-top: 30px;
    max-width: 290px;
  }
  .hero-stat-item {
    border-right: none !important;
    padding: 0;
    justify-content: flex-start;
  }
  .hero-stat-icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .hero-stat-item h4 {
    font-size: 0.82rem;
  }
}

@media screen and (max-width: 768px) {
  /* Wave sizes */
  .wave-divider, .wave-divider-bottom {
    height: 40px;
  }
  
  /* Show bottom floating widgets */
  .mobile-floating-widgets {
    display: grid;
  }
  .footer {
    padding-bottom: 80px; /* Padding to avoid floating widget overlap */
  }
  .back-to-top {
    bottom: 70px; /* Shift up to clear floating widgets */
    left: 20px;
    right: auto;
  }
}

/* ==========================================================================
   Page Preloader (Water Drop Transition)
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-drop-wrap {
  position: relative;
  width: 120px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Falling Water Drop Animation */
.preloader-water-drop {
  width: 32px;
  height: 32px;
  border-radius: 50% 0 50% 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(10, 88, 202, 0.2);
  animation: preloaderFall 1.2s cubic-bezier(0.6, -0.28, 0.735, 0.045) infinite;
  opacity: 0;
}

/* Ripple created when drop hits bottom */
.preloader-ripple {
  position: absolute;
  bottom: 40px;
  width: 10px;
  height: 4px;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
  animation: preloaderRippleAnim 1.2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes preloaderFall {
  0% {
    transform: translateY(-120px) rotate(-45deg) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: translateY(30px) rotate(-45deg) scale(1);
    opacity: 1;
  }
  65% {
    transform: translateY(40px) rotate(-45deg) scaleY(0.65) scaleX(1.3);
    opacity: 0.9;
  }
  70% {
    transform: translateY(40px) rotate(-45deg) scale(0);
    opacity: 0;
  }
  100% {
    transform: translateY(40px) rotate(-45deg) scale(0);
    opacity: 0;
  }
}

@keyframes preloaderRippleAnim {
  0%, 55% {
    width: 10px;
    height: 4px;
    opacity: 0;
    transform: scale(1);
  }
  60% {
    opacity: 0.8;
  }
  100% {
    width: 140px;
    height: 48px;
    opacity: 0;
    transform: scale(1.4);
    border-color: rgba(0, 136, 255, 0);
  }
}

/* ==========================================================================
   Hero Falling Rain Water Droplets Animation (Professional Style)
   ========================================================================== */
.falling-rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.rain-drop {
  position: absolute;
  top: -45px;
  width: 18px;
  height: 24px;
  animation: fallRain 4.5s linear infinite;
  opacity: 0;
}

@keyframes fallRain {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 0.95;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(105vh);
    opacity: 0;
  }
}

.drop-1 { left: 6%; animation-delay: 0.1s; animation-duration: 4.8s; }
.drop-2 { left: 18%; animation-delay: 1.8s; animation-duration: 5.6s; }
.drop-3 { left: 32%; animation-delay: 0.6s; animation-duration: 4.2s; }
.drop-4 { left: 44%; animation-delay: 2.9s; animation-duration: 5.9s; }
.drop-5 { left: 56%; animation-delay: 1.2s; animation-duration: 3.9s; }
.drop-6 { left: 67%; animation-delay: 3.4s; animation-duration: 5.2s; }
.drop-7 { left: 79%; animation-delay: 0.4s; animation-duration: 4.6s; }
.drop-8 { left: 88%; animation-delay: 2.2s; animation-duration: 3.7s; }
.drop-9 { left: 95%; animation-delay: 1.5s; animation-duration: 5.4s; }
.drop-10 { left: 14%; animation-delay: 4.1s; animation-duration: 4.8s; }

/* ==========================================================================
   Floating Action Button (FAB) styles
   ========================================================================== */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fab-main-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(10, 88, 202, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
}

.fab-main-btn:hover {
  transform: scale(1.08);
}

.fab-container.active .fab-main-btn {
  transform: rotate(135deg);
  background: var(--color-primary-dark);
}

.fab-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s;
}

.fab-container.active .fab-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.fab-option-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
}

.fab-option-btn:hover {
  transform: scale(1.1);
}

.fab-option-btn.instagram {
  color: #E1306C;
}
.fab-option-btn.instagram:hover {
  background: #E1306C;
  color: #ffffff;
}

.fab-option-btn.facebook {
  color: #1877F2;
}
.fab-option-btn.facebook:hover {
  background: #1877F2;
  color: #ffffff;
}

.fab-option-btn.whatsapp {
  color: #25D366;
}
.fab-option-btn.whatsapp:hover {
  background: #25D366;
  color: #ffffff;
}

.fab-option-btn.phone {
  color: var(--color-primary);
}
.fab-option-btn.phone:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.fab-option-btn.email {
  color: #ea4335;
}
.fab-option-btn.email:hover {
  background: #ea4335;
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .fab-container {
    bottom: 80px;
    right: 20px;
    z-index: 999999 !important;
  }
}

/* ==========================================================================
   Hero Graphic Additions (Podium, Circle Glow, Corner Leaves)
   ========================================================================== */
.hero-glow-circle {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.16) 0%, rgba(10, 88, 202, 0.04) 50%, transparent 70%);
  border: 2px dashed rgba(0, 210, 255, 0.35);
  z-index: 1;
  pointer-events: none;
  animation: rotateGlow 35s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-podium {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 45px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.podium-layer-top {
  width: 320px;
  height: 16px;
  background: linear-gradient(180deg, #091a36 0%, #030a16 100%);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.65), inset 0 2px 4px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 4;
}

.podium-layer-bottom {
  width: 370px;
  height: 26px;
  background: linear-gradient(180deg, #0f2852 0%, #020813 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 3px rgba(255, 255, 255, 0.1);
  margin-top: -10px;
  position: relative;
  z-index: 3;
}

.hero-left-splash {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 48%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
  mix-blend-mode: screen;
  animation: splashEntrance 1.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-leaves-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 4px 10px rgba(0, 50, 0, 0.15));
}

/* Responsive tweaks for new hero items */
@media screen and (max-width: 992px) {
  .hero-glow-circle {
    width: 320px;
    height: 320px;
  }
  .hero-podium {
    width: 300px;
    bottom: -10px;
  }
  .podium-layer-top {
    width: 260px;
    height: 18px;
  }
  .podium-layer-bottom {
    width: 300px;
    height: 28px;
    margin-top: -12px;
  }
  .hero-leaves-top-right {
    width: 200px;
    height: 200px;
  }
}
