/* ==========================================
   EG GROUP Design System & Global CSS
   ========================================== */

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

:root {
  /* Fonts */
  --font-primary: 'Plus Jakarta Sans', 'Noto Sans Thai', sans-serif;
  --font-heading: 'Noto Sans Thai', 'Plus Jakarta Sans', sans-serif;

  /* Theme Colors (Default: Dark Mode / Midnight Slate with #00b8e5 & #2cebe6 Aura) */
  --bg-primary: #0a0f1d;
  --bg-secondary: #101726;
  --bg-tertiary: #182234;
  --bg-card: rgba(16, 23, 38, 0.9);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Primary Duo Color Palette: #00b8e5 (Cerulean Blue) & #2cebe6 (Aqua Cyan) */
  --color-blue: #00b8e5;           /* Primary Blue: Vivid Cerulean */
  --color-cyan: #2cebe6;           /* Primary Aqua: Electric Turquoise Cyan */
  --color-blue-cyan: #00b8e5;
  --color-blue-light: #2cebe6;     /* Bright Accent */
  --color-blue-dark: #008eb8;      /* Deep Contrast Azure */
  --color-blue-subtle: rgba(0, 184, 229, 0.14);
  --color-blue-glow: rgba(0, 184, 229, 0.42);
  --color-cyan-glow: rgba(44, 235, 230, 0.38);

  /* Modern Complementary Accents */
  --color-green: #10b981;          /* Medical / Leaf Green */
  --color-green-mint: #2cebe6;     /* Aqua Mint Tone */
  --color-green-dark: #059669;
  --color-green-subtle: rgba(44, 235, 230, 0.12);
  --color-green-glow: rgba(44, 235, 230, 0.35);

  /* Primary Color Gradients (Emphasizing #00b8e5 & #2cebe6) */
  --gradient-primary: linear-gradient(135deg, #00b8e5 0%, #2cebe6 100%);
  --gradient-cyan-emerald: linear-gradient(135deg, #00b8e5 0%, #2cebe6 65%, #10b981 100%);
  --gradient-aurora: linear-gradient(135deg, #0077a8 0%, #00b8e5 45%, #2cebe6 100%);
  --gradient-text: linear-gradient(135deg, #00b8e5 0%, #2cebe6 100%);
  --gradient-card-subtle: linear-gradient(145deg, rgba(0, 184, 229, 0.1) 0%, rgba(44, 235, 230, 0.05) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 184, 229, 0.4) 0%, rgba(44, 235, 230, 0.3) 100%);
  --color-blue-gradient: linear-gradient(135deg, #00b8e5 0%, #2cebe6 100%);
  --color-gradient-glow: rgba(0, 184, 229, 0.4);

  --color-primary: #f8fafc;        /* High-contrast text */
  --color-primary-light: #ffffff;
  --color-secondary: #00b8e5;      /* Primary Accent */
  --color-secondary-light: #2cebe6;
  --color-accent: #2cebe6;         /* Aqua Accent */
  --color-amber: #f59e0b;          /* Amber Gold */
  
  /* Modern Shadow Elevation (Borderless Design) */
  --border-color: transparent;
  --border-blue: transparent;
  --card-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.45), 0 0 15px rgba(0, 184, 229, 0.08);
  --hover-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.65), 0 0 32px rgba(0, 184, 229, 0.35), 0 0 18px rgba(44, 235, 230, 0.25);
  --nav-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --floating-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 184, 229, 0.25);
  
  /* Glassmorphism */
  --glass-bg: rgba(10, 15, 29, 0.88);
  --glass-border: transparent;
  --glass-blur: 16px;

  /* Layout */
  --nav-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
}

/* Light Mode Overrides (Day Mode with #00b8e5 & #2cebe6) */
[data-theme="light"] {
  --bg-primary: #f0f8ff;           /* Soft Ice Blue Daylight */
  --bg-secondary: #ffffff;         /* Pure White */
  --bg-tertiary: #e1f4fc;          /* Pale Aqua Mist */
  --bg-card: rgba(255, 255, 255, 0.98);
  
  --text-primary: #0f172a;         /* Deep Contrast Slate */
  --text-secondary: #334155;
  --text-muted: #64748b;
  
  --color-primary: #0f172a;
  --color-primary-light: #00b8e5;
  --color-secondary: #00b8e5;      /* Vivid Cerulean Blue */
  --color-secondary-light: #009ec4;
  --color-accent: #00b8e5;
  
  --color-blue: #00b8e5;
  --color-cyan: #2cebe6;
  --color-blue-cyan: #00b8e5;
  --color-blue-light: #00b8e5;
  --color-blue-dark: #007799;
  --color-blue-subtle: rgba(0, 184, 229, 0.1);
  --color-blue-glow: rgba(0, 184, 229, 0.25);

  --color-green: #059669;
  --color-green-mint: #10b981;
  --color-green-dark: #047857;
  --color-green-subtle: rgba(0, 184, 229, 0.08);
  --color-green-glow: rgba(0, 184, 229, 0.22);

  --gradient-primary: linear-gradient(135deg, #00b8e5 0%, #17d1cc 100%);
  --gradient-cyan-emerald: linear-gradient(135deg, #00b8e5 0%, #17d1cc 60%, #059669 100%);
  --gradient-aurora: linear-gradient(135deg, #007799 0%, #00b8e5 45%, #17d1cc 100%);
  --gradient-text: linear-gradient(135deg, #008cb0 0%, #00b8e5 60%, #0ea5e9 100%);
  --gradient-card-subtle: linear-gradient(145deg, rgba(0, 184, 229, 0.06) 0%, rgba(44, 235, 230, 0.03) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 184, 229, 0.25) 0%, rgba(44, 235, 230, 0.18) 100%);
  --color-blue-gradient: linear-gradient(135deg, #00b8e5 0%, #17d1cc 100%);
  --color-gradient-glow: rgba(0, 184, 229, 0.22);

  --border-color: transparent;
  --border-blue: transparent;
  --card-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(0, 184, 229, 0.05);
  --hover-shadow: 0 20px 40px -6px rgba(15, 23, 42, 0.14), 0 0 28px rgba(0, 184, 229, 0.22);
  --nav-shadow: 0 4px 25px rgba(15, 23, 42, 0.06);
  --floating-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: transparent;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Base Layout Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.grid {
  display: grid;
  gap: 32px;
}

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

/* Glassmorphism Card style (Borderless Elevation) */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* Modern Gradient Utility Classes */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

[data-theme="light"] .gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-badge {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.75rem;
  box-shadow: 0 4px 14px var(--color-blue-glow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gradient-glow {
  box-shadow: 0 0 25px var(--color-blue-glow), 0 0 15px var(--color-green-glow);
}

/* Navigation Header */
/* ============================================
   HEADER SYSTEM — Style 1 (Glass Dark) & Style 2 (ANGA Clean White)
   Controlled by data-header-style="1" or "2" on <header id="site-header">
   ============================================ */

/* ---- Sub-bar (hidden in style 1, visible in style 2) ---- */
.header-subbar {
  display: none;
  width: 100%;
  height: 36px;
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
}

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

.subbar-announce {
  font-size: 0.76rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
  transition: color 0.2s;
}
.subbar-announce:hover { color: #00b8e5; }

.subbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.subbar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.subbar-link:hover { color: #00b8e5; }
.subbar-link--email { display: none; } /* hide on smaller screens, shown on wide */

/* ---- Shared header wrapper ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ---- Main nav bar inside header ---- */
.header-mainbar {
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================
   STYLE 1 — Glassmorphism Dark (default)
   ========================================== */
#site-header[data-header-style="1"] {
  height: var(--nav-height);
  background: transparent;
}
#site-header[data-header-style="1"] .header-subbar {
  display: none;
}
#site-header[data-header-style="1"] .header-mainbar {
  background: transparent;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: none;
}

/* ==========================================
   STYLE 2 — ANGA Clean White (2-bar)
   ========================================== */
#site-header[data-header-style="2"] {
  height: auto;
  background: transparent;
}
#site-header[data-header-style="2"] .header-subbar {
  display: block;
}
#site-header[data-header-style="2"] .header-mainbar {
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Style 2: force light text colors in nav */
#site-header[data-header-style="2"] .header-mainbar nav a,
#site-header[data-header-style="2"] .header-mainbar .nav-actions .theme-toggle,
#site-header[data-header-style="2"] .header-mainbar .cart-trigger {
  color: #1a1a1a !important;
}
#site-header[data-header-style="2"] .header-mainbar nav a:hover {
  color: #00b8e5 !important;
}
#site-header[data-header-style="2"] .header-burger-btn {
  background: #f1f1f1 !important;
  box-shadow: none !important;
}
#site-header[data-header-style="2"] .header-burger-btn .burger-line {
  background-color: #222 !important;
}
#site-header[data-header-style="2"] .logo img {
  filter: none !important;
}

/* Style 2: hero body offset (sub-bar + main bar height) */
#site-header[data-header-style="2"] ~ * .hero,
body:has(#site-header[data-header-style="2"]) .hero {
  padding-top: calc(var(--nav-height) + 36px) !important;
}

/* Dynamic body offset helper — applied by JS */
body.header-style-2 .hero { padding-top: calc(var(--nav-height) + 36px) !important; }
body.header-style-2 { padding-top: calc(var(--nav-height) + 36px); }
body.header-style-1 { padding-top: var(--nav-height); }

/* Responsive: hide email on medium screens */
@media (max-width: 1100px) {
  .subbar-link--email { display: none; }
}
@media (max-width: 768px) {
  .subbar-contacts { gap: 12px; }
  .subbar-announce { font-size: 0.7rem; max-width: 55%; }
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

/* Left portion: burger button and logo */
.nav-left-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-burger-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1060;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

[data-theme="light"] .header-burger-btn {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.header-burger-btn:hover {
  background: var(--color-blue-gradient);
  box-shadow: 0 6px 20px var(--color-blue-glow);
}

.header-burger-btn .burger-line {
  width: 18px;
  height: 1.5px;
  background-color: var(--text-primary);
  display: block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
  background-color: #ffffff;
}

.header-burger-btn.active .burger-line:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
  background-color: #ffffff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary-light);
  letter-spacing: -0.01em;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo span {
  color: var(--color-secondary);
  font-weight: 700;
}

/* Center portion: pill menu (desktop) */
@media (min-width: 769px) {
  nav {
    background-color: rgba(16, 23, 38, 0.75);
    border: none;
    border-radius: 100px;
    padding: 8px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
  }

  [data-theme="light"] nav {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  }
  
  nav:hover {
    box-shadow: 0 8px 30px var(--color-blue-glow);
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

nav ul li a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  opacity: 0.85;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 4px 0;
}

nav ul li a:hover {
  color: var(--color-blue-light);
  opacity: 1;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue-gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px var(--color-blue-glow);
}

nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

[data-theme="light"] .cart-trigger {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.cart-trigger:hover {
  background-color: rgba(2, 132, 199, 0.15);
  box-shadow: 0 6px 18px var(--color-blue-glow);
}

.cart-bag-icon {
  stroke: var(--text-primary);
  transition: stroke 0.3s ease;
}

.cart-trigger:hover .cart-bag-icon {
  stroke: var(--color-blue-light);
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--color-blue-gradient);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 8px var(--color-blue-glow);
}

/* Custom Buttons with Ohio Micro-animations (Borderless Elevation) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px; /* Pill-shaped */
  font-weight: 500;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s ease;
  border: none;
  outline: none;
  background-color: transparent;
}

.btn:active {
  transform: scale(0.96);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-light);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 20px var(--color-blue-glow), 0 2px 10px var(--color-green-glow);
}

.btn-primary::before {
  background-color: #ffffff; /* Slides white background */
}

.btn-primary:hover {
  color: #0f172a; /* Dark text on white hover */
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.45), 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-secondary::before {
  background: var(--gradient-primary);
}

.btn-secondary:hover {
  color: #ffffff;
  box-shadow: 0 6px 20px var(--color-blue-glow);
}

.btn-outline {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-outline::before {
  background: var(--gradient-primary);
}

.btn-outline:hover {
  color: #ffffff;
  box-shadow: 0 6px 20px var(--color-blue-glow);
}

/* Theme Toggle Button (Day / Night Switcher) */
.theme-toggle {
  background-color: rgba(255, 255, 255, 0.04);
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .theme-toggle {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-blue-dark);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.theme-toggle:hover {
  background: var(--gradient-primary);
  color: #ffffff !important;
  transform: rotate(20deg) scale(1.08);
  box-shadow: 0 6px 20px var(--color-blue-glow), 0 0 12px var(--color-green-glow);
}

.theme-toggle .theme-icon-svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle:hover .theme-icon-svg {
  stroke: #ffffff;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
  background-image: radial-gradient(circle at 50% 18%, rgba(0, 184, 229, 0.22) 0%, rgba(44, 235, 230, 0.12) 30%, transparent 75%);
  border-bottom: none;
}

[data-theme="light"] .hero {
  background-image: radial-gradient(circle at 50% 18%, rgba(0, 184, 229, 0.12) 0%, rgba(44, 235, 230, 0.08) 30%, transparent 75%);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto 24px auto;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Hero Badge Pill — Ohio Style (clickable link with inner badge) */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background-color: var(--color-blue-subtle);
  border: none;
  border-radius: 100px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.15);
}

.hero-badge-pill:hover {
  background-color: rgba(2, 132, 199, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-blue-glow), 0 0 16px var(--color-green-glow);
}

.hero-badge-pill .badge-inner {
  display: inline-block;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.4);
}

.hero-badge-pill svg {
  opacity: 0.7;
  color: var(--color-blue-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-badge-pill:hover svg {
  opacity: 1;
  transform: translateX(3px);
  color: var(--color-green-mint);
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px auto;
}

/* Ohio CTA Buttons */
.btn-ohio-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--color-blue-glow), 0 2px 10px var(--color-green-glow);
}

.btn-ohio-primary:hover {
  background: #ffffff;
  color: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--color-blue-glow), 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-ohio-primary:active {
  transform: scale(0.97);
}

.btn-ohio-primary .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-ohio-flat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 100px;
  background-color: transparent;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  text-decoration: none;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

.btn-ohio-flat::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 24px;
  right: 24px;
  height: 1px;
  background-color: var(--text-primary);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.btn-ohio-flat:hover {
  color: var(--color-blue-light);
}

.btn-ohio-flat:hover::after {
  background-color: var(--color-blue-light);
  opacity: 0.8;
}

/* Lifecycle Note */
.hero-lifecycle-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-top: 8px;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

/* Ohio Showcase Slider (Image-only Carousel like Ohio landing page) */
.ohio-showcase-slider {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background-color: var(--bg-secondary);
  aspect-ratio: 16 / 9;
}

.ohio-showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ohio-showcase-track .showcase-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.ohio-showcase-track .showcase-slide.active {
  opacity: 1;
  z-index: 2;
}

.ohio-showcase-track .showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   Dual CTA Promo Banner Slider
   Colors: #00b8e5 (Cerulean) & #2cebe6 (Aqua)
   ============================================ */
/* ============================================
   ANGA-Style Image + Card Slider
   ============================================ */

/* Section wrapper */
.anga-slider-section {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 48px auto 80px auto;
  /* NO padding here — arrows use absolute positioning */
  overflow: visible;
}

/* Viewport: clips slides horizontally, has side padding so photo doesn't touch edge */
.anga-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0 52px;  /* photo indent, arrows sit outside this */
  box-sizing: border-box;
}

/* Track — holds all slides side-by-side */
.anga-slider-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Individual slide */
.anga-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding-bottom to show the overlapping card below the clipping viewport */
  padding-bottom: 70px;
}

/* ---- Top: large background photo ---- */
.anga-slide-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

.anga-slide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.anga-slide:hover .anga-slide-photo img {
  transform: scale(1.04);
}

/* ---- Bottom: overlapping gradient card (sits OUTSIDE photo viewport) ---- */
.anga-slide-card {
  /* Match width to the photo (viewport has 52px padding each side = 104px total) */
  width: calc(100% - 104px - 24px);  /* photo width minus small inset for aesthetic */
  max-width: 680px;
  position: relative;
  z-index: 2;
  margin-top: -56px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  padding: 28px 36px 32px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 80, 120, 0.28);
  overflow: hidden;
}

/* Card variant 1 — Shop (cerulean blue) */
.anga-slide-card--shop {
  background: linear-gradient(135deg, #006ea3 0%, #00b8e5 55%, #2cebe6 100%);
}

/* Card variant 2 — Logistics (deep teal) */
.anga-slide-card--logistics {
  background: linear-gradient(135deg, #004d7a 0%, #0088cc 50%, #00b8e5 100%);
}

/* Subtle orb glow inside card */
.anga-slide-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(60px);
  top: -80px;
  right: -40px;
  pointer-events: none;
}

/* ---- Card content ---- */
.anga-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.anga-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.anga-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- CTA pill button (white, matching ANGA) ---- */
.anga-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 100px;
  background: #ffffff;
  color: #006ea3;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.anga-card-btn:hover {
  background: #e0f9ff;
  color: #004a70;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

/* ---- Arrow buttons (outside the viewport, on sides) ---- */
.anga-arrow {
  position: absolute;
  top: calc(50% - 28px);      /* roughly mid of photo zone */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  color: #006ea3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  z-index: 10;
}

.anga-arrow:hover {
  background: #00b8e5;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 184, 229, 0.4);
}

.anga-arrow--prev {
  left: 0;
}

.anga-arrow--next {
  right: 0;
}

/* ---- Dots ---- */
.anga-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/* reuse .promo-banner-dot styles for dots */
.promo-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 184, 229, 0.3);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.promo-banner-dot.active {
  background: var(--color-blue);
  width: 28px;
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 184, 229, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .anga-slider-section {
    padding: 0 40px;
    max-width: 98vw;
  }
  .anga-slide-card {
    width: 92%;
    padding: 22px 24px 26px 24px;
  }
}

@media (max-width: 600px) {
  .anga-slider-section {
    padding: 0 12px;
    margin: 32px auto 48px auto;
  }
  .anga-arrow {
    display: none;
  }
  .anga-slide-card {
    width: 96%;
    margin-top: -40px;
    padding: 20px 20px 24px 20px;
  }
  .anga-card-title {
    font-size: 1.35rem;
  }
  .anga-card-desc {
    font-size: 0.82rem;
  }
}




.promo-banner-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.promo-banner-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* === Banner Card Base === */
.promo-banner-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
}

/* === Banner 1: Shop / Cerulean to Aqua === */
.promo-banner-card--shop {
  background: linear-gradient(130deg, #0077a8 0%, #00b8e5 45%, #2cebe6 100%);
}

/* === Banner 2: Logistics / Aqua to Cerulean deep === */
.promo-banner-card--logistics {
  background: linear-gradient(130deg, #004466 0%, #006699 35%, #00b8e5 70%, #2cebe6 100%);
}

/* === Orb decorations === */
.promo-banner-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.22;
}

.promo-banner-bg-orb--1 {
  width: 260px;
  height: 260px;
  background: #2cebe6;
  top: -80px;
  right: 60px;
  filter: blur(60px);
}

.promo-banner-bg-orb--2 {
  width: 160px;
  height: 160px;
  background: #ffffff;
  bottom: -50px;
  left: 120px;
  filter: blur(50px);
}

.promo-banner-bg-orb--3 {
  width: 280px;
  height: 280px;
  background: #2cebe6;
  top: -100px;
  right: 40px;
  filter: blur(70px);
}

.promo-banner-bg-orb--4 {
  width: 140px;
  height: 140px;
  background: #ffffff;
  bottom: -40px;
  left: 80px;
  filter: blur(45px);
  opacity: 0.15;
}

/* === Banner Content === */
.promo-banner-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.promo-banner-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.promo-banner-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.promo-banner-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 440px;
}

/* === Banner CTA Button === */
.promo-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  background: #ffffff;
  color: #007799;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

.promo-banner-btn:hover {
  background: #00b8e5;
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.promo-banner-btn--alt {
  color: #004e66;
}

.promo-banner-btn--alt:hover {
  background: #2cebe6;
  color: #003344;
}

/* === Banner Visual Side === */
.promo-banner-visual {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.promo-banner-icon-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255,255,255,0.3);
  animation: banner-ring-pulse 3.2s ease-in-out infinite;
}

.promo-banner-icon-ring--alt {
  background: rgba(255, 255, 255, 0.15);
  animation-delay: 1.5s;
}

@keyframes banner-ring-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 0 rgba(255,255,255,0.25); }
  50% { transform: scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 0 0 12px rgba(255,255,255,0.08); }
}

.promo-banner-badge-float {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ffffff;
  color: #007799;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  animation: badge-float 3s ease-in-out infinite;
}

.promo-banner-badge-float--alt {
  color: #004466;
  animation-delay: 0.8s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* === Navigation dots === */
.promo-banner-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.promo-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 184, 229, 0.3);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.promo-banner-dot.active {
  background: var(--color-blue);
  width: 28px;
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 184, 229, 0.5);
}

/* === Arrow buttons === */
.promo-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #007799;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  z-index: 10;
}

.promo-banner-arrow:hover {
  background: #00b8e5;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 184, 229, 0.4);
}

.promo-banner-arrow--prev {
  left: -18px;
}

.promo-banner-arrow--next {
  right: -18px;
}

@media (max-width: 768px) {
  .promo-banner-arrow {
    display: none;
  }

  .promo-banner-card {
    flex-direction: column;
    padding: 36px 28px;
    text-align: center;
  }

  .promo-banner-title {
    font-size: 1.5rem;
  }

  .promo-banner-visual {
    width: 90px;
    height: 90px;
  }

  .promo-banner-icon-ring {
    width: 80px;
    height: 80px;
  }

  .promo-banner-desc {
    max-width: 100%;
  }

  .promo-banner-btn {
    width: 100%;
    justify-content: center;
  }
}



/* Floating contact buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: var(--floating-shadow);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.floating-btn.phone { background-color: var(--color-blue); }
.floating-btn.line { background-color: #06C755; }
.floating-btn.whatsapp { background-color: #25D366; }

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 240px;
  right: 38px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Hero Features Section */
.hero-features-section {
  border-bottom: none;
  background-color: var(--bg-secondary);
  padding: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-feature-col {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  border: none;
  background-color: var(--bg-tertiary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-feature-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--color-blue-glow);
}

.hero-feature-icon {
  font-size: 1.75rem;
}

.hero-feature-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.hero-feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-features-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}

/* Blueprint Grid layout */
.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background-color: transparent;
}

.blueprint-item {
  padding: 40px;
  border-radius: 24px;
  background-color: var(--bg-secondary);
  border: none;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blueprint-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  background: linear-gradient(145deg, var(--bg-secondary) 65%, rgba(2, 132, 199, 0.12) 100%);
}

.card-circle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  align-self: flex-start;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-circle-icon.green-bg {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--color-blue-glow), 0 2px 10px var(--color-green-glow);
}

.card-circle-icon.dark-bg {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.blueprint-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1;
}

[data-theme="light"] .blueprint-number {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blueprint-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-family: var(--font-primary);
}

.blueprint-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
  align-self: flex-start;
}

.card-arrow-btn svg {
  transition: transform 0.3s ease;
}

.blueprint-item:hover .card-arrow-btn {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--color-blue-glow);
}

.blueprint-item:hover .card-arrow-btn svg {
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .blueprint-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .blueprint-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Bento Services Layout */
.services-container-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  border: none;
}

.service-card-new {
  padding: 50px 40px;
  border: none;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-secondary);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
}

.service-card-new:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  background: linear-gradient(145deg, var(--bg-secondary) 75%, rgba(2, 132, 199, 0.08) 100%);
}

.service-card-new .service-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.service-card-new h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}

.service-card-new p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .services-container-grid {
    grid-template-columns: 1fr;
  }
  .service-card-new {
    padding: 40px 24px;
  }
}

/* Section Headings */
.section-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

/* Certifications styles */
.certs-section {
  background-color: var(--bg-primary);
  text-align: center;
  padding: 80px 0;
  border: none;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  border: none;
  background-color: transparent;
}

.cert-item {
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: none;
  border-radius: var(--border-radius-md);
  background-color: var(--bg-secondary);
  box-shadow: var(--card-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cert-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
}

@media (max-width: 1024px) {
  .certs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-item:last-child {
    grid-column: span 2;
  }
}

.cert-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-weight: 700;
  color: #ffffff;
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px var(--color-blue-glow), 0 2px 10px var(--color-green-glow);
}

.cert-title {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Services Presentation */
.services-section {
  background-color: var(--bg-primary);
}

.service-card {
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
}

/* Video Block */
.video-section {
  background-color: var(--bg-secondary);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16/9;
  background-color: #000000;
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  border: none;
}

/* Cart Popup Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--bg-secondary);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.5);
  z-index: 1100;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  padding: 24px;
  border-bottom: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  border-bottom: none;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-tertiary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cart-item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--bg-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-item-qty button:hover {
  background: var(--color-blue-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--color-blue-glow);
}

.cart-footer {
  padding: 24px;
  border-top: none;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-tertiary);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* First-Load Welcome Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  width: 100%;
  max-width: 550px;
  padding: 35px;
  text-align: center;
  position: relative;
  background: var(--glass-bg);
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), 0 0 30px var(--color-blue-glow);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.visible .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-primary);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.popup-close:hover {
  opacity: 1;
}

.popup-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  max-height: 280px;
  margin-bottom: 24px;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.popup-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Operations Services Section */
.operations-services-section {
  background-color: var(--bg-primary);
  padding: 40px 0;
  border: none;
  overflow: hidden;
}

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

@media (max-width: 991px) {
  .operations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.operation-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 40px;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.operation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

@media (max-width: 991px) {
  .operation-card {
    height: 400px;
  }
}

.operation-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.operation-card:hover .card-bg {
  transform: scale(1.06);
}

.operation-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.25) 100%);
  transition: background 0.5s ease;
  z-index: 2;
}

.operation-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(2, 132, 199, 0.88) 0%, rgba(10, 15, 29, 0.35) 100%);
}

.operation-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: left;
}

.operation-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-blue-light);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.operation-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
}

.operation-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 320px;
}

.operation-hover-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 300;
  box-shadow: 0 8px 24px var(--color-blue-glow), 0 0 16px var(--color-green-glow);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.operation-card:hover .operation-hover-btn {
  transform: translate(-50%, -50%) scale(1) rotate(90deg);
}

/* Exit-Intent Promo Popup */
.promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.promo-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.promo-modal {
  width: 100%;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), 0 0 30px var(--color-blue-glow);
  background: linear-gradient(135deg, var(--bg-secondary) 50%, rgba(2,132,199,0.12) 80%, rgba(16,185,129,0.06) 100%);
}

.promo-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.promo-badge {
  background-color: var(--color-amber);
  color: #000000;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* PDPA Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  padding: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-consent.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Section */
footer {
  background-color: var(--bg-secondary);
  color: #ffffff;
  padding: 60px 0 30px 0;
  border: none;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-col p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px var(--color-blue-glow), 0 0 10px var(--color-green-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border: none;
  color: #64748b;
  font-size: 0.85rem;
}

/* Products Page (shop.html) styling */
.shop-hero {
  padding: 120px 0 60px 0;
  background-color: var(--bg-tertiary);
  text-align: center;
}

.shop-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 60px 0;
}

.filter-sidebar {
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none !important;
  border-radius: var(--border-radius-md);
  box-shadow: var(--card-shadow) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow) !important;
}

.product-image {
  background-color: #ebebeb;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .product-image {
  background-color: #1a2538;
}

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

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

/* Packaging and Qty selectors inside card */
.product-meta-selectors {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 12px;
  margin: 14px 0;
  text-align: left;
}

.product-meta-selectors label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-meta-selectors input,
.product-meta-selectors select {
  width: 100%;
  padding: 8px 10px;
  background-color: var(--bg-tertiary);
  border: none;
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

.product-meta-selectors input:focus,
.product-meta-selectors select:focus {
  box-shadow: 0 0 0 3px var(--color-blue-glow), 0 4px 12px rgba(2, 132, 199, 0.25);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  background: var(--color-blue-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-blue-light);
  margin-bottom: 16px;
}

[data-theme="light"] .product-price {
  color: var(--color-blue-dark);
}

/* Contact page Form controls */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  outline: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="light"] .form-control {
  background-color: #ffffff;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
}

.form-control:focus {
  box-shadow: 0 0 0 4px var(--color-blue-glow), 0 6px 18px rgba(2, 132, 199, 0.25);
}

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

/* Mobile responsive menu */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1060;
  position: relative;
  transition: transform 0.3s ease;
}

/* Mobile adjustments (Responsive Mobile-first reduction -1px) */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px; /* -1px from normal 16px */
  }
  
  body.no-scroll {
    overflow: hidden;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem; /* -1rem */
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -320px;
    left: auto;
    width: 320px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--border-color);
    border-top: none;
    display: flex;
    flex-direction: column;
  }
  
  nav.open {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 100px 32px;
    gap: 32px;
  }
  
  .menu-btn {
    display: block;
  }
  
  .shop-container {
    grid-template-columns: 1fr;
  }
  
  .filter-sidebar {
    position: static;
    margin-bottom: 24px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

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

/* Fullscreen Backdrop Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 15, 30, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Floating Vertical Sidebars */
.side-bar-left {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.theme-switch-capsule {
  width: 36px;
  height: 76px;
  background-color: var(--bg-secondary);
  border: none;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

[data-theme="light"] .theme-switch-capsule {
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}

.theme-switch-capsule:hover {
  box-shadow: 0 8px 25px var(--color-blue-glow);
  transform: scale(1.05);
}

.theme-icon {
  font-size: 0.9rem;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

[data-theme="dark"] .theme-icon.moon,
[data-theme="light"] .theme-icon.sun {
  color: #ffffff;
}

.theme-switch-handle {
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--color-blue-gradient);
  border-radius: 50%;
  left: 5px;
  z-index: 1;
  transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px var(--color-blue-glow);
}

/* Handle position based on theme active state */
[data-theme="dark"] .theme-switch-handle {
  top: 5px;
}

[data-theme="light"] .theme-switch-handle {
  top: 45px;
}

.side-bar-right {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  z-index: 999;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  white-space: nowrap;
}

.rotated-social-bar a {
  color: var(--text-primary);
  transition: color 0.3s ease;
  margin: 0 4px;
}

.rotated-social-bar a:hover {
  color: var(--color-blue-light);
}

/* Hide sidebars on smaller screens to prevent overlaps */
@media (max-width: 1024px) {
  .side-bar-left,
  .side-bar-right {
    display: none;
  }
}

/* Bento-style Video Tour Container */
.video-tour-container {
  max-width: 900px;
  width: 100%;
  margin: 60px auto 0 auto;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(23, 24, 29, 0.7) 0%, rgba(10, 11, 13, 0.8) 100%);
  border: none;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-tour-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.6), 0 0 60px var(--color-blue-glow);
}

.video-tour-header {
  text-align: center;
  margin-bottom: 30px;
}

.video-tour-header .badge-pill {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-blue-subtle);
  border: none;
  border-radius: 100px;
  color: var(--color-blue-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.2);
}

.video-tour-header h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.video-tour-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-showcase {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 9;
  background-color: #000000;
}

.hero-showcase iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* AEO/GEO/SEO FAQ section styling */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-title {
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-card {
  padding: 30px;
  border-radius: var(--border-radius-lg);
  background-color: var(--bg-tertiary);
  border: none;
  box-shadow: var(--card-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.faq-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq-card h3::before {
  content: 'Q:';
  color: var(--color-blue-light);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
