/* ============================================================
   CAPTAIN QUINT'S FAMILY — Main Stylesheet (Redesign 2025)
   Brand: navy #024190 · teal #007BB9 · yellow #FFDF00 · orange #FE5F01
   Fonts: Baloo 2 (headings) · Sarabun (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand palette */
  --navy:        #024190;
  --navy-dark:   #012d64;
  --navy-light:  #1a5fb4;
  --teal:        #007BB9;
  --teal-dark:   #005f8f;
  --teal-light:  #1a9ed0;
  --yellow:      #FFDF00;
  --yellow-dark: #ccb200;
  --yellow-light:#fff9b0;
  --orange:      #FE5F01;
  --orange-dark: #c94c00;

  /* Legacy aliases (keeps businesses/*.html working) */
  --gold:        var(--yellow);
  --gold-dark:   var(--yellow-dark);
  --gold-light:  var(--yellow-light);
  --cyan:        var(--teal);
  --sage:        #8DC0BC;

  /* Neutrals */
  --dark:      #0d1117;
  --dark-2:    #161b22;
  --dark-3:    #1c2433;
  --text:      #1e293b;
  --text-light:#64748b;
  --text-muted:#94a3b8;
  --white:     #ffffff;
  --bg-light:  #f8fafc;
  --bg-section:#f1f5f9;

  /* Typography */
  --font-heading: 'Baloo 2', 'Sarabun', sans-serif;
  --font-body:    'Sarabun', sans-serif;

  /* Layout */
  --navbar-h:  76px;
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.2);
  --transition:all 0.3s ease;
  --max-w:     1200px;
  --section-py:90px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.05rem; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
}
.text-center  { text-align: center; }
.text-gold    { color: var(--yellow); }
.text-navy    { color: var(--navy); }
.text-orange  { color: var(--orange); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-py) 0; }

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider.left    { margin-left: 0; }
.divider.navy    { background: var(--navy); }
.divider.teal    { background: var(--teal); }
.divider.orange  { background: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

/* Yellow (primary brand action) */
.btn-primary,
.btn-yellow {
  background: var(--yellow);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(255,223,0,0.35);
}
.btn-primary:hover,
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,223,0,0.45);
}

/* Orange (CTA) */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(254,95,1,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(254,95,1,0.45);
}

/* Teal */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,123,185,0.35);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
}

/* Navy outline */
.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* White outline (on dark bg) */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.9);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-3px);
}

/* Dark */
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Navy fill */
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(2,20,60,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}
.navbar-brand {
  flex-shrink: 0;
}
.navbar-brand img {
  /* Never distort the company logo: constrain by max-height only, keep both
     dimensions auto so the aspect ratio is always preserved. */
  height: auto;
  width: auto;
  max-height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  transition: var(--transition);
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.navbar-menu li { position: relative; }
.navbar-menu a {
  display: block;
  padding: 8px 11px;
  color: rgba(255,255,255,0.88);
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--yellow);
  background: rgba(255,223,0,0.08);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,223,0,0.15);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.dropdown-menu a img {
  width: 28px; height: 28px;
  object-fit: contain;
  border-radius: 4px;
}
.dropdown-menu a:hover { background: rgba(255,223,0,0.1); color: var(--yellow); }
.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 4px;
  transition: transform 0.3s;
}
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Navbar right */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Work With Us CTA in navbar */
.navbar-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(254,95,1,0.35);
}
.navbar-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,95,1,0.45) !important;
}

/* Mobile hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO — FULL-WIDTH BACKGROUND (index.html) ===== */
.hero-main {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--navy-dark);
  background-image: url('../images/hero-husky-buoy.jpg');
  background-size: cover;
  background-position: center;
}
.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(2,65,144,0.85) 0%,
    rgba(2,65,144,0.55) 55%,
    rgba(2,65,144,0.20) 100%);
  z-index: 1;
}

/* Text side */
.hero-text-side {
  width: 100%;
  padding: calc(var(--navbar-h) + 60px) 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-text-inner { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,223,0,0.12);
  border: 1px solid rgba(255,223,0,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease;
}

.hero-main h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-headline-label {
  display: block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.hero-headline-yellow {
  display: block;
  color: var(--yellow);
}
.hero-headline-white {
  display: block;
  color: var(--white);
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.35s both;
}

/* ===== HERO — PAGE (inner pages) ===== */
.hero-page {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--teal-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(255,223,0,0.06) 0%, transparent 65%);
}
.hero-page .container { position: relative; z-index: 1; }
.hero-page h1 { color: var(--white); margin-bottom: 16px; }
.hero-page h1 span { color: var(--yellow); }
.hero-page p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== ECOSYSTEM / BUSINESS CARDS ===== */
.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

/* Navy-style cards (index.html ecosystem section) */
.business-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.business-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2,65,144,0.4);
  border-color: rgba(255,223,0,0.2);
}
.business-card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.card-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  transition: transform 0.35s ease;
}
.business-card:hover .card-logo { transform: scale(1.08); }
.business-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.business-card p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; }

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.tag-gold, .tag-yellow { background: rgba(255,223,0,0.15); color: var(--yellow); }
.tag-teal  { background: rgba(0,123,185,0.2);  color: var(--teal-light); }
.tag-cyan  { background: rgba(0,123,185,0.15); color: #5bc8f5; }
.tag-orange{ background: rgba(254,95,1,0.2);   color: #ff8a40; }

/* ===== STATS SECTION ===== */
.stats-section {
  background-color: var(--navy-dark);
  background-image: url('../images/stats-dog-surfing.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,65,144,0.85), rgba(1,44,99,0.90));
  pointer-events: none;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-text .section-label { color: var(--yellow); }
.stats-text h2 { color: var(--white); margin-bottom: 12px; }
.stats-text p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,223,0,0.08);
  border-color: rgba(255,223,0,0.25);
  transform: translateY(-4px);
}
.stat-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.stat-platform { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ===== WHAT WE DO (5 pillars) ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.pillar-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2,65,144,0.15);
}
.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(2,65,144,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.pillar-card:hover .pillar-icon {
  background: var(--navy);
  transform: scale(1.1);
}
.pillar-card h4 { font-size: 0.95rem; color: var(--navy); font-weight: 700; line-height: 1.3; }
.pillar-card p { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; line-height: 1.5; }

/* ===== OUR BRANDS SECTION ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.brand-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--navy-dark);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
  cursor: pointer;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-card-image {
  position: absolute;
  inset: 0;
}
.brand-card-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.brand-card:hover .brand-card-image img { transform: scale(1.07); }
.brand-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.1);
}
.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(2,65,144,0.85) 100%);
}
.brand-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  color: var(--white);
}
.brand-card-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--orange);
  color: white;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.brand-card-content h3 { font-size: 1.4rem; margin-bottom: 6px; color: white; }
.brand-card-content p  { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 16px; }
.brand-card-content .btn { padding: 9px 22px; font-size: 0.85rem; }

/* ===== WORK WITH US SECTION ===== */
.work-with-us {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal-dark) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.work-with-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(254,95,1,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,123,185,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.work-with-us .container { position: relative; z-index: 1; }
.work-with-us .section-label { color: var(--orange); }
.work-with-us .section-title { color: var(--white); }
.work-with-us .section-subtitle { color: rgba(255,255,255,0.65); }
.work-with-us .divider { background: var(--orange); }

.wwu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.wwu-card {
  text-align: center;
  padding: 28px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  color: var(--white);
}
.wwu-card:hover {
  background: rgba(254,95,1,0.15);
  border-color: rgba(254,95,1,0.35);
  transform: translateY(-6px);
}
.wwu-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s;
}
.wwu-card:hover .wwu-icon { transform: scale(1.2); }
.wwu-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.35;
}
.wwu-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,223,0,0.07) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2  { color: var(--white); margin-bottom: 16px; }
.cta-section p   { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1.1rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(2,65,144,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--navy);
  transform: scale(1.1);
}
.why-card h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.why-card p  { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text .section-label { margin-bottom: 12px; }
.story-text h2 { margin-bottom: 20px; }
.story-text p  { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.story-visual {
  position: relative;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-visual-logo {
  width: 220px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}
.story-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

/* Vision Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}
.vm-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vm-card.vision {
  background: var(--navy);
  color: var(--white);
}
.vm-card.mission {
  background: rgba(255,223,0,0.06);
  border: 2px solid rgba(255,223,0,0.2);
}
.vm-icon  { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.vm-card h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--yellow); }
.vm-card p  { line-height: 1.8; opacity: 0.85; }

/* Timeline */
.timeline {
  position: relative;
  padding: 40px 0;
  margin-top: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 40px;
  align-items: center;
}
.timeline-content {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(2,65,144,0.1);
}
.timeline-item:nth-child(odd)  .timeline-content { margin-right: 20px; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 20px; grid-column: 3; }
.timeline-item:nth-child(even) .timeline-dot     { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-empty   { grid-column: 1; grid-row: 1; }
.timeline-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(2,65,144,0.12);
}
.timeline-year {
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-content p  { font-size: 0.88rem; color: var(--text-light); }

/* ===== SOCIAL MEDIA ===== */
.social-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.social-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.social-icon       { font-size: 2.5rem; margin-bottom: 12px; }
.social-card h3 {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.social-count {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.social-suffix   { color: var(--navy); font-size: 1.8rem; }
.social-desc     { font-size: 0.85rem; color: var(--text-light); margin: 8px 0 20px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
}
.social-link:hover { color: var(--navy); gap: 10px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2,65,144,0.15);
}
.service-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.service-card h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Pet shop features */
.paradise-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.paradise-feature {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.paradise-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.paradise-feature .icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.paradise-feature h4    { font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.paradise-feature p     { font-size: 0.85rem; color: var(--text-light); }

/* Info box */
.info-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 40px;
  border-left: 4px solid var(--navy);
}
.info-box h4 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.info-row:last-child { margin-bottom: 0; }
.info-icon { color: var(--navy); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ===== PRODUCTS — QUINTSURF ===== */
.product-section { padding: 60px 0; }
.product-section:nth-child(even) { background: var(--bg-section); }
.product-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.product-section-line {
  flex: 1; height: 1px;
  background: rgba(2,65,144,0.15);
}
.product-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark);
  white-space: nowrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-section);
  cursor: pointer;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-body { padding: 20px; }
.product-body h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.product-body p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; margin-bottom: 14px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.product-tag {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(2,65,144,0.08);
  color: var(--navy);
}
.product-buy-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.buy-btn.tiktok { background: #010101; color: var(--white); }
.buy-btn.shopee { background: #ee4d2d; color: var(--white); }
.buy-btn.lazada { background: #0f146b; color: var(--white); }
.buy-btn:hover  { opacity: 0.85; transform: translateY(-2px); }

/* Feature badges */
.brand-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}
.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(2,65,144,0.1);
  transition: var(--transition);
  min-width: 140px;
  text-align: center;
}
.feature-badge:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.feature-badge .icon { font-size: 2rem; }
.feature-badge span  { font-size: 0.9rem; font-weight: 600; color: var(--dark); }

/* Channel buttons */
.channel-section { background: var(--navy-dark); padding: 80px 0; text-align: center; }
.channel-section h2  { color: var(--white); margin-bottom: 12px; }
.channel-section p   { color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.channel-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
}
.channel-btn.tiktok { background: #010101; color: var(--white); border: 1px solid #333; }
.channel-btn.shopee { background: #ee4d2d; color: var(--white); }
.channel-btn.lazada { background: #0f146b; color: var(--white); }
.channel-btn:hover  { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ===== IMPORT / KUMFI ===== */
.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 50px;
}
.brand-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2,65,144,0.15);
}
.brand-item img    { height: 80px; width: auto; object-fit: contain; margin: 0 auto 24px; }
.brand-item h3     { font-size: 1.5rem; margin-bottom: 12px; }
.brand-item p      { color: var(--text-light); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(2,65,144,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item-value { font-size: 0.98rem; color: var(--text); line-height: 1.5; }
.contact-item-value a { color: var(--teal); font-weight: 500; }
.contact-item-value a:hover { color: var(--navy); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(2,65,144,0.08);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 28px; color: var(--dark); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(2,65,144,0.1);
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success, .form-error {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-top: 16px;
  display: none;
}
.form-success { background: rgba(0,123,185,0.08); color: var(--teal);   border: 1px solid rgba(0,123,185,0.2); }
.form-error   { background: rgba(254,95,1,0.08);  color: var(--orange); border: 1px solid rgba(254,95,1,0.2); }
.form-success.show, .form-error.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--yellow);
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); padding-left: 6px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}
.social-ico:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-3px); }
.footer-contact-info {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.footer-contact-info span { display: block; margin-bottom: 8px; }
.footer-contact-info a { color: var(--teal-light); }
.footer-contact-info a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.35); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); }  to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== UTILS ===== */
.bg-light   { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }
.bg-navy    { background: var(--navy); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0 !important; }

/* ===== HERO PARTICLES (kept for bg decoration) ===== */
.hero-particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.hero-particles span {
  position: absolute;
  display: block;
  width: 4px; height: 4px;
  background: rgba(255,223,0,0.25);
  border-radius: 50%;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform:translateY(100vh) scale(0); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:1; }
  100% { transform:translateY(-100px) scale(1); opacity:0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .wwu-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  :root { --section-py: 70px; }
  .hero-text-side { padding: calc(var(--navbar-h) + 50px) 40px 70px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { height: 300px; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .brand-showcase { grid-template-columns: 1fr; }
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-item:nth-child(odd)  .timeline-content { margin-right:0; text-align:left; grid-column:2; }
  .timeline-item:nth-child(even) .timeline-content { margin-left:0; grid-column:2; }
  .timeline-item:nth-child(even) .timeline-empty   { display:none; }
  .timeline-dot { grid-column:1; grid-row:1; }
}

@media (max-width: 900px) {
  .navbar-menu a { padding: 8px 9px; font-size: 0.82rem; }
  .navbar-cta    { padding: 8px 14px !important; font-size: 0.8rem !important; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; --navbar-h: 64px; }

  /* Body scroll lock while mobile menu is open */
  body.menu-open {
    position: fixed;
    left: 0; right: 0;
    overflow: hidden;
  }

  /* Mobile nav */
  .navbar-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 28px;
    background: var(--navy-dark);
    border-bottom: 2px solid rgba(255,223,0,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    height: calc(100dvh - var(--navbar-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity   0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }
  .navbar-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity   0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0s;
  }
  .navbar-menu > li > a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-menu > li:last-child > a { border-bottom: none; }
  .navbar-toggle { display: flex; }
  .navbar-cta { margin: 8px 16px !important; border-radius: 12px !important; justify-content: center; display: flex; }

  /* Mobile dropdown accordion */
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: var(--radius-sm);
    margin: 4px 0 8px;
    padding: 4px;
    display: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }

  /* Layout */
  .hero-main {
    min-height: 70vh;
    background-image: url('../images/hero-husky-buoy-mobile.jpg');
  }
  .hero-main::before {
    background: rgba(2,65,144,0.8);
  }
  .hero-text-side { padding: calc(var(--navbar-h) + 40px) 24px 60px; }
  .hero-text-inner { max-width: 100%; }
  .hero-main h1 { font-size: clamp(2rem, 8vw, 3rem); }

  /* Company logo: smaller cap on mobile, ratio still preserved (max-height only) */
  .navbar-brand img { max-height: 36px; }

  /* Stats section: swap to a portrait crop so the dog isn't cut off on tall
     phone screens. Waiting on file: stats-dog-surfing-mobile.jpg (1080x1350). */
  .stats-section {
    padding: 60px 0;
    background-image: url('../images/stats-dog-surfing-mobile.jpg');
    background-size: cover;
    background-position: center;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .wwu-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .social-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .businesses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .vm-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .brand-showcase { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .btn { padding: 13px 26px; min-height: 48px; }
  .btn-sm { padding: 11px 20px; min-height: 44px; }
  .buy-btn { min-height: 40px; padding: 9px 14px; }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .social-stats { grid-template-columns: 1fr; }
  .paradise-features { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form  { padding: 20px 16px; }
  .brand-features { gap: 10px; }
  .feature-badge { min-width: 100px; padding: 14px 16px; }
  .channel-btns  { flex-direction: column; align-items: stretch; }
  .channel-btn   { justify-content: center; }
  .vm-card { padding: 28px 20px; }
  .hero-text-side { padding: calc(var(--navbar-h) + 24px) 20px 48px; }
  .section-subtitle { font-size: 1rem; }
  .footer-grid { gap: 24px; }
  .footer-social { flex-wrap: wrap; }
  .wwu-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid  { grid-template-columns: 1fr; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }
}
