/* ==========================================================================
   HOPLANDIAJUMPSTREET - DESIGN SYSTEM & STYLESHEET (PERFECT RESPONSIVE OVERVIEW)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Vibrant Yellow & Inflatable Brand Palette */
  --brand-yellow: #FFD166;
  --brand-yellow-bright: #FFE600;
  --brand-yellow-dark: #D97706;
  --hoplandia-cyan: #00B894;
  --hoplandia-teal: #00897B;
  --jumpstreet-purple: #5B21B6;
  --jumpstreet-violet: #7C3AED;
  --jumpstreet-orange: #E11D48;
  
  /* Modern High-Contrast Text & Background Palette */
  --bg-dark: #0F172A;
  --bg-dark-card: #1E293B;
  --bg-light: #FFFDF0;
  --bg-card: #FFFFFF;
  
  /* HIGH CONTRAST TEXT TOKENS */
  --text-main: #0F172A;
  --text-muted: #1E293B;
  --text-body: #334155;
  --text-light: #F8FAFC;
  
  /* Gradients */
  --grad-yellow-cyan: linear-gradient(135deg, #FFE600 0%, #00CEC9 100%);
  --grad-yellow-purple: linear-gradient(135deg, #FFD166 0%, #6C5CE7 100%);
  --grad-combo: linear-gradient(135deg, #FFE600 0%, #00CEC9 50%, #6C5CE7 100%);
  --grad-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 20px -3px rgba(245, 158, 11, 0.25), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 30px -5px rgba(245, 158, 11, 0.35), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow-yellow: 0 10px 25px rgba(255, 230, 0, 0.4);
  
  /* Spacing System */
  --section-space: 4.5rem;
  --container-width: 1380px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;
  --header-height: 85px;
}

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

html {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-light);
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-main);
  word-wrap: break-word;
}

p {
  color: var(--text-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.65;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Scroll Reveal Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-card-anim {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animated-card-item {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform, box-shadow;
}

.animated-card-item:hover {
  transform: translateY(-10px) scale(1.02);
}

.animated-card-item.card-yellow:hover {
  box-shadow: 0 20px 35px -5px rgba(255, 209, 102, 0.5), 0 10px 15px -5px rgba(15, 23, 42, 0.1);
  border-color: var(--brand-yellow-bright) !important;
}

.animated-card-item.card-purple:hover {
  box-shadow: 0 20px 35px -5px rgba(108, 92, 231, 0.4), 0 10px 15px -5px rgba(15, 23, 42, 0.1);
  border-color: var(--jumpstreet-violet) !important;
}

.animated-card-item.card-orange:hover {
  box-shadow: 0 20px 35px -5px rgba(225, 29, 72, 0.4), 0 10px 15px -5px rgba(15, 23, 42, 0.1);
  border-color: var(--jumpstreet-orange) !important;
}

.animated-card-item .card-image-box img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-card-item:hover .card-image-box img {
  transform: scale(1.1);
}

/* Floating background cloud animation */
@keyframes cloudFloat {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(25px); }
}

.floating-cloud-anim {
  animation: cloudFloat 8s infinite ease-in-out;
}

/* Hero Slideshow Image Cross-Fade */
.slideshow-img-transition {
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  opacity: 1;
}

.slideshow-img-transition.fade-out {
  opacity: 0;
  transform: scale(1.03);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.bg-dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark-section h2, .bg-dark-section h3 {
  color: #FFFFFF;
}

.bg-dark-section p,
.section-dark p {
  color: #E2E8F0;
  font-weight: 600;
}

/* Header & Sticky Navigation */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.brand-unified-badge {
  background: linear-gradient(135deg, #FFE600, #F59E0B);
  color: #0F172A;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(255, 230, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-unified-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 230, 0, 0.5);
}

.brand-text-hoplandia {
  color: var(--text-main);
  font-weight: 900;
}

.brand-text-jumpstreet {
  color: var(--jumpstreet-purple);
  font-weight: 900;
}

/* Desktop Navigation - Strictly 1 Line (white-space: nowrap) */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-weight: 800;
  font-size: 1rem;
  color: #0F172A;
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-yellow-bright);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  background: rgba(255, 230, 0, 0.25);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid var(--brand-yellow);
}

.cart-btn:hover {
  background: var(--brand-yellow-bright);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--jumpstreet-purple);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFF;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FFE600 0%, #F59E0B 100%);
  color: #0F172A;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #FFF;
  white-space: normal;
  line-height: 1.25;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 230, 0, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  background: #FFF;
  color: #0F172A;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--brand-yellow);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal;
  line-height: 1.25;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-secondary:hover {
  background: var(--brand-yellow);
  color: #0F172A;
  transform: translateY(-2px);
}

/* Card Button Adjustments for Perfect Pill Container Fit */
.price-card .btn-primary,
.price-card .btn-secondary,
.animated-card-item .btn-primary,
.animated-card-item .btn-secondary {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  text-align: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--brand-yellow);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #FFF;
  color: var(--text-main);
  flex-shrink: 0;
}

/* Fullscreen Mobile Menu Overlay */
.mobile-overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
}

.mobile-overlay-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--brand-yellow);
  padding-bottom: 1rem;
}

.mobile-menu-close {
  background: var(--brand-yellow);
  color: #0F172A;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 900;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.mobile-nav-list a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-list a:hover {
  color: var(--brand-yellow);
}

.mobile-menu-footer {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--brand-yellow);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #CBD5E1;
  font-size: 0.85rem;
}

.mobile-menu-footer-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-menu-footer-item svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}

/* Page Banner / Subpage Headers */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(255, 209, 102, 0.4);
  text-align: center;
}

.page-hero-title {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.page-hero-desc {
  color: #1E293B;
  font-weight: 700;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

/* HERO SECTION WITH BACKGROUND VECTOR CASTLE LAYER & CLOUDS */
.hero-animated-wrapper {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: radial-gradient(circle at 75% 30%, rgba(255, 230, 0, 0.3) 0%, rgba(0, 206, 201, 0.12) 45%, rgba(255, 253, 240, 1) 100%);
  overflow: hidden;
}

.hero-bg-anim-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-castle-svg {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 450px;
  height: 450px;
  opacity: 0.15;
  color: #F59E0B;
}

.hero-bg-cloud {
  position: absolute;
  top: 15%;
  left: 10%;
  opacity: 0.25;
  color: var(--hoplandia-cyan);
}

.hero-content-layer {
  position: relative;
  z-index: 2;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFF;
  color: #0F172A;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--brand-yellow);
  box-shadow: 0 4px 12px rgba(255, 230, 0, 0.3);
}

.hero-main-title {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-title-yellow {
  background: linear-gradient(135deg, #D97706 0%, #FFE600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title-highlight-box {
  background: var(--brand-yellow);
  color: #0F172A;
  padding: 0 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.hero-lead-text {
  font-size: 1.2rem;
  color: #1E293B;
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Overview Section Grid */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.overview-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Quick Ticket Selector Widget */
.hero-quick-widget {
  background: #FFF;
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-widget-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-widget-icon {
  background: var(--brand-yellow);
  color: #0F172A;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Zone Switcher */
.zone-switcher-box {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.switcher-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  background: #FFF;
  color: #1E293B;
  border: 2px solid #CBD5E1;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.switcher-tab.active-all {
  background: var(--brand-yellow);
  color: #0F172A;
  border-color: var(--brand-yellow-dark);
  box-shadow: 0 8px 18px rgba(255, 230, 0, 0.4);
}

.switcher-tab.active-hoplandia {
  background: var(--hoplandia-cyan);
  color: #FFF;
  border-color: var(--hoplandia-cyan);
  box-shadow: 0 8px 18px rgba(0, 184, 148, 0.3);
}

.switcher-tab.active-jumpstreet {
  background: var(--jumpstreet-purple);
  color: #FFF;
  border-color: var(--jumpstreet-purple);
  box-shadow: 0 8px 18px rgba(91, 33, 182, 0.3);
}

/* Cards & Layout */
.cards-equal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 209, 102, 0.6);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-yellow);
}

.card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #FEF3C7;
}

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

.card-item:hover .card-media img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  color: #0F172A;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--brand-yellow);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.card-subtitle {
  color: var(--jumpstreet-purple);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.card-desc {
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.card-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text-main);
}

.card-btn {
  background: var(--brand-yellow);
  color: #0F172A;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.25s ease;
}

.card-btn:hover {
  background: var(--brand-yellow-bright);
}

/* Pricing Grid - Clean Breathing Spacing without Overlaps */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.25rem;
  align-items: stretch;
  margin-top: 1rem;
}

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(226, 232, 240, 0.9);
  padding: 2.5rem 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.popular {
  border: 3px solid var(--brand-yellow);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  margin-top: 0.5rem;
  padding-top: 2.75rem;
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFE600 0%, #F59E0B 100%);
  color: #0F172A;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
  white-space: nowrap;
  z-index: 10;
  border: 2px solid #FFF;
}

.price-header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price-header h3 {
  font-size: 1.45rem;
  line-height: 1.35;
  margin: 0;
}

.price-header .subtitle-pill {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.price-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--text-main);
  margin: 0.25rem 0;
  line-height: 1;
}

.price-tag span {
  font-size: 1rem;
  color: #334155;
  font-weight: 700;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.95rem;
  color: #1E293B;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.price-features li svg {
  color: var(--brand-yellow-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Contact & Map Section (PC Equal Height Requirement) */
.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-info-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 2px solid rgba(255, 209, 102, 0.45);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.map-container-box {
  background: #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--brand-yellow);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 380px;
}

.map-container-box iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon-wrapper {
  background: rgba(255, 230, 0, 0.25);
  color: #0F172A;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--brand-yellow);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 2px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0F172A;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #334155;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active {
  border-color: var(--brand-yellow);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* Footer Section */
.main-footer {
  background: var(--bg-dark);
  color: #CBD5E1;
  padding: 4rem 0 2rem;
  margin-top: auto;
  border-top: 4px solid var(--brand-yellow);
}

.main-footer p {
  color: #CBD5E1;
}

.main-footer .brand-unified-badge {
  border: 1.5px solid rgba(255, 209, 102, 0.4);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

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

.footer-col h4,
.main-footer h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #94A3B8;
}

/* Slide-out Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 2px solid var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid #E2E8F0;
  background: var(--bg-light);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2400;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Breakpoints & Mobile Optimization */
@media (max-width: 1200px) {
  .desktop-nav {
    gap: 1.35rem;
  }
}

@media (max-width: 1024px) {
  .hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .desktop-nav {
    display: none !important;
  }

  .header-actions .btn-primary {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }
  
  .contact-map-grid, .overview-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .cards-equal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* PERFECT COMPACT MOBILE STYLING (Small Logo Badge, Cart & Hamburger Button side-by-side, Full-Width Staked Overview Photos) */
@media (max-width: 768px) {
  :root {
    --section-space: 2rem;
    --header-height: 60px;
  }

  .main-header {
    height: 60px;
  }

  .header-inner {
    padding: 0;
    gap: 0.4rem;
    justify-content: space-between;
  }

  .brand-logo {
    font-size: 1.05rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-unified-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.95rem;
    gap: 0.4rem;
    max-width: 260px;
    border-width: 2px;
    box-shadow: 0 3px 10px rgba(255, 230, 0, 0.35);
  }

  .brand-unified-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .header-actions {
    gap: 0.35rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .header-actions .btn-primary {
    display: none !important;
  }

  .cart-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .cart-btn svg {
    width: 18px;
    height: 18px;
  }

  .cart-count {
    width: 17px;
    height: 17px;
    font-size: 0.65rem;
    top: -3px;
    right: -3px;
  }

  .mobile-toggle {
    display: flex !important;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .mobile-toggle svg {
    width: 20px;
    height: 20px;
  }
  
  .container {
    padding: 0 1rem !important;
  }

  .overview-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .overview-img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .hero-animated-wrapper {
    padding: 1.75rem 0 2.5rem;
  }

  .hero-badge-pill {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.85rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-main-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
    word-break: break-word;
  }
  
  .hero-lead-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hero-quick-widget {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.75rem;
    border-width: 2px;
  }
  
  .hero-quick-widget button {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .cards-grid, .pricing-grid, .footer-grid, .cards-equal-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .price-card {
    padding: 1.75rem 1rem 1.25rem;
  }

  .price-card.popular {
    margin-top: 0.75rem;
    padding-top: 2.15rem;
  }

  .popular-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.85rem;
    top: -14px;
    max-width: 92%;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .price-header h3 {
    font-size: 1.25rem;
  }

  .price-tag {
    font-size: 2.25rem;
  }

  .zone-switcher-box {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .switcher-tab {
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
    flex-grow: 1;
    justify-content: center;
  }

  .page-hero {
    padding: 1.75rem 0 1.25rem;
  }

  .page-hero-title {
    font-size: 1.55rem;
  }

  .page-hero-desc {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   DATABASE-DRIVEN PAGE COMPONENTS
   Added when pages moved from static HTML to PHP templates.
   ========================================================================== */

/* --- Section heading block --- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}
.section-head h2 { font-size: 2.3rem; margin-bottom: 0.75rem; }
.section-head p  { color: var(--text-muted); font-size: 1.03rem; }

.section-label {
  display: inline-block;
  color: var(--brand-yellow-dark);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.badge-yellow {
  display: inline-block;
  background: var(--brand-yellow);
  color: #0F172A;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-dark {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  color: #FFF;
}

.link-strong {
  font-weight: 900;
  color: var(--jumpstreet-purple);
  text-decoration: underline;
}

/* --- Hero media column --- */
.hero-media-col { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--brand-yellow);
  box-shadow: var(--shadow-md);
  background: #0F172A;
}
.hero-media-card img { width: 100%; height: 210px; object-fit: cover; display: block; }

/* --- Video --- */
/* js/main.js caps .video-frame's width from the clip's real aspect ratio once
   metadata loads, so a portrait video is neither cropped nor letterboxed and a
   landscape one still fills the width. Works for any video the admin uploads. */
.video-frame {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--brand-yellow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* --- 3 feature cards --- */
.feature-card {
  background: #FFF;
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.12);
}
.feature-card .card-image-box {
  height: 220px;
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
  background: #0F172A;
}
.feature-card .card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.feature-card:hover .card-image-box img {
  transform: scale(1.06);
}
.feature-card-body {
  padding: 1.65rem 1.5rem 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.feature-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.3px;
}
.feature-card-body p {
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  color: #FFF;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Feature Card Themed Buttons */
.btn-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  line-height: 1.25;
  box-sizing: border-box;
  width: 100%;
  border: 2px solid transparent;
}

.btn-card-action svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.btn-card-action:hover svg {
  transform: translateX(5px);
}

.btn-card-hoplandia {
  background: linear-gradient(135deg, #FFE600 0%, #F59E0B 100%);
  color: #0F172A;
  border-color: #F59E0B;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}

.btn-card-hoplandia:hover {
  background: linear-gradient(135deg, #FFF066 0%, #D97706 100%);
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.5);
}

.btn-card-jumpstreet {
  background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
  color: #FFFFFF;
  border-color: #5B21B6;
  box-shadow: 0 6px 18px rgba(91, 33, 182, 0.35);
}

.btn-card-jumpstreet:hover {
  background: linear-gradient(135deg, #8B5CF6 0%, #4C1D95 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(91, 33, 182, 0.5);
}

.btn-card-oslavy {
  background: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
  color: #FFFFFF;
  border-color: #E11D48;
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.35);
}

.btn-card-oslavy:hover {
  background: linear-gradient(135deg, #FB7185 0%, #BE123C 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.5);
}

/* Subpage Utilities (Detail, 404) */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
  background: var(--bg-light);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  font-size: 0.92rem;
}
.spec-grid div { color: var(--text-body); }
.spec-grid strong { color: var(--text-main); font-weight: 800; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--jumpstreet-purple);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.back-link:hover {
  transform: translateX(-4px);
  color: var(--brand-yellow-dark);
}

.error-section {
  padding: 4.5rem 0 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
}
.error-code {
  font-family: 'Outfit', sans-serif;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #FFE600 0%, #E11D48 50%, #5B21B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1rem 0;
  letter-spacing: -3px;
}

/* --- Contact detail rows --- */
.cd-label { font-weight: 900; font-size: 1rem; color: var(--text-main); }
.cd-value { color: var(--text-main); font-size: 0.95rem; }
.cd-value.strong { color: var(--jumpstreet-purple); font-weight: 800; font-size: 1.05rem; }
.cd-value.accent { color: var(--hoplandia-teal); font-weight: 800; }
.cd-note  { color: var(--text-muted); font-size: 0.85rem; }

.info-note-box {
  background: #FFFFFF;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 209, 102, 0.4);
  border-left: 5px solid var(--brand-yellow-dark);
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}

.info-note-box.purple-theme {
  border-left-color: var(--jumpstreet-violet);
  border-color: rgba(124, 58, 237, 0.25);
}

.hint-empty { text-align: center; color: var(--text-muted); padding: 2rem 0; }

/* --- Social buttons --- */
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--brand-yellow); color: #0F172A; }

/* --- FAQ button reset (was a div, now a real button for accessibility) --- */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

/* --- Forms --- */
.form-card {
  background: #FFF;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 3px solid var(--brand-yellow);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid #CBD5E1;
  font: inherit;
  font-size: 0.95rem;
  background: #FFF;
  color: var(--text-main);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-yellow-dark);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}
.form-field textarea { resize: vertical; min-height: 96px; }

.captcha-field {
  background: var(--bg-light);
  border: 1px solid var(--brand-yellow);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}
.captcha-field label { display: block; font-weight: 800; font-size: 0.85rem; margin-bottom: 0.4rem; }
.captcha-inline { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.captcha-inline .q { font-weight: 900; font-size: 1.05rem; color: var(--jumpstreet-purple); }
.captcha-inline input { width: 92px !important; text-align: center; font-weight: 900; }

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.form-feedback.show { display: block; }
.form-feedback.ok  { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; }
.form-feedback.err { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

.service-desc-box {
  background: var(--bg-light);
  border: 1.5px solid #CBD5E1;
  border-left: 4px solid var(--jumpstreet-purple);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.service-desc-box .t { font-weight: 900; font-size: 1rem; color: var(--jumpstreet-purple); margin-bottom: 0.25rem; }
.service-desc-box .d { font-size: 0.88rem; color: var(--text-body); line-height: 1.5; }

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--brand-yellow);
  background: #FFF;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.gallery-item img { width: 100%; height: 225px; object-fit: cover; display: block; }
.gallery-item .cap { padding: 1rem 1.15rem; }
.gallery-item .cap h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.gallery-item .cap p  { font-size: 0.86rem; color: var(--text-muted); }

/* --- Stat boxes --- */
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stat-box {
  background: #FFFFFF;
  border: 2px solid rgba(255, 209, 102, 0.6);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-box .n { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--brand-yellow-dark); }
.stat-box .l { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); }

/* --- Scroll Reveal Animations --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1), transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Mobile refinements --- */
@media (max-width: 768px) {
  .section-head { margin-bottom: 1.9rem; }
  .section-head h2 { font-size: 1.65rem; }
  .section-head p  { font-size: 0.93rem; }

  .hero-media-card img { height: 165px; }
  .feature-card .card-image-box { height: 165px; }
  .feature-card-body { padding: 1.15rem; gap: 1rem; }
  .feature-card-body h3 { font-size: 1.2rem; }
  .feature-card-body p  { font-size: 0.88rem; }

  .form-card { padding: 1.35rem 1.1rem; }
  .form-row  { grid-template-columns: 1fr; gap: 0; }

  .gallery-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .gallery-item img { height: 200px; }

  .video-frame { border-width: 3px; }
  .stat-row { grid-template-columns: 1fr; }
}
