/* ==========================================================================
   AQUASCAPE STUDIO - LUXURY AWWWARDS DESIGN SYSTEM
   Theme: Biophilic Glassmorphic Luxury Underwater Studio (Before/After 60vh Height)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #030A0E;
  --bg-primary: #06141D;
  --bg-secondary: #0A222C;
  --bg-card: rgba(10, 34, 44, 0.45);
  --bg-card-hover: rgba(15, 50, 64, 0.7);
  --glass-border: rgba(0, 212, 170, 0.18);
  --glass-border-glow: rgba(0, 212, 170, 0.5);

  --accent-teal: #00D4AA;
  --accent-cyan: #3BE8C4;
  --accent-mint: #79FFD8;
  --highlight-gold: #FFD166;
  --coral-accent: #FF6B6B;

  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-cyan: #A5F3FC;
  --text-dim: #64748B;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Montserrat', sans-serif;

  /* Spacing & Layout */
  --container-max: 1400px;
  --nav-height: 85px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-organic: 36px 12px 36px 12px;

  /* Easing & Shadows */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 15px 35px -5px rgba(0, 212, 170, 0.25);
  --shadow-glass: 0 20px 45px rgba(0, 0, 0, 0.5);
}

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

html {
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-dark);
}

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

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

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

/* Global Animated Water Bubbles Canvas Overlay */
.global-bubble-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border-radius: 4px;
  border: 1px solid var(--glass-border);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-teal);
}

/* Container & Spacing */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.fullvh-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Typography Utility */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.text-gradient {
  background: linear-gradient(135deg, #00D4AA 0%, #79FFD8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheading-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--accent-mint);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px auto;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Organic Glass Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.glass-panel:hover {
  border-color: var(--glass-border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px) translateZ(0);
}

/* Custom Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  z-index: 9999;
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* Luxury Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-teal), #05856F);
  color: #030A0E;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
  transition: all 0.35s var(--ease-smooth);
  will-change: transform;
}

.btn-primary:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.45);
  color: #030A0E;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  background: rgba(10, 34, 44, 0.6);
  border: 1px solid var(--accent-teal);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
  will-change: transform;
}

.btn-secondary:hover {
  background: var(--accent-teal);
  color: var(--bg-dark);
  transform: translateY(-3px) translateZ(0);
}

/* NAVBAR FLEX ALIGNMENT PERFECTION (5 CORE LINKS) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(3, 10, 14, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s ease, height 0.3s ease;
  will-change: background, height;
}

.site-header.scrolled {
  background: rgba(3, 10, 14, 0.94);
  height: 72px;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  color: var(--text-main);
  text-decoration: none;
}

.brand-logo img {
  width: 75px;
  height: 65px;
  object-fit: contain;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 800;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: var(--font-accent);
  color: var(--accent-mint);
  letter-spacing: 0.05em;
  margin-top: 3px;
  white-space: nowrap;
}

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

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-teal);
  transition: width 0.3s var(--ease-smooth);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-cta-btn {
  padding: 12px 28px;
  font-size: 0.88rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* SECTION 1: LUXURY HERO */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.65) contrast(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(6, 20, 29, 0.3) 0%, rgba(3, 10, 14, 0.92) 100%);
  z-index: 2;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 950px;
  padding: 40px 1rem 60px 1rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-cyan);
  max-width: 820px;
  margin: 1.5rem auto 2.2rem auto;
  font-weight: 300;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-floating-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.stat-card {
  padding: 1.4rem 1rem;
  text-align: center;
  border-radius: var(--radius-md);
}

.stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-mint);
  display: block;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--glass-border-glow);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

/* SECTION 2: OUR STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img-wrapper {
  position: relative;
  border-radius: var(--radius-organic);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.story-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.story-img-wrapper:hover img {
  transform: scale(1.04);
}

.owner-name-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(3, 10, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--accent-teal);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
  z-index: 5;
  box-shadow: var(--shadow-glass);
  display: flex;
  align-items: center;
  gap: 12px;
}

.owner-crown-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.owner-name-tag h5 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.owner-name-tag span {
  font-size: 0.75rem;
  color: var(--accent-mint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-accent);
}

.story-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  padding: 1.2rem 1.8rem;
  background: rgba(3, 10, 14, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--accent-teal);
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 5;
}

.story-badge h4 {
  font-size: 2rem;
  color: var(--accent-teal);
  font-weight: 800;
  margin: 0;
}

.story-badge p {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 0;
}

.story-content h2 {
  margin-bottom: 1.2rem;
}

.story-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.timeline-item {
  padding: 1.2rem 1rem;
  background: rgba(10, 34, 44, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  position: relative;
}

.timeline-item .year {
  color: var(--highlight-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-item .title {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
  margin-top: 4px;
}

/* SECTION 3: SERVICES SPOTLIGHT MATRIX & UNDER-BOX AUTOPLAY VIDEO */
.services-spotlight-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: stretch;
}

.services-spotlight-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-spotlight-card {
  padding: 2.8rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(10, 34, 44, 0.85), rgba(6, 20, 29, 0.65));
  border: 1px solid var(--accent-teal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.spotlight-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
}

.spotlight-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-mint);
}

.spotlight-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.spotlight-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.spotlight-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-cyan);
  font-size: 0.92rem;
  font-weight: 500;
}

.spotlight-feature-item i {
  color: var(--accent-teal);
}

/* Service Video Container Under Big Spotlight Card */
.service-video-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}

.service-spotlight-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1);
}

.service-video-overlay {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(3, 10, 14, 0.85);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--accent-teal);
  color: var(--accent-mint);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-video-overlay i {
  color: var(--highlight-gold);
}

.services-list-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-list-item {
  padding: 1.3rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(10, 34, 44, 0.35);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.service-list-item:hover, .service-list-item.active {
  background: rgba(0, 212, 170, 0.12);
  border-color: var(--accent-teal);
  transform: translateX(8px);
}

.service-list-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.service-list-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-teal);
}

.service-list-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.service-list-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-list-arrow {
  color: var(--accent-mint);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.service-list-item.active .service-list-arrow {
  transform: translateX(4px);
  color: var(--highlight-gold);
}

/* SECTION 4 & 5: PRODUCTS GRID (ORGANIC CARDS) */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.card-product {
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(10, 34, 44, 0.5);
  border: 1px solid var(--glass-border);
}

.card-product-img {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.card-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-stock {
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent-mint);
  border: 1px solid var(--accent-teal);
}

.badge-rare {
  background: rgba(255, 209, 102, 0.2);
  color: var(--highlight-gold);
  border: 1px solid var(--highlight-gold);
}

.card-product-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-product-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-product-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-teal);
}

.btn-inquire-sm {
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid var(--accent-teal);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-inquire-sm:hover {
  background: var(--accent-teal);
  color: var(--bg-dark);
}

/* SECTION: INTERACTIVE BEFORE & AFTER SLIDER (EXACT 60VH HEIGHT) */
.before-after-box {
  position: relative;
  width: 100%;
  max-width: 1050px;
  height: 60vh;
  min-height: 420px;
  max-height: 650px;
  margin: 0 auto;
  border-radius: var(--radius-organic);
  overflow: hidden;
  border: 1px solid var(--accent-teal);
  box-shadow: var(--shadow-glow);
  user-select: none;
  touch-action: none;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.ba-before {
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--accent-teal);
  z-index: 2;
}

.ba-before img {
  width: 1050px;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 25px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5;
}

.ba-label-before {
  left: 25px;
  background: rgba(3, 10, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
}

.ba-label-after {
  right: 25px;
  background: rgba(0, 212, 170, 0.85);
  border: 1px solid var(--accent-mint);
  color: #030A0E;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 40px;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--accent-teal);
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--accent-teal);
}

.ba-handle-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-teal);
  border: 2px solid #FFF;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
  position: relative;
  z-index: 11;
  transition: transform 0.2s ease;
}

.before-after-box:hover .ba-handle-button {
  transform: scale(1.1);
}

/* SECTION 6: GALLERY MOSAIC */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: rgba(10, 34, 44, 0.5);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent-teal);
  color: var(--bg-dark);
  border-color: var(--accent-teal);
}

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

.gallery-item {
  position: relative;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(3, 10, 14, 0.95), transparent);
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.35s ease;
}

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

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h4 {
  font-size: 1.25rem;
  color: var(--accent-mint);
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SECTION 7: ACCESSORIES COMPACT GRID */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* SECTION 8: WHY CHOOSE US */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3.5rem 2rem;
  margin-bottom: 5rem;
  border-radius: var(--radius-xl);
}

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

.stat-box .count {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
}

.stat-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

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

.feature-box {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-organic);
}

.feature-box i {
  font-size: 2.4rem;
  color: var(--highlight-gold);
  margin-bottom: 1.2rem;
}

.feature-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* SECTION 9: TESTIMONIALS SLIDER */
.testimonials-slider {
  padding-bottom: 50px;
}

.testimonial-card {
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-xl);
  height: 100%;
}

.quote-icon {
  font-size: 2.2rem;
  color: var(--accent-teal);
  opacity: 0.4;
  margin-bottom: 1.2rem;
}

.rating-stars {
  color: var(--highlight-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-cyan);
  font-style: italic;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--accent-teal);
  object-fit: cover;
}

.user-avatar-text {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--accent-teal);
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.user-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
}

.user-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* SECTION 10: CONTACT & FOOTER */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
}

.contact-form {
  padding: 3rem;
  border-radius: var(--radius-xl);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  background: rgba(6, 20, 29, 0.7);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-teal);
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent-teal);
  margin-top: 3px;
}

.info-item h4 {
  font-size: 1.05rem;
  margin-bottom: 3px;
}

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

.direct-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-whatsapp {
  flex: 1;
  padding: 16px;
  border-radius: 50px;
  background: #25D366;
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  color: #FFF;
}

.site-footer {
  background: #02080C;
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px 0;
  margin-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: var(--accent-mint);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-teal);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* Modal Window */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(3, 10, 14, 0.88);
  backdrop-filter: blur(18px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  padding: 1.5rem;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

#modalBody {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
}

#fishes .card-product, #betta-shrimps .card-product { height: 380px; }
#fishes .card-product-img, #betta-shrimps .card-product-img { height: 60%; flex-shrink: 0; }
#fishes .card-product-body, #betta-shrimps .card-product-body { height: 40%; flex-grow: 0; padding: 1.2rem; }

#birds .collection-grid { grid-template-columns: repeat(3, 1fr); }
#birds .card-product { height: 420px; }
#birds .card-product-img { height: 70%; flex-shrink: 0; }
#birds .card-product-body { height: 30%; flex-grow: 0; padding: 1.2rem; }

/* Animated Marquee Gallery */
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  margin-top: 2rem;
}
.marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll-x 30s linear infinite;
}
.marquee-group img {
  height: 250px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
  object-fit: cover;
  width: auto;
}
.marquee-group img:hover {
  transform: scale(1.05);
}
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 20px)); }
}

/* Accessories Dual Row Marquee */
.marquee-group-forward {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll-x 55s linear infinite;
}

.marquee-group-reverse {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll-x-reverse 55s linear infinite;
}

@keyframes scroll-x-reverse {
  0% { transform: translateX(calc(-100% - 20px)); }
  100% { transform: translateX(0); }
}

.accessory-card {
  width: 240px;
  height: 330px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--glass-border);
}

.accessory-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent-teal);
}

.accessory-card-img {
  height: 70%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.accessory-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.accessory-card-body {
  height: 30%;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(8, 24, 36, 0.75);
}

.accessory-card-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accessory-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* ==========================================================================
   ULTRA-RESPONSIVE MOBILE & TABLET STYLES FOR ALL SECTIONS
   ========================================================================== */

@media (max-width: 991px) {
  .hero-title { font-size: 2.8rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  #birds .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .direct-actions { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  /* MOBILE ONLY: PLACE BOTH TAGS OUTSIDE / BELOW THE OWNER IMAGE */
  .story-img-wrapper {
    position: relative !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.9rem !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .story-img-wrapper img {
    border-radius: var(--radius-organic);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    height: 350px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .owner-name-tag {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0.9rem 1.2rem !important;
    background: rgba(8, 24, 36, 0.92) !important;
    border: 1px solid var(--accent-teal) !important;
    border-radius: var(--radius-md) !important;
    z-index: 1 !important;
    margin: 0 !important;
  }

  .story-badge {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    padding: 0.9rem 1.2rem !important;
    background: rgba(8, 24, 36, 0.92) !important;
    border: 1px solid var(--highlight-gold) !important;
    border-radius: var(--radius-md) !important;
    text-align: center !important;
    z-index: 1 !important;
    margin: 0 !important;
  }

  .story-badge h4 {
    margin: 0 !important;
    font-size: 1.6rem !important;
    color: var(--highlight-gold) !important;
    line-height: 1 !important;
  }

  .story-badge p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    color: var(--text-main) !important;
    letter-spacing: 0.05em !important;
  }

  /* Header & Navigation */
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(3, 10, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: left 0.4s var(--ease-smooth);
    z-index: 999;
  }
  .nav-links.active { left: 0; }
  .brand-title { font-size: 1.25rem; }
  .brand-tagline { font-size: 0.58rem; letter-spacing: 0.02em; }
  .brand-logo img { width: 55px; height: 50px; }
  .nav-cta-btn { display: none; }

  /* Hero Section */
  .hero-title { font-size: 2.1rem; line-height: 1.25; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; text-align: center; }

  /* Story / About Section */
  .story-img-wrapper img { height: 350px; }
  .story-timeline { grid-template-columns: 1fr; gap: 1rem; }

  /* Product Cards & Collections */
  #fishes .collection-grid, #betta-shrimps .collection-grid, #birds .collection-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  #fishes .card-product, #betta-shrimps .card-product { height: 360px; }
  #birds .card-product { height: 380px; }

  /* Stats Banner (#whyus) */
  #whyus .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }
  .features-grid { grid-template-columns: 1fr; }

  /* Accessories Section */
  .accessory-card { width: 190px; height: 290px; }
  .accessory-card-body h4 { font-size: 0.88rem; }
  .accessory-card-body p { font-size: 0.75rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.8rem 1.4rem; }
  .testimonial-text { font-size: 0.95rem; }

  /* Contact & Form */
  #contact .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  #contact .form-row { grid-template-columns: 1fr !important; }
  .direct-actions { grid-template-columns: 1fr !important; gap: 0.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding: 50px 0 25px 0; margin-top: 50px; }

  /* Modal Lightbox */
  .modal-container { max-width: 95vw; max-height: 90vh; padding: 1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .heading-lg { font-size: 1.8rem; }
  #whyus .stats-grid { grid-template-columns: 1fr !important; }
  .brand-tagline { display: none; }
}

