/* =========================================
   PROGGA BD MEDIA - MODERN AESTHETIC
   ========================================= */

/* VARIABLE PALETTES - LIGHT AND DARK MODE */
:root {
  /* LIGHT MODE VARIABLES */
  --bg-main: #FFFFFF;
  --bg-alt: #F4F4F5;
  --bg-card: #FFFFFF;
  --text-main: #18181B;
  --text-muted: #71717A;
  --border-color: #E4E4E7;

  --accent-color: #D90429;
  --accent-hover: #EF233C;
  --accent-glow: rgba(217, 4, 41, 0.2);
  --accent-dim: rgba(217, 4, 41, 0.08);

  --font-sans: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);

  --skyline-fill: #18181B;
  --skyline-opacity: 0.05;
}

[data-theme="dark"] {
  /* DARK MODE VARIABLES */
  --bg-main: #060606;
  --bg-alt: #0D0D0E;
  --bg-card: #141416;
  --text-main: #F4F4F5;
  --text-muted: #A1A1AA;
  --border-color: rgba(255, 255, 255, 0.08);

  --accent-color: #EF233C;
  --accent-hover: #D90429;
  --accent-glow: rgba(239, 35, 60, 0.25);
  --accent-dim: rgba(239, 35, 60, 0.1);

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.6);

  --skyline-fill: #FFFFFF;
  --skyline-opacity: 0.04;
}

/* BASE STYLES (NO CUSTOM CURSOR) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* UTILITY CLASSES */
.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4%;
  padding-bottom: 20px;
}

.full-wide {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 4%;
}

.section-padding {
  padding: 120px 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent-color) !important;
  transition: color 0.3s;
}

.bg-alt {
  background-color: var(--bg-alt);
  transition: background-color 0.4s;
}

/* PROGRESS BAR */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-color);
  width: 0%;
  z-index: 10000;
  transition: width 0.1s;
}

/* FLOATING CONTACTS */
.floating-socials {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, background-color 0.4s;
  position: relative;
}

.float-btn:hover {
  transform: translateX(-5px) scale(1.1);
}

.float-wp:hover {
  border-color: #25D366;
  color: #25D366;
}

.float-ph:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.float-ms:hover {
  border-color: #00B2FF;
  color: #00B2FF;
}

.float-em:hover {
  border-color: #EA4335;
  color: #EA4335;
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px) translateY(2px);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.float-btn:hover::before {
  opacity: 1;
  transform: translateX(0) translateY(2px);
}


/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
  height: 76px;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(6, 6, 6, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-text {
  color: var(--text-main);
}

.logo-highlight {
  color: var(--accent-color);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 35px;
}


@media (max-width: 1000px) {

  .nav-links {
    gap: 22px;
  }

}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
  padding: 10px 0;
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

/* In Light Mode, text must STILL be white when placed over the Dark Hero image */
[data-theme="light"] .navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

[data-theme="light"] .navbar .nav-link:hover {
  color: #fff;
}

[data-theme="light"] .navbar .ext-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

[data-theme="light"] .navbar .ext-link:hover {
  color: #fff;
}

[data-theme="light"] .brand-logo .logo-text {
  color: #fff;
}

/* When scrolled down, the navbar becomes White. NOW the text must turn Dark */
[data-theme="light"] .navbar.scrolled .nav-link {
  color: #222;
}

[data-theme="light"] .navbar.scrolled .nav-link:hover {
  color: var(--accent-color);
}

[data-theme="light"] .navbar.scrolled .ext-link {
  color: #222;
}

[data-theme="light"] .navbar.scrolled .ext-link:hover {
  color: var(--accent-color);
}

[data-theme="light"] .navbar.scrolled .brand-logo .logo-text {
  color: #111;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ext-links-desktop {
  display: flex;
  gap: 15px;
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}

.ext-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.ext-link:hover {
  color: #fff;
}

/* Theme Switcher */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: rotate(15deg);
}

/* Theme Switcher Scrolled Fixes */
[data-theme="light"] .navbar.scrolled .theme-toggle-btn {
  color: #222;
  border-color: var(--border-color);
}

[data-theme="light"] .navbar.scrolled .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #222;
  color: #222;
}

[data-theme="dark"] .navbar.scrolled .theme-toggle-btn {
  border-color: var(--border-color);
}

.sun-icon {
  display: none;
  width: 20px;
}

.moon-icon {
  display: block;
  width: 20px;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

.nav-btn {
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--accent-color);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease-spring);
}

.nav-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 34px;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

[data-theme="light"] .navbar.scrolled .menu-toggle span {
  background: #222;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--bg-main);
  padding: 120px 5% 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease-spring);
  z-index: 990;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mob-link {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.mob-divider {
  height: 1px;
  background: var(--border-color);
  width: 100%;
  margin: 10px 0;
}

.ext-mob {
  font-size: 18px;
  color: var(--text-muted);
}

/* BIG TYPOGRAPHY & TAGS */
.section-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.section-label.center::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.section-p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.section-p.center {
  margin: 0 auto;
}

/* HERO - FULL WIDE MODERN */
.hero-full-wide {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 160px 0 100px 0; /* Ensures space top and bottom */
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg-main);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: scale(1); /* Start normal */
  transition: opacity 2s ease-in-out, transform 8s ease-out;
}

.hero-media.active {
  opacity: 1;
  transform: scale(1.1); /* Zoom IN while active */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Layer 1: bottom-to-top dark fade so content reads clearly */
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.40) 40%, transparent 72%),
    /* Layer 2: top dark bar so nav stays readable */
    linear-gradient(to bottom, rgba(0, 0, 0, 0.50) 0%, transparent 30%),
    /* Layer 3: edge vignette for cinematic depth */
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.70) 100%),
    /* Layer 4: subtle warm-dark brand tint */
    linear-gradient(135deg, rgba(30, 0, 5, 0.45) 0%, rgba(0, 0, 0, 0.20) 100%);
}

[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(0, 0, 0, 0.25) 40%, transparent 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 28%),
    radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(135deg, rgba(30, 0, 5, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content-wide {
  width: 100%;
  max-width: 1440px;
  margin: auto auto; /* Gracefully centers vertically without clipping if it gets too tall */
  padding: 0 4%;
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-card);
  color: var(--text-main);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.hero-title-massive {
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #FFFFFF;
  /* Force white text over image */
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 25px;
}

[data-theme="light"] .hero-title-massive {
  color: #FFFFFF;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle-large {
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px; /* Widened so large paragraphs don't stretch too tall */
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-large:last-of-type {
  margin-bottom: 40px; /* Restore gap specifically before the buttons */
}

.hero-actions-wide {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease-spring);
}

.btn-massive {
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 100px;
}

@media (max-width: 530px) {
  .btn-massive {
    padding: 15px 25px;
    font-size: 14px;
  }
}

.btn-primary {
  background: rgba(217, 4, 41, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 4, 41, 0.5);
  color: #fff;
  box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: rgba(239, 35, 60, 0.95);
  box-shadow: 0 15px 35px var(--accent-glow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

[data-theme="light"] .btn-glass {
  background: rgba(0, 0, 0, 0.3);
  color: #FFF;
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .btn-glass:hover {
  background: rgba(0, 0, 0, 0.6);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(239, 35, 60, 0.1);
  border-color: var(--accent-hover);
  transform: translateY(-4px);
}

.btn-full {
  width: 100%;
  border-radius: var(--radius-md);
}

/* HERO STATS OVERLAY */
.hero-stats-row {
  position: absolute;
  right: 4%;
  bottom: -50px;
  display: flex;
  gap: 40px;
  background: var(--bg-card);
  padding: 35px 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.stat-block h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-block p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .stat-block h2 {
    font-size: 40px;
  }

  .stat-block p {
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .stat-block h2 {
    font-size: 30px;
  }

  .stat-block p {
    font-size: 10px;
  }
}

.counter {
  color: var(--accent-color);
}

/* MODERN BENTO ABOUT SECTION */
.about-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-spring);
}

.bento-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

.bento-hero {
  grid-column: span 4;
  background: linear-gradient(135deg, rgba(239, 35, 60, 0.05) 0%, transparent 100%);
  border-left: 3px solid var(--accent-color);
  padding: 60px 40px;
}

.bento-feature {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
}

.bento-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-main);
  max-width: 800px;
}

.bento-p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
}

.bento-icon {
  font-size: 32px;
  margin-bottom: 20px;
  background: var(--bg-main);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.bento-feature h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.bento-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-massive-stat {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text-main);
}

.bento-stat-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

@media (max-width: 1000px) {
  .bento-hero { grid-column: span 2; }
  .bento-feature { grid-column: span 2; }
  .about-bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .bento-hero, .bento-feature { grid-column: span 1; padding: 30px; }
  .about-bento-grid { grid-template-columns: 1fr; }
  .bento-icon { margin-left: auto; margin-right: auto; }
  .bento-feature h4, .bento-feature p { text-align: center; }
}

/* Keep modern-split for other sections if needed, or form layout */
.modern-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.form-split {
  align-items: flex-start;
}

.rounded-media {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.pill {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.pill:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.pill-icon {
  font-size: 20px;
}

/* EQUIPMENT GRID */
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.eq-categories-pill {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 15px;
}

.cat-pill {
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.cat-pill:hover {
  border-color: var(--accent-color);
  color: var(--text-main);
}

.cat-pill.active {
  background: var(--accent-color);
  color: #FFF;
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.equipment-grid-wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.eq-modern-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}

.eq-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.eq-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #000;
}

.eq-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
  opacity: 0.85;
}

.eq-modern-card:hover .eq-card-img img {
  transform: scale(1.08);
  opacity: 1;
}

.eq-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bg-card);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.eq-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.eq-subtext {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.eq-card-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.eq-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.eq-specs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  flex: 1;
}

.eq-specs-list span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.eq-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.eq-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.eq-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.book-link-inline {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  transition: 0.3s;
}

.eq-modern-card:hover .book-link-inline {
  color: var(--accent-color);
}

/* PAGINATION SYSTEM */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.page-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  font-weight: 700;
  transition: 0.3s var(--ease-spring);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.page-link:hover {
  border-color: #fff;
  color: var(--text-main);
  transform: translateY(-3px);
}

.page-link.active {
  background: #fff;
  color: #111;
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.page-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .page-link {
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .page-link:hover {
  border-color: #111;
  color: #111;
}

[data-theme="light"] .page-link.active {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .page-link:disabled {
  opacity: 0.5;
  border-color: rgba(0, 0, 0, 0.2);
}

/* PACKAGES MODERN GRID */
.packages-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-pack {
  border-color: var(--accent-color);
  border-width: 2px;
  background: linear-gradient(180deg, var(--accent-dim) 0%, var(--bg-card) 50%);
}

.pack-crown {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0;
  letter-spacing: 2px;
}

.featured-pack .pack-header {
  margin-top: 20px;
}

.pack-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.pack-header h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.pack-desc {
  font-size: 15px;
  color: var(--text-muted);
  min-height: 48px;
}

.pack-price-section {
  margin: 25px 0;
  display: flex;
  align-items: flex-start;
}

.currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 5px;
  margin-right: 2px;
}

.amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
}

.duration {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: auto;
  margin-bottom: 6px;
  margin-left: 8px;
}

.pack-features {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.pack-features svg {
  width: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* EDGE TO EDGE GALLERY (ANIMATED MARQUEE) */
.horizontal-scroll-gallery {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  /* Hide scrollbars, automate scroll */
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.horizontal-scroll-gallery::-webkit-scrollbar {
  display: none;
}

.gal-wrap {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeContinuous 150s linear infinite;
}

.gal-wrap:hover {
  animation-play-state: paused;
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.gal-card {
  width: 450px;
  height: 350px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
  filter: grayscale(20%);
}

.gal-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gal-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s;
}

.gal-card:hover .gal-label {
  transform: translateY(0);
  opacity: 1;
}

/* BOOKING CONTACT LIST */
.contact-card-glass {
  padding-right: 40px;
}

.modern-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mc-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.mc-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
  transform: scaleY(0);
  transition: 0.3s;
}

.mc-item:hover {
  transform: translateX(10px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.mc-item:hover::after {
  transform: scaleY(1);
}

.mc-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.mc-info {
  display: flex;
  flex-direction: column;
}

.mc-type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mc-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.wp-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

/* MODERN FORM */
.booking-form-wrapper {
  background: var(--bg-card);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-main);
  transition: 0.3s;
  font-family: inherit;
  font-weight: 500;
  appearance: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.input-group input:hover,
.input-group textarea:hover {
  border-color: var(--accent-color);
}

.input-group textarea {
  height: 120px;
  resize: vertical;
}

.date-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-size: 18px;
}

/* Custom Select Dropdown Engine */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.custom-select-trigger:hover,
.custom-select-trigger.open {
  border-color: var(--accent-color);
}

.custom-select-trigger .arrow {
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--text-muted);
  border-right: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: 0.3s;
  margin-top: -5px;
}

.custom-select-trigger.open .arrow {
  transform: rotate(-135deg);
  margin-top: 5px;
}

.custom-options-panel {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-height: 350px;
  overflow-y: auto;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-options-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-options-panel::-webkit-scrollbar {
  width: 6px;
}

.custom-options-panel::-webkit-scrollbar-track {
  background: var(--bg-main);
  border-radius: 4px;
}

.custom-options-panel::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.custom-options-panel::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.custom-optgroup-label {
  padding: 15px 20px 8px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.custom-option {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  transition: 0.2s;
  border-bottom: 1px solid var(--border-color);
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background: var(--bg-main);
  padding-left: 25px;
  color: var(--accent-color);
}

.custom-option.selected {
  background: rgba(239, 35, 60, 0.05);
  color: var(--accent-color);
  border-left: 3px solid var(--accent-color);
}

[data-theme="light"] .custom-options-panel {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Success Popup Animations */
#booking-success-message {
  animation: popInSuccess 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-icon-animated {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  animation: checkBounce 0.8s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.water-ripple {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 3px solid #22C55E;
  border-radius: 50%;
  animation: waterWave 2s infinite ease-out;
}

.water-ripple::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid #22C55E;
  border-radius: 50%;
  animation: waterWave 2s infinite ease-out 1s;
}

.check-symbol {
  position: relative;
  z-index: 2;
}

@keyframes popInSuccess {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes checkBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes waterWave {
  0% {
    transform: scale(1);
    opacity: 0.9;
    border-width: 4px;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
    border-width: 0px;
  }
}

.form-row-full {
  grid-template-columns: 1fr !important;
}

.modern-map {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid var(--border-color);
  border-bottom: none;
  z-index: 10;
}

.map-link-output {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  font-size: 13px !important;
  color: var(--accent-color) !important;
  background: var(--bg-card) !important;
  height: 80px !important;
  resize: vertical !important;
}

.map-wrap-rel {
  position: relative;
}

.map-reset-btn {
  position: absolute;
  z-index: 400;
  top: 15px;
  right: 15px;
  background: var(--bg-card);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.map-reset-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

/* ERROR TEXT */
.form-error {
  color: #EF233C;
  font-size: 13px;
  font-weight: 600;
  display: none;
  margin-top: 5px;
}

/* MODERN FOOTER EXTRA WIDE */
.modern-footer {
  background: var(--bg-alt);
  position: relative;
  margin-top: 100px;
  border-top: 1px solid var(--border-color);
}

.skyline-wrapper-modern {
  width: 100%;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.skyline-fill {
  fill: var(--skyline-fill);
  opacity: var(--skyline-opacity);
  transition: 0.4s;
}

.footer-mega-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 80px 0 60px;
}

.fm-brand p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.8;
}

.fm-links h4,
.fm-contact h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.fm-links a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: 0.3s;
}

.fm-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.ext-bold {
  font-weight: 700 !important;
  color: var(--text-main) !important;
}

.fm-email {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  transition: 0.3s;
}

.fm-email:hover {
  color: var(--accent-hover);
}

.fm-phone {
  font-size: 16px;
  font-weight: 600;
}

.fm-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-right: 12px;
  transition: 0.3s;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.fm-socials a:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.footer-bottom-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-bottom-bar p:nth-child(2) {
  text-align: center;
  flex: 1;
}

.f-legal {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.f-legal a {
  transition: 0.3s;
}

.f-legal a:hover {
  color: var(--text-main);
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-spring);
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-5px);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-spring);
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-scale {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-spring);
  will-change: opacity, transform;
}
.fade-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-spring);
  will-change: opacity, transform;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-spring);
  will-change: opacity, transform;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* RESPONSIVENESS */
@media (max-width: 1200px) {
  .hero-stats-row {
    position: relative;
    bottom: 0;
    margin-top: 60px;
    right: 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  /* Each stat becomes its own premium card */
  .stat-block {
    flex: 1;
    min-width: 140px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-color);
    border-radius: var(--radius-lg);
    padding: 13px 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  }

  .stat-block:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .equipment-grid-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-mega-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-actions .ext-links-desktop,
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .modern-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-card-glass {
    padding-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Fix Date box crushing on tablets */
}

@media (max-width: 650px) {
  .hero-full-wide {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 50px;
    height: auto;
  }

  .hero-title-massive {
    font-size: clamp(36px, 8vw, 48px);
  }

  .equipment-grid-wide,
  .packages-modern-grid {
    grid-template-columns: 1fr;
  }

  .gal-card {
    width: 300px;
    height: 400px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-mega-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }

  .footer-bottom-bar p:nth-child(2) {
    text-align: left;
    flex: unset;
  }

  .f-legal {
    justify-content: flex-start;
  }

  .scroll-top-btn {
    right: 10px;
    bottom: 30px;
  }

  /* Floating socials — move to bottom-right on mobile */
  .floating-socials {
    top: auto;
    bottom: 120px;
    right: 12px;
    transform: none;
    gap: 10px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
  }

  .float-btn::before {
    display: none;
  }

  /* hide tooltips on mobile */
}

/* =========================================
   SPA TV VIEW LIGHT MODE NAVBAR OVERRIDES
   ========================================= */
[data-theme="light"] body.tv-active-view .navbar .nav-link,
[data-theme="light"] body.tv-active-view .navbar .ext-link {
  color: #222;
}

[data-theme="light"] body.tv-active-view .navbar .nav-link:hover,
[data-theme="light"] body.tv-active-view .navbar .ext-link:hover {
  color: var(--accent-color);
}

[data-theme="light"] body.tv-active-view .brand-logo .logo-text {
  color: #111;
}

[data-theme="light"] body.tv-active-view .theme-toggle-btn {
  color: #222;
  border-color: var(--border-color);
}

[data-theme="light"] body.tv-active-view .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #222;
}

[data-theme="light"] body.tv-active-view .menu-toggle span {
  background: #222;
}