/* ==========================================================================
   PETLO VERSION 4 - WORLD-CLASS DESIGNER EDITION (PRIMARY GREEN & CRISP WHITE)
   Primary Color: Brand Forest Green (#1C4F3A)
   Secondary Tint: Soft Sage (#E8F3EE)
   Backgrounds: Pure White (#FFFFFF) & Crisp Cream (#F8F9F8)
   ========================================================================== */

:root {
  --brand-green: #1C4F3A;
  --brand-green-hover: #143A2B;
  --brand-green-light: #286E52;
  --brand-sage-bg: #E8F3EE;
  --brand-sage-subtle: #F2F8F5;
  --brand-sage-border: #C8DDD3;
  
  --dark-text: #0F172A;
  --muted-text: #475569;
  --light-border: #E2E8F0;
  
  --pure-white: #FFFFFF;
  --bg-cream: #F8F9F8;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 14px rgba(28, 79, 58, 0.06);
  --shadow-md: 0 10px 28px rgba(28, 79, 58, 0.1);
  --shadow-lg: 0 20px 48px rgba(28, 79, 58, 0.15);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-green);
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* STICKY VERSION SWITCHER BAR */
.v-switcher-bar {
  background: var(--brand-green);
  color: white;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.v-switcher-title {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.text-green { color: var(--brand-green) !important; }
.text-orange { color: var(--brand-green) !important; }
.text-teal { color: var(--brand-green) !important; }
.text-gold { color: #F59E0B !important; }
.text-white { color: white !important; }

.v-switcher-links {
  display: flex;
  gap: 8px;
}

.v-btn {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.v-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.v-btn.active {
  background: white;
  color: var(--brand-green);
  font-weight: 800;
  border-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* HEADER / NAVIGATION */
.site-header {
  background: white;
  border-bottom: 1px solid var(--brand-sage-border);
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo .brand-name,
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #0B0F12 !important;
  letter-spacing: -0.5px;
  line-height: 1;
  display: inline-block !important;
}

.brand-tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: #0B0F12;
  letter-spacing: 1.5px;
}

.brand-logo-svg path {
  fill: #0B0F12;
}

.brand-logo-svg path[fill="#F8F9F8"] {
  fill: #FFFFFF;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0B0F12;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-link i {
  color: #0B0F12;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link:hover i {
  color: var(--brand-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-bar-wrap {
  position: relative;
  width: 200px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #0B0F12;
  font-size: 0.88rem;
}

.search-bar-wrap input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #0B0F12;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s ease;
}

.search-bar-wrap input::placeholder {
  color: #64748B;
}

.search-bar-wrap input:focus {
  border-color: #0B0F12;
  box-shadow: 0 0 0 3px rgba(11, 15, 18, 0.1);
  background: #FFFFFF;
}

.header-actions .btn-outline {
  background: #FFFFFF;
  color: #0B0F12;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.header-actions .btn-outline:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0B0F12;
}

.header-actions .btn-primary, .btn-black {
  background: #0B0F12;
  color: #FFFFFF;
  border: 1.5px solid #0B0F12;
  box-shadow: 0 2px 8px rgba(11, 15, 18, 0.15);
}

.header-actions .btn-primary:hover, .btn-black:hover {
  background: #2D3748;
  color: #FFFFFF;
  border-color: #2D3748;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(11, 15, 18, 0.25);
}

/* BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: #E6F4EE;
  color: #1C4F3A;
  border: 1.5px solid #BCE0D1;
  box-shadow: 0 2px 8px rgba(28, 79, 58, 0.06);
}

.btn-primary:hover {
  background: #D5ECE2;
  color: #143A2B;
  border-color: #A3D4C0;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(28, 79, 58, 0.12);
}

.btn-secondary {
  background: var(--brand-sage-bg);
  color: var(--brand-green);
  border: 1.5px solid var(--brand-sage-border);
}

.btn-secondary:hover {
  background: var(--brand-green);
  color: white;
  border-color: var(--brand-green);
  transform: translateY(-2px);
}

.btn-outline {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.btn-outline:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
  transform: translateY(-1px);
}

.btn-outline-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #FFFFFF;
  color: #0B0F12;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-outline-sm i {
  color: #0B0F12;
  transition: transform 0.2s ease;
}

.btn-outline-sm:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0B0F12;
  transform: translateY(-1px);
}

.btn-outline-sm:hover i {
  transform: translateX(2px);
}

.btn-primary-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
  background: var(--brand-green);
  color: white;
  border-radius: var(--radius-pill);
}

.btn-primary-sm:hover {
  background: var(--brand-green-hover);
}

.btn-light-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
  background: #E6F4EE;
  color: #1C4F3A;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: 1.5px solid #BCE0D1;
}

.btn-light-sm:hover {
  background: #D5ECE2;
  color: #143A2B;
  border-color: #A3D4C0;
}

.btn-light-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  background: #E6F4EE;
  color: #1C4F3A;
  border: 1.5px solid #BCE0D1;
  border-radius: var(--radius-pill);
  font-weight: 800;
}

.btn-light-lg:hover {
  background: #D5ECE2;
  color: #143A2B;
  border-color: #A3D4C0;
  box-shadow: 0 4px 14px rgba(28, 79, 58, 0.12);
}

.btn-ghost-light {
  padding: 14px 28px;
  font-size: 1rem;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-green);
  font-size: 1.4rem;
  cursor: pointer;
}

/* MOBILE DRAWER STYLING */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2050;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mobile-drawer-close {
  background: #F1F5F9;
  color: #0B0F12;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-search {
  position: relative;
  margin-bottom: 24px;
}

.mobile-drawer-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #0B0F12;
  font-size: 0.88rem;
  outline: none;
}

.mobile-drawer-search input::placeholder {
  color: #64748B;
}

.mobile-drawer-search .search-icon {
  color: #0B0F12;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.mobile-nav-item {
  font-family: var(--font-body);
  font-weight: 700;
  color: #0B0F12;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-nav-item i {
  color: #0B0F12 !important;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.mobile-nav-item:hover {
  background: #F1F5F9;
}

.mobile-drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-actions .btn-outline {
  background: #FFFFFF;
  color: #0B0F12;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: 12px;
  justify-content: center;
}

.mobile-drawer-actions .btn-outline:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.mobile-drawer-actions .btn-primary {
  background: #0B0F12;
  color: #FFFFFF;
  border: 1.5px solid #0B0F12;
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: 12px;
  justify-content: center;
}

.mobile-drawer-actions .btn-primary:hover {
  background: #2D3748;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 18, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2040;
  display: none;
}

.mobile-drawer-overlay.active {
  display: block;
}

/* SECTION 01: HERO */
.hero-section {
  padding: 24px;
  background: var(--bg-cream);
}

.hero-bg-card {
  max-width: 1280px;
  margin: 0 auto;
  height: 560px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid var(--brand-sage-border);
  box-shadow: var(--shadow-md);
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 0 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-sage-bg);
  color: var(--brand-green);
  border: 1px solid var(--brand-sage-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--brand-green);
  margin-bottom: 16px;
}

.highlight-text {
  color: var(--brand-green-light);
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-pill {
  background: white;
  border: 1px solid var(--brand-sage-border);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.feature-pill:hover {
  border-color: var(--brand-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--brand-sage-subtle);
}

.pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
}

.icon-orange { background: var(--brand-green); }
.icon-teal { background: var(--brand-green-light); }
.icon-green { background: #1C4F3A; }
.icon-purple { background: #8B5CF6; }
.icon-gold { background: #F59E0B; }

.pill-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-green);
}

.pill-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--muted-text);
}

/* SECTION GLOBAL CONTAINER */
.section {
  padding: 80px 24px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-header.flex-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  color: #0B0F12;
}

.section-subtitle {
  color: var(--muted-text);
  font-size: 1rem;
  margin-top: 6px;
}

/* SECTION 02: LEARN & TRAIN PREVIEW */
.learn-train-section {
  background: white;
}

.tab-pills-group {
  display: flex;
  background: #FFFFFF;
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.tab-pill {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  background: transparent;
  color: #0B0F12;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-pill.active {
  background: #0B0F12;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(11, 15, 18, 0.15);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.video-carousel-wrapper {
  position: relative;
}

.video-cards-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 10px 0 20px;
}

.video-card {
  min-width: 0;
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}

.video-thumb {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.06);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 79, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  transition: background 0.3s ease;
}

.video-card:hover .play-overlay {
  background: rgba(28, 79, 58, 0.65);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(11, 15, 18, 0.88);
  color: white;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
}

.video-meta {
  padding: 16px;
}

.video-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 4px;
  display: inline-block;
}

.video-title {
  font-size: 1.1rem;
  color: #0B0F12;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0B0F12;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: #F8FAFC;
  color: #0B0F12;
  border-color: #CBD5E1;
  transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: -18px; }
.next-btn { right: -18px; }

/* CAROUSEL DOTS INDICATOR */
.carousel-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.carousel-dots-container .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.carousel-dots-container .dot.active {
  width: 22px;
  border-radius: var(--radius-pill);
  background: #0B0F12;
}

/* SECTION 03: BOARDING / DAYCARE */
.boarding-section {
  background: var(--bg-cream);
}

.boarding-hosts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.host-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.host-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.host-card-img-wrap {
  position: relative;
  height: 180px;
}

.host-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  background: #E6F4EE;
  color: #1C4F3A;
  border: 1.5px solid #BCE0D1;
}

.host-card-body {
  padding: 20px;
}

.host-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.host-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1C4F3A;
}

.host-card-name {
  font-size: 1.08rem;
  color: #0B0F12;
  font-weight: 800;
}

.host-location {
  font-size: 0.78rem;
  color: var(--muted-text);
  display: block;
  margin-top: 2px;
}

.host-card-footer,
.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1.5px solid #E2E8F0;
}

.course-packages-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1C4F3A;
  display: flex;
  align-items: center;
  gap: 6px;
}

.host-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0B0F12;
}

.host-banner-card {
  background: var(--brand-green);
  color: white;
  border-radius: 32px;
  border: 1px solid var(--brand-green-hover);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
}

.host-title {
  font-size: 2.6rem;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.host-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.host-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.host-stat-pill {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.host-banner-img-wrap {
  position: relative;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
}

.host-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 16px 20px;
  border-radius: 16px;
  color: #0B0F12;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.floating-header {
  font-weight: 800;
  font-size: 0.9rem;
  color: #0B0F12;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.floating-header i {
  color: #0B0F12 !important;
}

.floating-text {
  font-size: 0.78rem;
  color: var(--muted-text);
}

/* SECTION 04: COURSES */
.courses-section {
  background: white;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.course-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--brand-sage-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}

.course-img-wrap {
  position: relative;
  height: 220px;
}

.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  background: #E6F4EE;
  color: #1C4F3A;
  border: 1.5px solid #BCE0D1;
  box-shadow: 0 2px 8px rgba(28, 79, 58, 0.08);
}

.badge-orange, .badge-teal, .badge-purple {
  background: #E6F4EE;
  color: #1C4F3A;
  border: 1.5px solid #BCE0D1;
}

.course-body {
  padding: 24px;
}

.course-meta-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted-text);
  font-weight: 600;
  margin-bottom: 10px;
}

.course-card-title {
  font-size: 1.4rem;
  color: #0B0F12;
  margin-bottom: 8px;
}

.course-card-desc {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--brand-sage-border);
}

.course-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0B0F12;
}

.price-unit {
  font-size: 0.8rem;
  color: var(--muted-text);
  font-weight: 500;
}

/* SECTION 05: SHOP */
.shop-section {
  background: var(--bg-cream);
}

.view-all-link {
  font-weight: 700;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-categories-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 8px;
  margin-bottom: 32px;
}

.cat-item {
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0B0F12;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.cat-item i {
  color: #0B0F12;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.cat-item:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
}

.cat-item.active {
  background: #0B0F12;
  color: #FFFFFF;
  border-color: #0B0F12;
  box-shadow: 0 4px 12px rgba(11, 15, 18, 0.15);
}

.cat-item.active i {
  color: #FFFFFF;
}

/* SECTION 05: SHOP ESSENTIALS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 12px;
  border: 1.5px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}

.product-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}

.product-cat {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 0.92rem;
  color: #0B0F12;
  margin: 4px 0 10px;
  font-weight: 700;
  line-height: 1.35;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0B0F12;
}

/* SECTION 06: BRANDS */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.brand-card {
  position: relative;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid #E2E8F0;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #1C4F3A;
}

.brand-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.brand-card:hover .brand-bg {
  transform: scale(1.08);
}

.brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 18, 0.1) 0%, rgba(11, 15, 18, 0.88) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.brand-category {
  font-size: 0.72rem;
  font-weight: 800;
  color: #BCE0D1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.brand-card-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 2px 0 12px;
}

.brand-card .btn-light-lg {
  background: #FFFFFF;
  color: #0B0F12;
  border: 1.5px solid #E2E8F0;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
}

.brand-card:hover .btn-light-lg {
  background: #E6F4EE;
  color: #1C4F3A;
  border-color: #BCE0D1;
}

/* SECTION 07: ADOPTION */
.adoption-section {
  background: var(--bg-cream);
}

.adoption-banner {
  background: var(--brand-green);
  color: white;
  border-radius: 32px;
  padding: 48px;
}

.adoption-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.adoption-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.adoption-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 8px;
}

.adoption-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.adoption-pets-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pet-adopt-card {
  background: white;
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--brand-sage-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pet-adopt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pet-avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 3px solid var(--brand-green);
}

.pet-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-name {
  font-size: 1.1rem;
  color: var(--brand-green);
}

.pet-desc {
  font-size: 0.75rem;
  color: var(--muted-text);
}

.partner-logos-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.shelter-pill {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: white;
}

/* SECTION 08: STORIES & EVENTS */
.stories-events-section {
  background: white;
}

.split-stories-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.col-heading {
  font-size: 1.4rem;
  color: #0B0F12;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.col-heading i {
  color: #0B0F12 !important;
}

.story-item-card {
  background: var(--bg-cream);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
  border: 1px solid var(--brand-sage-border);
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.story-item-card:hover {
  border-color: var(--brand-green);
  transform: translateX(4px);
}

.story-badge-pill {
  background: var(--brand-green);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
}

.story-title {
  font-size: 1rem;
  color: #0B0F12;
}

.story-byline {
  font-size: 0.75rem;
  color: var(--muted-text);
  margin-top: 4px;
}

.event-item-card {
  background: var(--bg-cream);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid var(--brand-sage-border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-thumb {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.event-details {
  flex: 1;
}

.event-name {
  font-size: 1.05rem;
  color: #0B0F12;
}

.event-time, .event-location {
  font-size: 0.78rem;
  color: var(--muted-text);
}

/* SECTION 09: PLACES */
.places-section {
  background: var(--bg-cream);
}

.map-toggle-buttons {
  display: flex;
  gap: 8px;
  background: #FFFFFF;
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.toggle-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #0B0F12;
  cursor: pointer;
}

.toggle-btn.active {
  background: #0B0F12;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(11, 15, 18, 0.15);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.place-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--brand-sage-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.place-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-md);
}

.place-img-wrap {
  position: relative;
  height: 140px;
}

.place-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-distance {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(28, 79, 58, 0.85);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
}

.place-info {
  padding: 14px;
}

.place-name {
  font-size: 1.05rem;
  color: #0B0F12;
}

.place-type {
  font-size: 0.75rem;
  color: var(--muted-text);
  margin: 2px 0 6px;
}

.place-rating {
  font-size: 0.78rem;
  font-weight: 700;
}

.interactive-map-wrapper {
  margin-top: 28px;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--brand-sage-border);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: #E5E7EB url('/img/petlo/place_park.jpg') center/cover;
  position: relative;
}

.map-pin {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--brand-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 3px solid white;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.pin-1 { top: 25%; left: 30%; }
.pin-2 { top: 60%; left: 45%; }
.pin-3 { top: 35%; left: 70%; }
.pin-4 { top: 75%; left: 20%; }

.map-controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: white;
  color: var(--brand-green);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--brand-sage-border);
}

/* SECTION 10: PLAYBOOK CTA */
.playbook-cta-section {
  background: white;
}

.playbook-banner-card {
  background: var(--brand-green);
  border-radius: 32px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.playbook-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.playbook-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
  opacity: 0.85;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.playbook-title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.1;
}

.playbook-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.playbook-btn-group {
  display: flex;
  gap: 16px;
}

.playbook-badge-icon {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  right: 40px;
}

/* SECTION 11: COMMUNITY */
.community-section {
  background: var(--bg-cream);
}

.community-card-banner {
  background: white;
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--brand-sage-border);
}

.community-title {
  font-size: 2rem;
  color: #0B0F12;
}

.community-sub {
  color: var(--muted-text);
  margin-bottom: 32px;
}

.community-avatars-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.member-avatar-item {
  text-align: center;
}

.member-avatar-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-green);
  margin-bottom: 6px;
}

.member-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-green);
}

.count-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-green);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.count-lbl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
}

/* SECTION 12: FOOTER */
.site-footer {
  background: var(--brand-green);
  color: white;
  padding: 80px 24px 32px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B0F12;
  border: 1.5px solid #E2E8F0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.social-links a i {
  color: #0B0F12;
}

.social-links a:hover {
  background: #F8FAFC;
  color: #0B0F12;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links-col a:hover {
  color: white;
}

.newsletter-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  color: #0B0F12;
  font-size: 0.88rem;
  flex: 1;
  outline: none;
  transition: all 0.2s ease;
}

.newsletter-form input::placeholder {
  color: #64748B;
}

.newsletter-form input:focus {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  background: #FFFFFF;
}

.newsletter-form button {
  background: #FFFFFF;
  color: #0B0F12;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form button i {
  color: #0B0F12;
}

.newsletter-form button:hover {
  background: #F8FAFC;
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* ALL MODAL BACKDROPS & BOXES */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 79, 58, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.hidden {
  display: none;
}

.modal-box {
  background: white;
  border-radius: 28px;
  width: 100%;
  max-width: 540px;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.video-modal-box { max-width: 640px; }
.course-modal-box { max-width: 580px; }
.host-modal-box { max-width: 520px; }
.auth-modal-box { max-width: 440px; }
.playbook-modal-box { max-width: 540px; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: var(--brand-green);
}

.modal-sub {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--brand-green);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--brand-sage-border);
  font-size: 0.92rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(28, 79, 58, 0.15);
}

.checkbox-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-label {
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.calc-box {
  background: var(--bg-cream);
  padding: 12px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--brand-sage-border);
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  color: var(--muted-text);
  cursor: pointer;
}

.auth-tab.active {
  color: var(--brand-green);
  border-bottom: 3px solid var(--brand-green);
}

.mock-video-player {
  background: var(--brand-green);
  color: white;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  margin: 20px 0;
}

.video-play-big {
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: white;
  cursor: pointer;
}

.quest-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quest-item {
  background: var(--bg-cream);
  border: 1px solid var(--brand-sage-border);
  padding: 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quest-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.quest-info {
  flex: 1;
}

.quest-info h4 {
  font-size: 0.95rem;
  color: var(--brand-green);
}

.quest-info p {
  font-size: 0.78rem;
  color: var(--muted-text);
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--brand-green);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hidden { display: none !important; }

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */

@media (max-width: 1024px) {
  .v-switcher-bar {
    flex-direction: column;
    gap: 8px;
    padding: 8px 16px;
    align-items: center;
  }
  .v-switcher-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .site-header {
    top: 0;
  }
  .header-container {
    padding: 12px 16px;
  }
  .nav-menu {
    display: none !important;
  }
  .header-actions {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #0B0F12;
    font-size: 1.2rem;
  }
  .hero-bg-card {
    height: auto;
    min-height: 520px;
    padding: 40px 0;
  }
  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .courses-grid, .products-grid, .adoption-pets-row, .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .host-banner-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .split-stories-events {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .v-switcher-bar {
    font-size: 0.78rem;
    text-align: center;
  }
  .v-btn {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .hero-section {
    padding: 12px;
  }
  .hero-bg-card {
    border-radius: 24px;
    padding: 32px 0;
    min-height: auto;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    margin-bottom: 14px;
  }
  .hero-headline {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero-subheadline {
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .hero-cta-group {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-cta-group .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.88rem;
  }
  .feature-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .feature-pill {
    padding: 8px 12px;
    border-radius: 14px;
  }
  .pill-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .pill-title {
    font-size: 0.78rem;
  }
  .pill-sub {
    font-size: 0.65rem;
  }
  .section {
    padding: 44px 16px;
  }
  .section-header.flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .tab-pills-group {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tab-pills-group::-webkit-scrollbar {
    display: none;
  }
  .tab-pill {
    padding: 8px 12px;
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .video-cards-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 0 16px;
    scrollbar-width: none;
  }
  .video-card {
    min-width: 0;
    flex: 0 0 calc(50% - 5px);
  }
  .video-thumb {
    height: 115px;
  }
  .video-meta {
    padding: 10px 8px;
  }
  .video-title {
    font-size: 0.88rem;
  }
  .video-tag {
    font-size: 0.65rem;
  }
  .video-carousel-wrapper {
    position: relative;
    padding: 0;
    margin: 0;
  }
  .carousel-btn {
    display: none !important;
  }
  .carousel-dots-container {
    display: flex !important;
  }

@media (min-width: 1025px) {
  .carousel-btn,
  .carousel-dots-container {
    display: none !important;
  }
}
  .boarding-hosts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
    margin-bottom: 24px;
  }
  .host-card {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }
  .host-card-img-wrap {
    height: 120px;
  }
  .host-badge-tag {
    font-size: 0.62rem;
    padding: 2px 7px;
    top: 6px;
    right: 6px;
    border-width: 1px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .host-card-body {
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .host-user-row {
    gap: 8px;
    margin-bottom: 8px;
    align-items: flex-start;
  }
  .host-avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .host-card-name {
    font-size: 0.82rem;
    line-height: 1.25;
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .host-location {
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
  }
  .host-card-footer {
    padding-top: 8px;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 4px;
  }
  .host-card-price {
    font-size: 0.98rem;
  }
  .host-card-footer .btn-outline-sm {
    padding: 3px 7px;
    font-size: 0.68rem;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .course-card {
    border-radius: 16px;
  }
  .course-img-wrap {
    height: 120px;
  }
  .course-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    top: 8px;
    right: 8px;
  }
  .course-body {
    padding: 12px 10px;
  }
  .course-meta-top {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }
  .course-card-title {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .course-card-desc {
    font-size: 0.76rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .course-footer {
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .course-price {
    font-size: 1.15rem;
  }
  .price-unit {
    font-size: 0.68rem;
  }
  .course-footer .btn-outline-sm {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  .shop-categories-bar {
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    justify-content: flex-start;
    gap: 5px 4px;
    padding-bottom: 0;
    margin-bottom: 16px;
  }
  .cat-item {
    padding: 5px 8px;
    font-size: 0.68rem;
    gap: 3px;
    white-space: nowrap;
  }
  .cat-item i {
    font-size: 0.72rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .product-card {
    padding: 10px;
    border-radius: 16px;
  }
  .product-img {
    height: 115px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
  .product-cat {
    font-size: 0.65rem;
  }
  .product-title {
    font-size: 0.88rem;
    line-height: 1.3;
    margin: 2px 0 8px;
  }
  .product-price-row {
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    justify-content: space-between;
  }
  .product-price {
    font-size: 1.05rem;
  }
  .product-price-row .btn-outline-sm {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .adoption-pets-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .pet-adopt-card {
    padding: 10px 6px;
    border-radius: 14px;
  }
  .pet-avatar-wrap {
    width: 54px;
    height: 54px;
    margin: 0 auto 4px;
    border-width: 2px;
  }
  .pet-name {
    font-size: 0.88rem;
    margin-bottom: 2px;
    line-height: 1.2;
  }
  .pet-desc {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .partner-logos-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
  }

  .places-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .place-card {
    border-radius: 16px;
  }
  .place-img-wrap {
    height: 105px;
  }
  .place-distance {
    font-size: 0.65rem;
    padding: 2px 6px;
    bottom: 6px;
    right: 6px;
  }
  .place-info {
    padding: 10px 8px;
  }
  .place-name {
    font-size: 0.92rem;
    margin-bottom: 2px;
  }
  .place-type {
    font-size: 0.68rem;
    margin: 2px 0 4px;
  }
  .place-rating {
    font-size: 0.72rem;
  }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .host-banner-card {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .host-title {
    font-size: 1.8rem;
  }
  .host-banner-img-wrap {
    height: 240px;
  }
  .host-floating-card {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 14px;
  }
  .playbook-banner-card {
    padding: 28px 18px;
    border-radius: 24px;
  }
  .playbook-title {
    font-size: 1.8rem;
  }
  .playbook-desc {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }
  .playbook-btn-group {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  .playbook-btn-group .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.82rem;
    white-space: nowrap;
    justify-content: center;
  }
  .playbook-badge-icon {
    display: none;
  }

  .host-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .host-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-newsletter-col {
    grid-column: 1 / -1;
  }
  .modal-box {
    padding: 24px 18px;
    max-width: 94vw;
  }
}
