﻿/* ==========================================================================
   CK TV Rental King - Main Stylesheet
   Version: 1.0.0
   Description: Premium, mobile-first responsive CSS for Malaysia's leading
                TV rental company.
   ========================================================================== */

/* ==========================================================================
   TABLE OF CONTENTS
   1.  Google Fonts Import
   2.  CSS Custom Properties (Variables)
   3.  CSS Reset & Base
   4.  Typography
   5.  Utility Classes
   6.  Layout (Container, Grid, Section)
   7.  Buttons
   8.  Top Bar
   9.  Site Header & Navigation
   10. Mobile Navigation
   11. Hero Section
   12. Page Banner (Inner Pages)
   13. Breadcrumb
   14. Service Cards & Grid
   15. Feature / Icon Blocks
   16. Trust Badges
   17. Gallery Grid
   18. CTA Strip
   19. FAQ Accordion
   20. Testimonials
   21. Pricing Cards
   22. How It Works
   23. Contact / Quote Form
   24. Location Cards
   25. Related Pages Block
   26. Coverage Map Section
   27. Size Comparison Table
   28. Icon Grid
   29. Callout / Highlight Box
   30. Pagination
   31. WhatsApp Float Button
   32. Mobile Sticky CTA Bar
   33. Scroll-to-Top Button
   34. Footer
   35. Responsive Images & Lazy Load
   36. Animations & Keyframes
   37. Print Styles
   ========================================================================== */

/* ==========================================================================
   1. GOOGLE FONTS IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   2. CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */
:root {
  /* --- Color Palette --- */
  --color-primary:       #8a6a16; /* Rich Gold Brown */
  --color-primary-light: #b78a1a;
  --color-primary-dark:  #6b4f10;
  --color-secondary:     #e8b800; /* Golden Yellow */
  --color-secondary-light: #f5c800;
  --color-secondary-dark:  #c49a00;
  --color-accent:        #ff6b35; /* Orange - CTA / WhatsApp */
  --color-accent-dark:   #e55a25;
  --color-dark:          #3a2a08;
  --color-light:         #fffcf6;
  --color-text:          #3f3524;
  --color-text-light:    #7a6a4a;
  --color-text-muted:    #a39272;
  --color-white:         #ffffff;
  --color-success:       #38a169;
  --color-success-light: #48bb78;
  --color-whatsapp:      #25D366;
  --color-whatsapp-dark: #1da851;
  --color-border:        #eadfcf;
  --color-border-light:  #f7f1e5;

  /* --- Typography --- */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Font Scale --- */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md:   1.125rem;  /* 18px */
  --text-lg:   1.25rem;   /* 20px */
  --text-xl:   1.5rem;    /* 24px */
  --text-2xl:  1.75rem;   /* 28px */
  --text-3xl:  2rem;      /* 32px */
  --text-4xl:  2.5rem;    /* 40px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.5rem;    /* 56px */

  /* --- Font Weights --- */
  --fw-light:     300;
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;
  --fw-black:     900;

  /* --- Line Heights --- */
  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;
  --leading-loose:  2;

  /* --- Spacing Scale --- */
  --space-1:  0.25rem;   /* 4px  */
  --space-2:  0.5rem;    /* 8px  */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */

  /* --- Border Radius --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-pill: 50px;
  --radius-full: 9999px;

  /* --- Box Shadows --- */
  --shadow-xs:  0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm:  0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-xl:  0 16px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-primary: 0 8px 24px rgba(165, 120, 20, 0.25);
  --shadow-secondary: 0 8px 24px rgba(232, 184, 0, 0.35);
  --shadow-accent: 0 8px 24px rgba(255, 107, 53, 0.35);

  /* --- Transitions --- */
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;

  /* --- Z-Index Scale --- */
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-float:     500;

  /* --- Layout --- */
  --container-max: 1200px;
  --container-pad: 1.5rem;
  --header-h:      72px;
  --topbar-h:      40px;
}

/* ==========================================================================
   3. CSS RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

input, button, textarea, select {
  font: inherit;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Focus Styles (Accessibility) --- */
:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Selection --- */
::selection {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--leading-tight);
  color: var(--color-dark);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  margin-bottom: var(--space-4);
  color: var(--color-text);
  line-height: var(--leading-relaxed);
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: var(--fw-semibold);
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--text-sm);
}

/* --- Section Heading Helper --- */
.section-heading {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  position: relative;
}

.section-heading span {
  color: var(--color-secondary);
}

.section-subheading {
  font-size: var(--text-md);
  color: var(--color-text-light);
  max-width: 600px;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(232, 184, 0, 0.12);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}

/* --- Underline Decoration --- */
.heading-underline {
  position: relative;
  display: inline-block;
}

.heading-underline::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill);
  margin-top: var(--space-3);
}

.heading-underline.center::after {
  margin: var(--space-3) auto 0;
}

/* --- Lists --- */
.content-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-4);
}

.content-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--fw-bold);
}

/* ==========================================================================
   5. UTILITY CLASSES
   ========================================================================== */
/* --- Text Alignment --- */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

/* --- Text Colors --- */
.text-primary   { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent    { color: var(--color-accent); }
.text-white     { color: var(--color-white); }
.text-light     { color: var(--color-text-light); }
.text-muted     { color: var(--color-text-muted); }
.text-success   { color: var(--color-success); }

/* --- Font Sizes --- */
.text-xs   { font-size: var(--text-xs); }
.text-sm   { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-md   { font-size: var(--text-md); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }

/* --- Font Weights --- */
.fw-regular  { font-weight: var(--fw-regular); }
.fw-medium   { font-weight: var(--fw-medium); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold     { font-weight: var(--fw-bold); }

/* --- Display --- */
.d-none    { display: none; }
.d-block   { display: block; }
.d-flex    { display: flex; }
.d-grid    { display: grid; }

/* --- Flex Utilities --- */
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-2  { gap: var(--space-2); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }

/* --- Spacing Utilities --- */
.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: var(--space-4); }
.mb-8  { margin-bottom: var(--space-8); }
.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }

/* --- Background Colors --- */
.bg-white   { background-color: var(--color-white); }
.bg-light   { background-color: var(--color-light); }
.bg-primary { background-color: var(--color-primary); }
.bg-dark    { background-color: var(--color-dark); }

/* --- Border Radius --- */
.rounded     { border-radius: var(--radius-md); }
.rounded-lg  { border-radius: var(--radius-lg); }
.rounded-pill{ border-radius: var(--radius-pill); }

/* --- Shadows --- */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* --- Visually Hidden (Accessibility) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   6. LAYOUT — CONTAINER, GRID, SECTION
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section-sm {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section-lg {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

/* --- 12-Column Responsive Grid --- */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-8) 0;
}

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary Button */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 12px 32px rgba(165, 120, 20, 0.35);
}

/* Secondary Button */
.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-dark);
  box-shadow: 0 12px 32px rgba(232, 184, 0, 0.45);
}

/* Outline Primary */
.btn-outline-primary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Outline White */
.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

/* Accent / CTA Button */
.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  color: var(--color-white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.50);
}

.btn-whatsapp svg,
.btn-whatsapp img {
  width: 20px;
  height: 20px;
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-md);
}

.btn-xl {
  padding: 1.125rem 2.75rem;
  font-size: var(--text-lg);
}

/* Full-width */
.btn-block {
  display: flex;
  width: 100%;
}

/* Pill shape */
.btn-pill {
  border-radius: var(--radius-pill);
}

/* Icon button */
.btn-icon {
  padding: 0.75rem;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
}

/* ------------------------------------------------------------------
   BEM Button Modifiers  (.btn--*)
   These are the canonical modifiers used on all inner pages.
   ------------------------------------------------------------------ */

/* Primary CTA — Gold / brand-secondary background, dark text */
.btn--primary {
  background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary-dark));
  color: var(--color-dark) !important;
  border-color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(232, 184, 0, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ffd24d, var(--color-secondary-dark));
  border-color: var(--color-secondary-dark);
  color: var(--color-dark) !important;
  box-shadow: 0 12px 32px rgba(232, 184, 0, 0.50);
}

/* Secondary — rich gold background, white text */
.btn--secondary {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
}
.btn--secondary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white) !important;
  box-shadow: 0 12px 32px rgba(165, 120, 20, 0.35);
}

/* Outline — transparent, gold border + text (for use on light backgrounds) */
.btn--outline {
  background-color: transparent;
  color: var(--color-primary) !important;
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  border-color: var(--color-primary);
}

/* Outline White — transparent, white border + text (for use on dark backgrounds) */
.btn--outline-white {
  background-color: transparent;
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.75);
}
.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-primary) !important;
  border-color: var(--color-white);
}

/* Ghost — fully transparent, white text (hero / dark sections) */
.btn--ghost {
  background-color: transparent;
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.9);
}

/* Light — white background, gold text (for dark section CTAs) */
.btn--light {
  background-color: var(--color-white);
  color: var(--color-primary) !important;
  border-color: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn--light:hover {
  background-color: var(--color-light);
  border-color: var(--color-light);
  color: var(--color-primary) !important;
}

/* WhatsApp — green */
.btn--whatsapp {
  background: linear-gradient(135deg, #39df79, var(--color-whatsapp-dark));
  color: var(--color-white) !important;
  border-color: var(--color-whatsapp);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #2fd26f, #178d45);
  border-color: var(--color-whatsapp-dark);
  color: var(--color-white) !important;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.50);
}
.btn--whatsapp svg,
.btn--whatsapp img {
  width: 20px;
  height: 20px;
}

/* Accent */
.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white) !important;
}

/* BEM Size Modifiers */
.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
}
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-md);
}
.btn--xl {
  padding: 1.125rem 2.75rem;
  font-size: var(--text-lg);
}

/* BEM Shape / Layout Modifiers */
.btn--block {
  display: flex;
  width: 100%;
}
.btn--pill {
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   8. TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-primary-dark);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.top-bar-item:hover {
  color: var(--color-secondary);
}

.top-bar-item svg,
.top-bar-item i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-secondary);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition-base);
}

.top-bar-social a:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

/* ==========================================================================
   9. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-white);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 100%;
}

/* --- Logo --- */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.site-logo-tagline {
  font-size: var(--text-xs);
  color: var(--color-secondary);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Primary Navigation --- */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0 var(--space-4);
  height: 100%;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-4);
  right: var(--space-4);
  height: 3px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* --- Dropdown arrow --- */
.nav-link .nav-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
  opacity: 0.6;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* --- Dropdown Menu --- */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base);
  z-index: var(--z-dropdown);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--color-light);
  color: var(--color-primary);
  padding-left: var(--space-6);
}

/* --- Header CTA --- */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* --- Hamburger Button --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.hamburger:hover {
  background: var(--color-light);
  border-color: var(--color-primary);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   10. MOBILE NAVIGATION
   ========================================================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-base);
  overflow-y: auto;
}

.mobile-nav.is-open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--color-text);
  transition: all var(--transition-base);
}

.mobile-nav-close:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-nav-menu {
  flex: 1;
  padding: var(--space-4) 0;
  list-style: none;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary);
  background: var(--color-light);
  padding-left: var(--space-6);
}

/* Mobile Sub-menu */
.mobile-subnav {
  background: var(--color-light);
  list-style: none;
  display: none;
}

.mobile-subnav.is-open {
  display: block;
}

.mobile-subnav a {
  display: block;
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.mobile-subnav a:hover {
  color: var(--color-primary);
  background: rgba(165, 120, 20, 0.05);
}

.mobile-nav-footer {
  padding: var(--space-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 42, 8, 0.6);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(2px);
  transition: all var(--transition-base);
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   11. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 42, 8, 0.92) 0%,
    rgba(165, 120, 20, 0.80) 50%,
    rgba(58, 42, 8, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-16) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(232, 184, 0, 0.15);
  border: 1px solid rgba(232, 184, 0, 0.4);
  color: var(--color-secondary);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
  backdrop-filter: blur(4px);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  animation: pulse-dot 2s ease infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--color-secondary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill);
  opacity: 0.4;
}

.hero-desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

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

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  font-weight: var(--fw-medium);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.hero-scroll-icon {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill);
  animation: scroll-dot 2s ease infinite;
}

/* ==========================================================================
   12. PAGE BANNER (INNER PAGES)
   ========================================================================== */
.page-banner {
  position: relative;
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232, 184, 0, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
}

.page-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--color-white) 0,
      var(--color-white) 1px,
      transparent 0,
      transparent 50%
    );
  background-size: 20px 20px;
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.page-banner-title span {
  color: var(--color-secondary);
}

.page-banner-desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto var(--space-4);
}

/* ==========================================================================
   13. BREADCRUMB
   ========================================================================== */
.breadcrumb {
  padding: var(--space-3) 0;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border-light);
}
/* Inside page-banner, breadcrumb is transparent */
.page-banner .breadcrumb {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin-bottom: var(--space-4);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  color: var(--color-text-muted);
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumb-item a:hover {
  color: var(--color-secondary);
}

.breadcrumb-item.active {
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
}

/* ==========================================================================
   14. SERVICE CARDS & GRID
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.service-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-light);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-secondary);
  color: var(--color-dark);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(165, 120, 20, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.service-card-price-from {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.service-card-price-amount {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
}

.service-card-price-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.service-card-footer {
  padding: 0 var(--space-5) var(--space-5);
}

/* Popular Badge */
.service-card.is-popular {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 0 0 var(--color-secondary), var(--shadow-md);
}

/* ==========================================================================
   15. FEATURE / ICON BLOCKS
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}

.feature-block {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-block:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(165, 120, 20, 0.08), rgba(232, 184, 0, 0.1));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 2rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.feature-block:hover .feature-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* ==========================================================================
   16. TRUST BADGES
   ========================================================================== */
.trust-badges {
  padding: var(--space-10) 0;
  background: var(--color-light);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-badge-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-border-light);
  white-space: nowrap;
}

.trust-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-item-value {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-black);
  color: var(--color-primary);
}

.trust-item-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   17. GALLERY GRID
   ========================================================================== */
.gallery-section {
  padding: var(--space-16) 0;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.gallery-filter-btn {
  padding: var(--space-2) var(--space-5);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}

.gallery-grid.cols-4 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-light);
  cursor: pointer;
  group: true;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 42, 8, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-1);
}

.gallery-item-cat {
  font-size: var(--text-xs);
  color: var(--color-secondary);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-item[data-hidden="true"] {
  display: none;
}

/* Gallery Mosaic layout */
.gallery-grid.mosaic .gallery-item:nth-child(4n+1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ==========================================================================
   18. CTA STRIP
   ========================================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: rgba(232, 184, 0, 0.06);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 40%;
  height: 150%;
  background: rgba(255, 107, 53, 0.06);
  border-radius: 50%;
}

.cta-strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.cta-strip-text {
  flex: 1;
  min-width: 280px;
}

.cta-strip-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: var(--leading-tight);
}

.cta-strip-title span {
  color: var(--color-secondary);
}

.cta-strip-desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ==========================================================================
   19. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: var(--space-16) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
}

.faq-item.is-open {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
  transition: background var(--transition-base);
}

.faq-question:hover {
  background: rgba(165, 120, 20, 0.03);
}

.faq-question-text {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  line-height: var(--leading-snug);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--color-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.faq-item.is-open .faq-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  border-top: 1px solid var(--color-border-light);
}

.faq-answer-inner p {
  margin-bottom: var(--space-3);
  color: var(--color-text-light);
}

/* ==========================================================================
   20. TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: var(--space-16) 0;
  background: var(--color-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--color-secondary);
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  opacity: 0.3;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-stars span {
  color: var(--color-secondary);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--leading-relaxed);
  flex: 1;
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-secondary);
  flex-shrink: 0;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: var(--text-lg);
  overflow: hidden;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  font-size: var(--text-base);
  margin-bottom: 2px;
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ==========================================================================
   21. PRICING CARDS
   ========================================================================== */
.pricing-section {
  padding: var(--space-16) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.is-featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
  position: relative;
}

.pricing-card.is-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--color-secondary);
  color: var(--color-dark);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  padding: var(--space-1) var(--space-5);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header {
  padding: var(--space-8) var(--space-6) var(--space-5);
  text-align: center;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-card.is-featured .pricing-header {
  background: var(--color-primary);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.pricing-card.is-featured .pricing-name {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
}

.pricing-currency {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-top: 6px;
}

.pricing-card.is-featured .pricing-currency {
  color: var(--color-secondary);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1;
}

.pricing-card.is-featured .pricing-price {
  color: var(--color-white);
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.pricing-card.is-featured .pricing-period {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

.pricing-card.is-featured .pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  padding: var(--space-6);
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(56, 161, 105, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-feature.unavailable {
  opacity: 0.45;
}

.pricing-feature.unavailable .pricing-feature-icon {
  background: rgba(160, 174, 192, 0.15);
  color: var(--color-text-muted);
}

.pricing-footer {
  padding: 0 var(--space-6) var(--space-6);
}

/* ==========================================================================
   22. HOW IT WORKS
   ========================================================================== */
.how-it-works {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 0;
  opacity: 0.25;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 88px;
  height: 88px;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.step-number-text {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1;
}

.step-icon {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 30px;
  height: 30px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-dark);
}

.step:hover .step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.step:hover .step-number-text {
  color: var(--color-white);
}

.step-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* ==========================================================================
   23. CONTACT / QUOTE FORM
   ========================================================================== */
.contact-section {
  padding: var(--space-16) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--header-h) + var(--space-6));
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  margin-bottom: 2px;
}

.contact-info-value a {
  color: var(--color-dark);
}

.contact-info-value a:hover {
  color: var(--color-primary);
}

.contact-info-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- Form --- */
.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.form-label.required::after {
  content: ' *';
  color: var(--color-accent);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  line-height: var(--leading-normal);
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(165, 120, 20, 0.12);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-control:disabled {
  background: var(--color-light);
  cursor: not-allowed;
  opacity: 0.65;
}

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

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* Form Validation States */
.form-control.is-valid {
  border-color: var(--color-success);
}

.form-control.is-invalid {
  border-color: var(--color-accent);
}

.form-feedback {
  font-size: var(--text-xs);
  margin-top: var(--space-1);
}

.form-feedback.valid {
  color: var(--color-success);
}

.form-feedback.invalid {
  color: var(--color-accent);
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* Checkbox and Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-check-label {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: var(--leading-relaxed);
}

/* Rental Calculator */
.rental-calculator {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-6);
  border: 1px solid var(--color-border-light);
}

.calculator-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-border);
}

.calculator-result {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  margin-top: var(--space-5);
}

.calculator-result-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2);
}

.calculator-result-amount {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.calculator-result-period {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   24. LOCATION CARDS
   ========================================================================== */
.location-section {
  padding: var(--space-16) 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-5);
}

.location-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.location-card-map {
  height: 160px;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.location-card-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-state {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  padding: 3px var(--space-3);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-card-body {
  padding: var(--space-4) var(--space-5);
}

.location-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.location-card-address {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.location-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.location-card-available {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-success);
  font-weight: var(--fw-medium);
}

.location-card-available::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   25. RELATED PAGES BLOCK
   ========================================================================== */
.related-pages {
  padding: var(--space-12) 0;
  background: var(--color-light);
  border-top: 1px solid var(--color-border-light);
}

.related-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
}

.related-page-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  transition: all var(--transition-base);
}

.related-page-item:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.related-page-icon {
  width: 36px;
  height: 36px;
  background: rgba(165, 120, 20, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.related-page-item:hover .related-page-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

/* ==========================================================================
   26. COVERAGE MAP SECTION
   ========================================================================== */
.coverage-section {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.coverage-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--color-primary-dark);
  aspect-ratio: 4/3;
}

.coverage-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-4);
  opacity: 0.9;
}

.coverage-map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-white);
  cursor: pointer;
  transition: transform var(--transition-base);
  box-shadow: 0 0 0 4px rgba(232, 184, 0, 0.3);
  animation: map-pulse 2.5s ease infinite;
}

.coverage-map-pin:hover {
  transform: scale(1.4);
}

.coverage-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.coverage-state-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.coverage-state-item:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

.coverage-state-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  flex-shrink: 0;
}

.coverage-state-dot.partial {
  background: var(--color-secondary);
}

/* ==========================================================================
   27. SIZE COMPARISON TABLE
   ========================================================================== */
.size-table-section {
  padding: var(--space-12) 0;
}

.size-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.size-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--color-white);
}

.size-table thead {
  background: var(--color-primary);
}

.size-table th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.size-table th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.size-table th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

.size-table td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.size-table tbody tr:last-child td {
  border-bottom: none;
}

.size-table tbody tr:nth-child(even) {
  background: var(--color-light);
}

.size-table tbody tr:hover {
  background: rgba(165, 120, 20, 0.04);
}

.size-table .price-cell {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  white-space: nowrap;
}

.size-table .popular-row {
  background: rgba(232, 184, 0, 0.06) !important;
  border-left: 3px solid var(--color-secondary);
}

/* ==========================================================================
   28. ICON GRID
   ========================================================================== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-5);
}

.icon-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.icon-grid-item:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
}

.icon-grid-icon {
  width: 56px;
  height: 56px;
  background: rgba(165, 120, 20, 0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  transition: all var(--transition-base);
}

.icon-grid-item:hover .icon-grid-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.icon-grid-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  transition: color var(--transition-base);
}

.icon-grid-item:hover .icon-grid-label {
  color: var(--color-white);
}

/* ==========================================================================
   29. CALLOUT / HIGHLIGHT BOX
   ========================================================================== */
.callout-box {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  background: rgba(165, 120, 20, 0.05);
  margin-bottom: var(--space-6);
}

.callout-box.callout-primary {
  border-color: var(--color-primary);
  background: rgba(165, 120, 20, 0.05);
}

.callout-box.callout-secondary {
  border-color: var(--color-secondary);
  background: rgba(232, 184, 0, 0.08);
}

.callout-box.callout-accent {
  border-color: var(--color-accent);
  background: rgba(255, 107, 53, 0.06);
}

.callout-box.callout-success {
  border-color: var(--color-success);
  background: rgba(56, 161, 105, 0.06);
}

.callout-box.callout-info {
  border-color: #d4a017;
  background: rgba(49, 130, 206, 0.06);
}

.callout-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.callout-box.callout-secondary .callout-title {
  color: var(--color-secondary-dark);
}

.callout-text {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: 0;
}

/* ==========================================================================
   30. PAGINATION
   ========================================================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-10);
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  background: var(--color-white);
}

.pagination-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(165, 120, 20, 0.05);
}

.pagination-item.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.pagination-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-ellipsis {
  color: var(--color-text-muted);
  width: 40px;
  text-align: center;
}

/* ==========================================================================
   31. WHATSAPP FLOAT BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all var(--transition-base);
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  animation: wa-float 3s ease infinite;
}

.whatsapp-float-btn:hover {
  background: var(--color-whatsapp-dark);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
  transform: scale(1.1);
  animation: none;
}

.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

/* Pulse ring */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--color-whatsapp);
  border-radius: var(--radius-full);
  animation: wa-ring 2.5s ease infinite;
  opacity: 0;
}

.whatsapp-float-label {
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* Legacy-compatible single-anchor WhatsApp float */
a.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: var(--z-float);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

a.whatsapp-float:hover {
  color: var(--color-white);
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

a.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
  max-width: none;
  fill: currentColor;
}

/* Legacy compatibility: pages still using .wa-float markup */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: var(--z-float);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.wa-float:hover {
  background: var(--color-whatsapp-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  display: block;
  max-width: none;
  fill: currentColor;
}

/* Legacy compatibility: pages still using .sticky-cta */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  display: none;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.10);
}

.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  line-height: 1;
}

.sticky-cta-call {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  background: var(--color-white);
}

.sticky-cta-call:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.sticky-cta-wa {
  color: var(--color-white);
  border: 2px solid var(--color-whatsapp);
  background: var(--color-whatsapp);
}

.sticky-cta-wa:hover {
  color: var(--color-white);
  border-color: var(--color-whatsapp-dark);
  background: var(--color-whatsapp-dark);
}

/* ==========================================================================
   32. MOBILE STICKY CTA BAR
   ========================================================================== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.10);
  display: none; /* shown via JS / media query */
  gap: var(--space-3);
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 0.75rem var(--space-4);
  font-size: var(--text-sm);
}

/* ==========================================================================
   33. SCROLL-TO-TOP BUTTON
   ========================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: var(--z-float);
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition-base);
  border: none;
}

.scroll-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(0) translateY(-4px);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   34. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.65);
  padding-top: var(--space-16);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-4);
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
}

.footer-logo-tagline {
  font-size: var(--text-xs);
  color: var(--color-secondary);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-base);
  padding: var(--space-1) 0;
}

.footer-links a::before {
  content: '›';
  font-size: 1rem;
  color: var(--color-secondary);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: var(--space-3);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  align-items: flex-start;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(232, 184, 0, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--leading-relaxed);
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-contact-text a:hover {
  color: var(--color-secondary);
}

/* --- Footer Bottom --- */
.footer-bottom {
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   35. RESPONSIVE IMAGES & LAZY LOAD
   ========================================================================== */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Lazy load placeholder */
.lazy {
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.lazy.loaded {
  opacity: 1;
}

.lazy-placeholder {
  background: linear-gradient(
    90deg,
    var(--color-border-light) 25%,
    var(--color-border) 37%,
    var(--color-border-light) 63%
  );
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
}

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

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

.aspect-ratio-16-9 {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.aspect-ratio-4-3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.aspect-ratio-1-1 {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

/* ==========================================================================
   36. ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

@keyframes scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(8px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes wa-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes wa-ring {
  0%   { transform: scale(0.8); opacity: 0.8; }
  80%  { transform: scale(2); opacity: 0; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes map-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 184, 0, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(232, 184, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 184, 0, 0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animate In Utility Classes */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- 1200px and below --- */
@media (max-width: 1200px) {
  :root {
    --container-pad: 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .hero-title {
    font-size: var(--text-5xl);
  }
}

/* --- 1024px and below --- */
@media (max-width: 1024px) {
  /* Header */
  .primary-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-title {
    font-size: var(--text-4xl);
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  /* Coverage */
  .coverage-inner {
    grid-template-columns: 1fr;
  }

  /* Grid adjustments */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps */
  .steps-grid::before {
    display: none;
  }
}

/* --- 768px and below --- */
@media (max-width: 768px) {
  :root {
    --container-pad: 1rem;
    --header-h: 64px;
    --topbar-h: 36px;
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.75rem;
  }

  /* Top Bar */
  .top-bar-left {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-desc {
    font-size: var(--text-base);
  }

  .hero-stats {
    gap: var(--space-5);
  }

  /* Section heading */
  .section-heading {
    font-size: var(--text-2xl);
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
  }

  /* Legacy mobile CTA bar */
  .sticky-cta {
    display: flex;
  }

  /* Adjust bottom spacing for mobile CTA */
  body.has-mobile-cta .whatsapp-float {
    bottom: calc(80px + var(--space-4));
  }

  .wa-float {
    bottom: calc(80px + var(--space-4));
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Section padding */
  .section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .section-lg {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  /* CTA strip */
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-actions {
    justify-content: center;
  }

  /* Pricing */
  .pricing-card.is-featured {
    order: -1;
  }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
  }

  a.whatsapp-float {
    width: 52px;
    height: 52px;
  }

  a.whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Page banner */
  .page-banner-title {
    font-size: var(--text-3xl);
  }

  /* Coverage states */
  .coverage-states {
    grid-template-columns: 1fr 1fr;
  }

  /* Scroll to top */
  .scroll-to-top {
    left: 16px;
    bottom: 80px;
  }
}

/* --- 480px and below --- */
@media (max-width: 480px) {
  :root {
    --text-3xl: 1.5rem;
    --text-2xl: 1.375rem;
    --text-xl: 1.25rem;
  }

  /* Mobile nav full width */
  .mobile-nav {
    width: 100%;
  }

  /* Hero */
  .hero-title {
    font-size: var(--text-2xl);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Location grid */
  .location-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Related pages */
  .related-pages-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Icon grid */
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Trust badges */
  .trust-badge-grid {
    gap: var(--space-4);
  }

  .trust-item {
    padding: var(--space-3);
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Contact form */
  .contact-form {
    padding: var(--space-5);
  }

  /* Rental calc */
  .rental-calculator {
    padding: var(--space-5);
  }

  /* CTA strip actions */
  .cta-strip-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile CTA buttons */
  .mobile-cta-bar .btn {
    font-size: var(--text-xs);
    padding: 0.625rem var(--space-3);
  }

  /* Breadcrumb */
  .breadcrumb-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-1);
  }

  .breadcrumb-item {
    white-space: nowrap;
  }
}

/* ==========================================================================
   37. PRINT STYLES
   ========================================================================== */
/* ==========================================================================
   BEM NAV CLASSES — used by index.html (homepage)
   ========================================================================== */

/* Header inner wrapper */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  height: 100%;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}
.logo__crown {
  font-size: 1.6rem;
  color: var(--color-secondary);
  line-height: 1;
}
.logo__text {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.2;
}
.logo__text strong {
  color: var(--color-secondary);
}

/* Nav container */
.site-nav {
  display: flex;
  height: 100%;
}
.site-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 0;
}

/* Nav items */
.site-nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Nav links */
.site-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 var(--space-4);
  height: 100%;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-base);
  position: relative;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-4);
  right: var(--space-4);
  height: 3px;
  background: var(--color-secondary);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}
.site-nav__link:hover,
.site-nav__link--active {
  color: var(--color-primary);
}
.site-nav__link:hover::after,
.site-nav__link--active::after {
  transform: scaleX(1);
}

/* Chevron icon */
.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
  opacity: 0.55;
  flex-shrink: 0;
}
.site-nav__item--dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown — hidden by default */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  padding: var(--space-2) 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base);
  z-index: var(--z-dropdown);
}
.site-nav__item--dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu__link {
  display: block;
  padding: 10px 20px;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.dropdown-menu__link:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

/* Wide dropdown for Locations (all cities + states) */
.dropdown-menu--wide {
  min-width: 280px;
  max-height: 520px;
  overflow-y: auto;
}
.dropdown-menu__group-label {
  display: block;
  padding: 8px 20px 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-light);
  margin-top: 4px;
}
.dropdown-menu__group-label:first-child {
  border-top: none;
  margin-top: 0;
}

/* Header CTA */
.site-header__cta { flex-shrink: 0; }

/* Hamburger BEM bars */
.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Responsive nav visibility */
@media (max-width: 1023px) {
  .site-nav { display: none; }
  .site-header__cta { display: none; }
}
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .site-nav { display: flex; height: 100%; }
}

/* Hero BEM sub-elements */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,65,15,0.85) 0%, rgba(90,65,15,0.6) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.hero__content { max-width: 780px; }
.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  backdrop-filter: blur(8px);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__stat strong {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: 1.1;
}
.hero__stat span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  backdrop-filter: blur(4px);
}
.trust-badge__icon {
  display: flex;
  align-items: center;
  color: var(--color-secondary);
}

/* Mobile nav BEM */
.mobile-nav-bar {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ==========================================================================
   BEM FOOTER CLASSES — used by stub pages and fix_links stubs
   ========================================================================== */

/* Footer grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer top wrapper — just adds padding, no grid */
.site-footer__top {
  padding-top: var(--space-16);
}

/* About/brand column */
.footer-col--about,
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Footer column heading */
.footer-col__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}
.footer-col__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: var(--radius-pill);
}

/* Footer link list */
.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Footer links */
.footer-col__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-base);
  padding: var(--space-1) 0;
}
.footer-col__link:hover {
  color: var(--color-secondary);
}

/* About text */
.footer-col__about-text,
.footer-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-5);
}

/* Footer contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-contact-list li {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
}

/* Footer bottom bar */
.site-footer__bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* Responsive footer grid */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* page-banner for stub pages */
.page-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  padding: var(--space-16) 0;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.page-banner h1 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
}

/* ==========================================================================
   END BEM FOOTER CLASSES
   ========================================================================== */

/* ==========================================================================
   HOMEPAGE BEM — Top Bar, Section Headers, Cards, Grids
   ========================================================================== */

/* ── TOP BAR BEM ──────────────────────────────────────────────────────────â”€ */
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.top-bar__tagline {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.top-bar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.top-bar__link:hover { color: var(--color-secondary); }
.top-bar__icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ── SECTION HEADERS BEM ────────────────────────────────────────────────── */
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-12);
}
.section__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(232,184,0,0.12);
  border: 1px solid rgba(232,184,0,0.3);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.section__subtitle {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.7;
}
.section__cta-row {
  text-align: center;
  margin-top: var(--space-10);
}

/* ── SERVICE GRID & CARD BEM ──────────────────────────────────────────────â”€ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
/* BEM aliases — map to existing .service-card-* styles */
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(165,120,20,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
  transition: all var(--transition-base);
}
.service-card:hover .service-card__icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-4);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary-dark);
  text-decoration: none;
  transition: color var(--transition-fast), gap var(--transition-fast);
  margin-top: auto;
}
.service-card__link:hover { color: var(--color-primary); gap: 8px; }
/* give card proper padding since HTML skips .service-card-body wrapper */
.service-card {
  padding: var(--space-6);
}

/* ── SIZE GRID & CARD BEM ────────────────────────────────────────────────── */
.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.size-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-base);
  position: relative;
}
.size-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.size-card--popular {
  border-color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(232,184,0,0.06), rgba(232,184,0,0.02));
  box-shadow: 0 0 0 1px var(--color-secondary), var(--shadow-md);
}
.size-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-secondary);
  color: var(--color-dark);
  font-size: 10px;
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.size-card__size {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1;
}
.size-card__use {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: var(--space-3);
}

/* ── FEATURE GRID & CARD BEM ──────────────────────────────────────────────â”€ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-primary);
}
.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ── EVENT GRID & CARD BEM ────────────────────────────────────────────────â”€ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.event-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.event-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.event-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  transition: all var(--transition-base);
}
.event-card:hover .event-card__icon {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
  color: var(--color-dark);
}
.event-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.event-card__desc {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  line-height: 1.4;
}

/* ── LOCATION TAGS BEM ────────────────────────────────────────────────────â”€ */
.locations-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.locations-primary,
.locations-secondary {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.locations-primary {
  border-color: var(--color-primary);
  border-width: 2px;
}
.locations-primary__title,
.locations-secondary__title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.location-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.location-tag:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.location-tag--highlight {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--fw-semibold);
}
.location-tag--highlight:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-dark);
}

/* ── RESPONSIVE HOMEPAGE GRIDS ────────────────────────────────────────────â”€ */
@media (max-width: 1024px) {
  .service-grid    { grid-template-columns: repeat(2, 1fr); }
  .size-grid       { grid-template-columns: repeat(4, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .event-grid      { grid-template-columns: repeat(2, 1fr); }
  .locations-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-grid    { grid-template-columns: 1fr; }
  .size-grid       { grid-template-columns: repeat(3, 1fr); }
  .features-grid   { grid-template-columns: 1fr; }
  .event-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .size-grid       { grid-template-columns: repeat(2, 1fr); }
  .event-grid      { grid-template-columns: 1fr; }
}

/* ── TOP BAR RESPONSIVE ──────────────────────────────────────────────────â”€ */
@media (max-width: 767px) {
  .top-bar__tagline { display: none; }
  .top-bar__inner { justify-content: center; }
  .top-bar__contact { gap: var(--space-4); }
}

/* ── HOW IT WORKS — STEPS ────────────────────────────────────────────────── */
.how-it-works { background: var(--color-light); }
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
/* Connecting line between steps */
.steps-list::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0.3;
  pointer-events: none;
}
.step-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.step-item__number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-light);
}
.step-item__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-top: var(--space-2);
  flex-shrink: 0;
}
.step-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 0;
}
.step-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}
/* How-it-works CTA link */
.how-it-works .section__cta-row a { margin-top: var(--space-8); }
@media (max-width: 900px) {
  .steps-list { grid-template-columns: repeat(2, 1fr); }
  .steps-list::before { display: none; }
}
@media (max-width: 480px) {
  .steps-list { grid-template-columns: 1fr; }
}

/* ── GALLERY GRID ────────────────────────────────────────────────────────── */
.gallery-section { background: var(--color-dark); }
.gallery-section .section__title,
.gallery-section .section__subtitle { color: var(--color-white); }
.gallery-section .section__eyebrow { color: var(--color-secondary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: var(--space-3);
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-primary);
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition-base);
}
/* Placeholder gradient backgrounds for each gallery item */
.gallery-item--1 { background: linear-gradient(135deg, #8a6a16 0%, #d4a017 100%); }
.gallery-item--2 { background: linear-gradient(135deg, #6b4f10 0%, #8a6a16 100%); }
.gallery-item--3 { background: linear-gradient(135deg, #c9a000 0%, #e8b800 100%); grid-row: span 2; }
.gallery-item--4 { background: linear-gradient(135deg, #d4a017 0%, #d4a017 100%); }
.gallery-item--5 { background: linear-gradient(135deg, #8a6a16 0%, #6b4f10 100%); }
.gallery-item--6 { background: linear-gradient(135deg, #e8b800 0%, #c9a000 100%); }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item__overlay {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  transition: all var(--transition-base);
}
.gallery-item__overlay span {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
}
/* Add TV icon in center of gallery items */
.gallery-item::before {
  content: '📺';
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0.4;
  pointer-events: none;
}
.gallery-item--3::before { content: '🖥️'; font-size: 4rem; transform: translate(-50%, -55%); }
.gallery-section .section__cta-row { margin-top: var(--space-8); }
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--3 { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS GRID ────────────────────────────────────────────────────â”€ */
.testimonials-section { background: var(--color-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}
/* Quote mark decoration */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-secondary);
  opacity: 0.15;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card__stars {
  color: var(--color-secondary);
  font-size: var(--text-lg);
  letter-spacing: 2px;
}
.testimonial-card__quote {
  margin: 0;
  flex: 1;
}
.testimonial-card__quote p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-size: var(--text-sm);
  margin: 0;
}
.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin: 0;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ACCORDION ────────────────────────────────────────────────────────â”€ */
.faq-container { max-width: 860px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}
.faq-item__question:hover { background: rgba(165,120,20,0.04); }
.faq-item__question[aria-expanded="true"] {
  background: rgba(165,120,20,0.06);
  border-bottom: 1px solid var(--color-border-light);
}
.faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}
.faq-item__question[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__answer {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.75;
}
.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 600px; }
.faq-item__answer[hidden] { display: none; }
.faq-item__answer p { margin: 0 0 var(--space-3); }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul {
  margin: var(--space-2) 0 var(--space-3) var(--space-5);
  list-style: disc;
}
.faq-item__answer li { margin-bottom: var(--space-1); }
/* Active FAQ item styles */
.faq-item.is-open {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.faq-item.is-open .faq-item__question {
  background: rgba(165,120,20,0.06);
  border-bottom: 1px solid var(--color-border-light);
}
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }

/* ── CTA STRIP BEM ────────────────────────────────────────────────────────â”€ */
.cta-strip__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-strip__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: var(--fw-black);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.cta-strip__subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.cta-strip__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.cta-strip__phone a {
  color: var(--color-secondary);
  text-decoration: none;
}
.cta-strip__phone a:hover { color: var(--color-white); }
.cta-strip__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ── TOP BAR RESPONSIVE ──────────────────────────────────────────────────â”€ */
@media (max-width: 767px) {
  .top-bar__tagline { display: none; }
  .top-bar__inner { justify-content: center; }
  .top-bar__contact { gap: var(--space-4); }
}

/* ==========================================================================
   END HOMEPAGE BEM
   ========================================================================== */

/* ==========================================================================
   INNER PAGES — Page Banner, Breadcrumb, Sections, All Components
   ========================================================================== */

/* ── SECTION BACKGROUNDS ──────────────────────────────────────────────────â”€ */
.section { padding: var(--space-16) 0; }
.section--white { background: var(--color-white); }
.section--light { background: var(--color-light); }
.section--alt   { background: #fff8ef; }
.section--dark  { background: var(--color-dark); }

/* ── PAGE BANNER (inner-page hero) ──────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
  padding: var(--space-12) 0 var(--space-12);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(232,184,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }

/* Breadcrumb inside page-banner */
.page-banner .breadcrumb,
.breadcrumb { margin-bottom: var(--space-5); }
.page-banner .breadcrumb__list,
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  flex-wrap: wrap;
  background: none !important;
  padding: 0 !important;
}
.page-banner .breadcrumb__item,
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
}
.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin-right: var(--space-2);
  color: rgba(255,255,255,0.4);
}
.page-banner .breadcrumb__link,
.breadcrumb__link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
  background: none !important;
}
.breadcrumb__link:hover { color: var(--color-secondary); }
.breadcrumb__item--active,
.breadcrumb__item--current { color: rgba(255,255,255,0.9); }

.page-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,184,0,0.15);
  border: 1px solid rgba(232,184,0,0.4);
  color: var(--color-secondary);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.page-banner__title,
.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--color-white) !important;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  max-width: 820px;
}
.page-banner__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: var(--space-7);
}
.page-banner__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.page-banner__stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.page-banner__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-secondary);
  line-height: 1;
}
.page-banner__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ── SECTION TITLE VARIANTS ──────────────────────────────────────────────── */
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}
.section__subtitle {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 720px;
}
.section__title--left { text-align: left; }
.section__title--center { text-align: center; }

/* ── SECTION LABEL (gold eyebrow pill) ────────────────────────────────────â”€ */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(232,184,0,0.12);
  border: 1px solid rgba(232,184,0,0.3);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}

/* ── SECTION HEADER ──────────────────────────────────────────────────────── */
.section-header { margin-bottom: var(--space-10); }
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.section-header p {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 680px;
}

/* ── CONTENT BLOCK ────────────────────────────────────────────────────────â”€ */
.content-block { max-width: 860px; }
.content-block--wide { max-width: 100%; }
.content-block p {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.content-block ul {
  margin: var(--space-3) 0 var(--space-4) var(--space-5);
  list-style: disc;
}
.content-block li {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

/* ── AEO BLOCK (definition / featured snippet) ────────────────────────────â”€ */
.aeo-block {
  display: flex;
  gap: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-8);
  max-width: 860px;
  box-shadow: var(--shadow-sm);
}
.aeo-block__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(232,184,0,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary-dark);
}
.aeo-block__content { flex: 1; }
.aeo-block__question {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.aeo-block__answer {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.75;
}
.aeo-block__answer p { margin-bottom: var(--space-3); }
.aeo-block__answer p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .aeo-block { flex-direction: column; gap: var(--space-4); }
}

/* ── PRODUCT GRID & CARD ──────────────────────────────────────────────────â”€ */
.product-grid { display: grid; gap: var(--space-6); }
.product-grid--2 { grid-template-columns: repeat(2,1fr); }
.product-grid--3 { grid-template-columns: repeat(3,1fr); }
.product-grid--4 { grid-template-columns: repeat(4,1fr); }
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.product-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.product-card__sizes {
  display: inline-block;
  width: fit-content;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary-dark);
  background: rgba(232,184,0,0.1);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}
.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary-dark);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.product-card__cta:hover { color: var(--color-primary); gap: 8px; }
@media (max-width: 1024px) { .product-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) {
  .product-grid--4,.product-grid--3,.product-grid--2 { grid-template-columns: 1fr; }
}

/* ── USE CASE GRID & CARD ────────────────────────────────────────────────── */
.use-case-grid { display: grid; gap: var(--space-4); }
.use-case-grid--3 { grid-template-columns: repeat(3,1fr); }
.use-case-grid--4 { grid-template-columns: repeat(4,1fr); }
.use-case-grid--6 { grid-template-columns: repeat(3,1fr); }
.use-case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}
.use-case-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(165,120,20,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.use-case-card:hover .use-case-card__icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.use-case-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.use-case-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .use-case-grid--6,.use-case-grid--4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .use-case-grid--6,.use-case-grid--4,.use-case-grid--3 { grid-template-columns: 1fr; }
}

/* ── COMPARISON TABLE ────────────────────────────────────────────────────── */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}
.table-wrapper table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.table-wrapper thead { background: var(--color-primary); color: var(--color-white); }
.table-wrapper th {
  padding: var(--space-3) var(--space-5);
  text-align: left;
  font-weight: var(--fw-semibold);
  font-family: var(--font-heading);
}
.table-wrapper td {
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text);
  line-height: 1.5;
  vertical-align: top;
}
.table-wrapper tr:last-child td { border-bottom: none; }
.table-wrapper tbody tr:nth-child(even) { background: var(--color-light); }
.table-wrapper tbody tr:hover { background: rgba(165,120,20,0.04); }
.table-wrapper td:first-child { font-weight: var(--fw-medium); color: var(--color-primary); }

/* ── SIZES GRID (inner page, differs from homepage size-grid) ────────────── */
.sizes-grid { display: grid; gap: var(--space-4); }
.sizes-grid--5 { grid-template-columns: repeat(5,1fr); }
.sizes-grid--4 { grid-template-columns: repeat(4,1fr); }
.sizes-grid--3 { grid-template-columns: repeat(3,1fr); }
.sizes-grid .size-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-base);
  text-decoration: none;
}
.sizes-grid .size-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.size-card-inch {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1;
}
.size-card-unit { font-size: var(--text-sm); color: var(--color-text-muted); }
.size-card-label { font-size: var(--text-xs); color: var(--color-text-light); line-height: 1.4; }
.size-card.featured,
.sizes-grid .size-card.featured {
  border-color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(232,184,0,0.06), rgba(232,184,0,0.02));
  box-shadow: 0 0 0 1px var(--color-secondary), var(--shadow-md);
}
@media (max-width: 900px) { .sizes-grid--5 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 480px) {
  .sizes-grid--5,.sizes-grid--4 { grid-template-columns: repeat(2,1fr); }
}

/* ── STEPS GRID & CARD (inner page) ──────────────────────────────────────â”€ */
.steps-grid { display: grid; gap: var(--space-6); position: relative; }
.steps-grid--4 { grid-template-columns: repeat(4,1fr); }
.steps-grid--3 { grid-template-columns: repeat(3,1fr); }
.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-top: var(--space-8);
  transition: all var(--transition-base);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.step-card__number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-light);
}
.step-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.step-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.step-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.65;
}
@media (max-width: 900px) { .steps-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) {
  .steps-grid--4,.steps-grid--3 { grid-template-columns: 1fr; }
}

/* ── FACTS GRID & CARD ────────────────────────────────────────────────────â”€ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--space-5);
}
.fact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.fact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fact-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(232,184,0,0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary-dark);
  margin: 0 auto var(--space-3);
}
.fact-card__value {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.fact-card__label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
}
@media (max-width: 900px) { .facts-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .facts-grid { grid-template-columns: 1fr; } }

/* ── GALLERY STRIP (placeholders) ────────────────────────────────────────â”€ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-4);
}
.gallery-placeholder {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  overflow: hidden;
  position: relative;
}
.gallery-placeholder--2 {
  background: linear-gradient(135deg, #6b4f10 0%, var(--color-primary) 100%);
}
.gallery-placeholder--3 {
  background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
}
.gallery-placeholder::before {
  content: '📺';
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-65%);
  opacity: 0.3;
}
.gallery-placeholder__label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) { .gallery-strip { grid-template-columns: 1fr; } }

/* ── COMPARISON CALLOUT ──────────────────────────────────────────────────── */
.comparison-callout {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
}
.comparison-callout__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}
.comparison-callout__text {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.comparison-callout__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ── SIZE LINKS (jump between sizes) ────────────────────────────────────── */
.size-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: var(--space-2) var(--space-3);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.size-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.size-link--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ── RELATED GRID & CARDS ────────────────────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--space-4);
}
.related-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}
.related-card__size {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
}
.related-card__label { font-size: var(--text-xs); color: var(--color-text-light); }
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }

/* ── RELATED LINKS GRID (services links) ──────────────────────────────────â”€ */
.related-links-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-4);
}
.related-links-grid a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.related-links-grid a:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
@media (max-width: 900px) { .related-links-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .related-links-grid { grid-template-columns: 1fr; } }

/* ── STANDS GRID & CARD ──────────────────────────────────────────────────── */
.stands-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-6);
}
.stand-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.stand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stand-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
.stand-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.stand-card__desc { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.7; }
@media (max-width: 900px) { .stands-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .stands-grid { grid-template-columns: 1fr; } }

/* ── TOUCH COMPARISON ────────────────────────────────────────────────────── */
.touch-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.touch-option {
  background: var(--color-white);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.touch-option--touch {
  border-color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(232,184,0,0.05), rgba(232,184,0,0.02));
}
.touch-option__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border-light);
}
.touch-option__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.touch-option__list li {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.5;
  padding-left: var(--space-5);
  position: relative;
}
.touch-option__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary-dark);
  font-weight: var(--fw-bold);
}
@media (max-width: 640px) { .touch-comparison { grid-template-columns: 1fr; } }

/* ── TWO-COL & INTRO CONTENT ──────────────────────────────────────────────â”€ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.two-col--60-40 { grid-template-columns: 3fr 2fr; }
.two-col--40-60 { grid-template-columns: 2fr 3fr; }
.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.intro-content__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.intro-content__body p {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.75;
}
.intro-content__body ul {
  margin-left: var(--space-5);
  list-style: disc;
}
.intro-content__body li {
  font-size: var(--text-md);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-1);
}
@media (max-width: 768px) {
  .two-col,.two-col--60-40,.two-col--40-60,.intro-content { grid-template-columns: 1fr; }
}

/* ── CARD GRID (location pages) ──────────────────────────────────────────── */
.card-grid { display: grid; gap: var(--space-5); }
.card-grid--3col { grid-template-columns: repeat(3,1fr); }
.card-grid--4col { grid-template-columns: repeat(4,1fr); }
.location-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-decoration: none;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.location-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.location-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.location-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  flex: 1;
}
.location-card__cta {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary-dark);
}
@media (max-width: 900px) {
  .card-grid--4col { grid-template-columns: repeat(2,1fr); }
  .card-grid--3col { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .card-grid--4col,.card-grid--3col { grid-template-columns: 1fr; }
}

/* ── TAGS CLOUD / AREA TAGS ──────────────────────────────────────────────── */
.tags-cloud { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.area-tag:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   Touch Size Page Enhancements (Professional Upgrade)
   ========================================================================== */
/* Class aliases used by touch-screen pages */
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .card-grid--4,
  .card-grid--3 { grid-template-columns: 1fr; }
}

.location-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.25;
}

.location-card--popular {
  border-color: rgba(232, 184, 0, 0.65);
  box-shadow: 0 12px 28px rgba(232, 184, 0, 0.2);
  position: relative;
}
.location-card--popular::before {
  content: "Most Popular";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-secondary-light), var(--color-secondary-dark));
  color: var(--color-dark);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.feature-box {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(165, 120, 20, 0.28);
}
.feature-box__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.feature-box__desc {
  color: var(--color-text-light);
  line-height: 1.65;
}

.comparison-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  overflow-y: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}
.comparison-row {
  display: flex;
  min-width: 760px;
  border-bottom: 1px solid var(--color-border-light);
}
.comparison-row:last-child {
  border-bottom: 0;
}
.comparison-row > div {
  flex: 1;
  padding: 14px 16px;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--color-text);
}
.comparison-row > div:first-child {
  flex: 1.15;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  background: rgba(165, 120, 20, 0.05);
}
.comparison-row:first-child {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}
.comparison-row:first-child > div {
  color: var(--color-white);
  font-weight: var(--fw-semibold);
}
.comparison-row:first-child > div:first-child {
  background: transparent;
}
.comparison-row:nth-child(odd):not(:first-child) {
  background: rgba(148, 163, 184, 0.06);
}

/* Size-page professional visual identity (gold + white theme) */
body.touch-size-page {
  --size-accent: var(--color-secondary-dark);
  --size-accent-2: var(--color-secondary-light);
}
body.touch-size-page .page-banner {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(145deg, #fffef8 0%, #f8efcf 56%, #efd693 100%);
}
body.touch-size-page .page-banner .breadcrumb__item,
body.touch-size-page .page-banner .breadcrumb__item--active,
body.touch-size-page .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.touch-size-page .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.45);
}
body.touch-size-page .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.82);
}
body.touch-size-page .page-banner__title,
body.touch-size-page .page-banner h1 {
  color: var(--color-dark) !important;
}
body.touch-size-page .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.74);
}
body.touch-size-page .page-banner__badge {
  background: rgba(232, 184, 0, 0.18);
  color: #8a6300;
  border: 1px solid rgba(196, 154, 0, 0.38);
}
body.touch-size-page .section--light {
  background: #fffcf2;
}
body.touch-size-page .aeo-block {
  border-left: 4px solid var(--size-accent);
  box-shadow: var(--shadow-md);
}
body.touch-size-page .related-card {
  border-top: 3px solid var(--size-accent);
}
body.touch-size-page .related-card:hover {
  box-shadow: 0 14px 34px rgba(160, 120, 0, 0.14);
}
body.touch-size-page .btn--primary {
  border-color: var(--size-accent);
  box-shadow: 0 12px 28px rgba(201, 156, 0, 0.28);
}

/* Touch-screen commercial polish: premium gold/white identity and stronger CTA clarity */
body.touch-size-page .site-header,
body.touch-service-page .site-header {
  border-bottom: 1px solid rgba(196, 154, 0, 0.22);
  box-shadow: 0 8px 24px rgba(58, 42, 8, 0.06);
}
body.touch-size-page .site-nav__link--active,
body.touch-service-page .site-nav__link--active {
  color: #8a6300 !important;
}
body.touch-size-page .site-header__cta,
body.touch-service-page .site-header__cta {
  box-shadow: 0 10px 26px rgba(196, 154, 0, 0.30);
}
body.touch-size-page .page-banner__actions .btn,
body.touch-service-page .page-banner__actions .btn {
  min-width: 240px;
  justify-content: center;
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
}
body.touch-size-page .comparison-table,
body.touch-service-page .comparison-table {
  border-color: rgba(196, 154, 0, 0.36);
  box-shadow: 0 16px 34px rgba(58, 42, 8, 0.09);
}
body.touch-size-page .comparison-row:first-child,
body.touch-service-page .comparison-row:first-child {
  background: linear-gradient(135deg, #8a6300, #c49a00);
}
body.touch-size-page .related-card,
body.touch-service-page .related-card,
body.touch-size-page .location-card,
body.touch-service-page .location-card {
  box-shadow: 0 10px 24px rgba(58, 42, 8, 0.06);
}

body.touch-service-page--interactive .page-banner {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #fffef8 0%, #f8efcf 56%, #efd693 100%);
}
body.touch-service-page--interactive .page-banner .breadcrumb__item,
body.touch-service-page--interactive .page-banner .breadcrumb__item--active,
body.touch-service-page--interactive .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.touch-service-page--interactive .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.45);
}
body.touch-service-page--interactive .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.touch-service-page--interactive .page-banner__title,
body.touch-service-page--interactive .page-banner h1 {
  color: var(--color-dark) !important;
}
body.touch-service-page--interactive .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.74);
}
body.touch-service-page--interactive .page-banner__badge {
  background: rgba(232, 184, 0, 0.18);
  color: #8a6300;
  border: 1px solid rgba(196, 154, 0, 0.38);
}
body.touch-service-page--interactive .section--light {
  background: #fffcf2;
}

/* Exhibition event page visual identity */
body.event-page--exhibition .page-banner {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(145deg, #fffef8 0%, #f8efcf 56%, #efd693 100%);
}
body.event-page--exhibition .page-banner .breadcrumb__item,
body.event-page--exhibition .page-banner .breadcrumb__item--active,
body.event-page--exhibition .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.event-page--exhibition .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.45);
}
body.event-page--exhibition .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.event-page--exhibition .page-banner__title,
body.event-page--exhibition .page-banner h1 {
  color: var(--color-dark) !important;
}
body.event-page--exhibition .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.74);
}
body.event-page--exhibition .page-banner__badge {
  background: rgba(232, 184, 0, 0.18);
  color: #8a6300;
  border: 1px solid rgba(196, 154, 0, 0.38);
}
body.event-page--exhibition .section--light {
  background: #fffcf2;
}
body.event-page--exhibition .related-card {
  border-top: 3px solid rgba(196, 154, 0, 0.52);
}

body.event-page--corporate .page-banner {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(145deg, #fffdf7 0%, #f8efcf 54%, #f9efd8 100%);
}
body.event-page--corporate .page-banner .breadcrumb__item,
body.event-page--corporate .page-banner .breadcrumb__item--active,
body.event-page--corporate .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.event-page--corporate .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.45);
}
body.event-page--corporate .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.event-page--corporate .page-banner__title,
body.event-page--corporate .page-banner h1 {
  color: var(--color-dark) !important;
}
body.event-page--corporate .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.74);
}
body.event-page--corporate .page-banner__badge {
  background: rgba(165, 120, 20, 0.12);
  color: #8a6a16;
  border: 1px solid rgba(165, 120, 20, 0.24);
}
body.event-page--corporate .section--light {
  background: #fffdf7;
}
body.event-page--corporate .related-card {
  border-top: 3px solid rgba(165, 120, 20, 0.40);
}

/* Mall activation event page visual identity */
body.event-page--mall-activation .page-banner {
  background:
    radial-gradient(circle at 83% 18%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 47%),
    linear-gradient(145deg, #fffef8 0%, #f9efd6 52%, #eac97f 100%);
}
body.event-page--mall-activation .page-banner .breadcrumb__item,
body.event-page--mall-activation .page-banner .breadcrumb__item--active,
body.event-page--mall-activation .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.event-page--mall-activation .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.44);
}
body.event-page--mall-activation .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.event-page--mall-activation .page-banner__title,
body.event-page--mall-activation .page-banner h1 {
  color: var(--color-dark) !important;
}
body.event-page--mall-activation .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.76);
}
body.event-page--mall-activation .page-banner__badge {
  background: rgba(232, 184, 0, 0.18);
  color: #8a6300;
  border: 1px solid rgba(196, 154, 0, 0.40);
}
body.event-page--mall-activation .section--light {
  background: #fffbf2;
}
body.event-page--mall-activation .related-card {
  border-top: 3px solid rgba(196, 154, 0, 0.50);
}
body.event-page--mall-activation .comparison-table {
  border-color: rgba(196, 154, 0, 0.34);
  box-shadow: 0 16px 34px rgba(58, 42, 8, 0.08);
}
body.event-page--mall-activation .comparison-row:first-child {
  background: linear-gradient(135deg, #8a6300, #c49a00);
}
body.event-page--mall-activation .page-banner__actions .btn {
  min-width: 240px;
  justify-content: center;
}
body.event-page--mall-activation .mall-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
body.event-page--mall-activation .mall-point-list {
  margin: var(--space-3) 0 var(--space-4);
  padding: 0;
  list-style: none;
  counter-reset: mall-point;
}
body.event-page--mall-activation .mall-point-list li {
  margin-bottom: var(--space-3);
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.7;
}
body.event-page--mall-activation .mall-point-list li::before {
  counter-increment: mall-point;
  content: counter(mall-point);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 0, 0.42);
  background: rgba(196, 154, 0, 0.14);
  color: #8a6300;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
}
body.event-page--mall-activation .mall-step,
body.event-page--mall-activation .mall-op-step {
  border-top: 3px solid rgba(196, 154, 0, 0.34);
}
body.event-page--mall-activation .mall-step__tag,
body.event-page--mall-activation .mall-op-step__tag {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 154, 0, 0.38);
  background: rgba(196, 154, 0, 0.10);
  color: #8a6300;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
body.event-page--mall-activation .mall-check-item {
  border-left: 3px solid rgba(196, 154, 0, 0.38);
}
body.event-page--mall-activation .faq-item__question {
  color: #5f4700;
}
@media (max-width: 900px) {
  body.event-page--mall-activation .mall-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Conference event page visual identity */
body.event-page--conference .page-banner {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, #fffcf6 0%, #f8efcf 54%, #f9efd8 100%);
}
body.event-page--conference .page-banner .breadcrumb__item,
body.event-page--conference .page-banner .breadcrumb__item--active,
body.event-page--conference .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.event-page--conference .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.42);
}
body.event-page--conference .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.event-page--conference .page-banner__title,
body.event-page--conference .page-banner h1 {
  color: var(--color-dark) !important;
}
body.event-page--conference .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.75);
}
body.event-page--conference .page-banner__badge {
  background: rgba(23, 53, 103, 0.12);
  color: #6b4f10;
  border: 1px solid rgba(23, 53, 103, 0.25);
}
body.event-page--conference .section--light {
  background: #fffcf6;
}
body.event-page--conference .related-card {
  border-top: 3px solid rgba(23, 53, 103, 0.35);
}
body.event-page--conference .comparison-table {
  border-color: rgba(23, 53, 103, 0.26);
  box-shadow: 0 16px 34px rgba(58, 42, 8, 0.08);
}
body.event-page--conference .comparison-row:first-child {
  background: linear-gradient(135deg, #6b4f10, #b78a1a);
}
body.event-page--conference .page-banner__actions .btn {
  min-width: 240px;
  justify-content: center;
}
body.event-page--conference .conference-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
body.event-page--conference .conference-point-list {
  margin: var(--space-3) 0 var(--space-4);
  padding: 0;
  list-style: none;
  counter-reset: conference-point;
}
body.event-page--conference .conference-point-list li {
  margin-bottom: var(--space-3);
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.7;
}
body.event-page--conference .conference-point-list li::before {
  counter-increment: conference-point;
  content: counter(conference-point);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(23, 53, 103, 0.40);
  background: rgba(23, 53, 103, 0.12);
  color: #6b4f10;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
}
body.event-page--conference .conference-step {
  border-top: 3px solid rgba(23, 53, 103, 0.32);
}
body.event-page--conference .conference-step__tag {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 53, 103, 0.34);
  background: rgba(23, 53, 103, 0.10);
  color: #6b4f10;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
body.event-page--conference .conference-check-item {
  border-left: 3px solid rgba(23, 53, 103, 0.34);
}
body.event-page--conference .faq-item__question {
  color: #6b4f10;
}
@media (max-width: 900px) {
  body.event-page--conference .conference-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* School event page visual identity */
body.event-page--school .page-banner {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(145deg, #fffdf7 0%, #f8efcf 52%, #f9efd8 100%);
}
body.event-page--school .page-banner .breadcrumb__item,
body.event-page--school .page-banner .breadcrumb__item--active,
body.event-page--school .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.event-page--school .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.42);
}
body.event-page--school .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.event-page--school .page-banner__title,
body.event-page--school .page-banner h1 {
  color: var(--color-dark) !important;
}
body.event-page--school .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.75);
}
body.event-page--school .page-banner__badge {
  background: rgba(26, 96, 110, 0.10);
  color: #8a6300;
  border: 1px solid rgba(26, 96, 110, 0.28);
}
body.event-page--school .section--light {
  background: #fff8ef;
}
body.event-page--school .related-card {
  border-top: 3px solid rgba(26, 96, 110, 0.38);
}
body.event-page--school .comparison-table {
  border-color: rgba(26, 96, 110, 0.28);
  box-shadow: 0 16px 34px rgba(58, 42, 8, 0.07);
}
body.event-page--school .comparison-row:first-child {
  background: linear-gradient(135deg, #8a6300, #8a6300);
}
body.event-page--school .page-banner__actions .btn {
  min-width: 240px;
  justify-content: center;
}
body.event-page--school .school-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
body.event-page--school .school-point-list {
  margin: var(--space-3) 0 var(--space-4);
  padding: 0;
  list-style: none;
  counter-reset: school-point;
}
body.event-page--school .school-point-list li {
  margin-bottom: var(--space-3);
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.7;
}
body.event-page--school .school-point-list li::before {
  counter-increment: school-point;
  content: counter(school-point);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(26, 96, 110, 0.40);
  background: rgba(26, 96, 110, 0.12);
  color: #8a6300;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
}
body.event-page--school .school-step {
  border-top: 3px solid rgba(26, 96, 110, 0.32);
}
body.event-page--school .school-step__tag {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 96, 110, 0.34);
  background: rgba(26, 96, 110, 0.10);
  color: #8a6300;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
body.event-page--school .school-check-item {
  border-left: 3px solid rgba(26, 96, 110, 0.34);
}
body.event-page--school .faq-item__question {
  color: #8a6300;
}
@media (max-width: 900px) {
  body.event-page--school .school-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Product launch event page visual identity */
body.event-page--product-launch .page-banner {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, #fffef8 0%, #f8ecd0 54%, #eac06a 100%);
}
body.event-page--product-launch .page-banner .breadcrumb__item,
body.event-page--product-launch .page-banner .breadcrumb__item--active,
body.event-page--product-launch .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.event-page--product-launch .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.45);
}
body.event-page--product-launch .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.event-page--product-launch .page-banner__title,
body.event-page--product-launch .page-banner h1 {
  color: var(--color-dark) !important;
}
body.event-page--product-launch .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.75);
}
body.event-page--product-launch .page-banner__badge {
  background: rgba(232, 184, 0, 0.18);
  color: #8a6300;
  border: 1px solid rgba(196, 154, 0, 0.40);
}
body.event-page--product-launch .section--light {
  background: #fffbf2;
}
body.event-page--product-launch .related-card {
  border-top: 3px solid rgba(196, 154, 0, 0.52);
}
body.event-page--product-launch .comparison-table {
  border-color: rgba(196, 154, 0, 0.34);
  box-shadow: 0 16px 34px rgba(58, 42, 8, 0.08);
}
body.event-page--product-launch .comparison-row:first-child {
  background: linear-gradient(135deg, #8a6300, #c49a00);
}
body.event-page--product-launch .page-banner__actions .btn {
  min-width: 240px;
  justify-content: center;
}
body.event-page--product-launch .launch-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
body.event-page--product-launch .launch-point-list {
  margin: var(--space-3) 0 var(--space-4);
  padding: 0;
  list-style: none;
  counter-reset: launch-point;
}
body.event-page--product-launch .launch-point-list li {
  margin-bottom: var(--space-3);
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.7;
}
body.event-page--product-launch .launch-point-list li::before {
  counter-increment: launch-point;
  content: counter(launch-point);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 0, 0.45);
  background: rgba(196, 154, 0, 0.15);
  color: #8a6300;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
}
body.event-page--product-launch .launch-step {
  border-top: 3px solid rgba(196, 154, 0, 0.35);
}
body.event-page--product-launch .launch-step__tag {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 154, 0, 0.40);
  background: rgba(196, 154, 0, 0.12);
  color: #8a6300;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
body.event-page--product-launch .launch-check-item {
  border-left: 3px solid rgba(196, 154, 0, 0.40);
}
body.event-page--product-launch .faq-item__question {
  color: #5f4700;
}
@media (max-width: 900px) {
  body.event-page--product-launch .launch-grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Wedding event page visual identity */
body.event-page--wedding .page-banner {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(145deg, #fffdf7 0%, #f9efd8 54%, #efd39b 100%);
}
body.event-page--wedding .page-banner .breadcrumb__item,
body.event-page--wedding .page-banner .breadcrumb__item--active,
body.event-page--wedding .page-banner .breadcrumb__item--current {
  color: rgba(58, 42, 8, 0.78);
}
body.event-page--wedding .page-banner .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(58, 42, 8, 0.45);
}
body.event-page--wedding .page-banner .breadcrumb__link {
  color: rgba(58, 42, 8, 0.84);
}
body.event-page--wedding .page-banner__title,
body.event-page--wedding .page-banner h1 {
  color: var(--color-dark) !important;
}
body.event-page--wedding .page-banner__subtitle {
  color: rgba(58, 42, 8, 0.74);
}
body.event-page--wedding .page-banner__badge {
  background: rgba(232, 184, 0, 0.18);
  color: #8a6300;
  border: 1px solid rgba(196, 154, 0, 0.40);
}
body.event-page--wedding .section--light {
  background: #fffcf6;
}
body.event-page--wedding .related-card {
  border-top: 3px solid rgba(196, 154, 0, 0.48);
}
body.event-page--wedding .comparison-table {
  border-color: rgba(196, 154, 0, 0.32);
  box-shadow: 0 16px 34px rgba(58, 42, 8, 0.08);
}
body.event-page--wedding .comparison-row:first-child {
  background: linear-gradient(135deg, #8a6300, #c49a00);
}
body.event-page--wedding .page-banner__actions .btn {
  min-width: 240px;
  justify-content: center;
}
body.event-page--wedding .wedding-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
body.event-page--wedding .wedding-point-list {
  margin: var(--space-3) 0 var(--space-4);
  padding: 0;
  list-style: none;
  counter-reset: wedding-point;
}
body.event-page--wedding .wedding-point-list li {
  margin-bottom: var(--space-3);
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-light);
  line-height: 1.7;
}
body.event-page--wedding .wedding-point-list li::before {
  counter-increment: wedding-point;
  content: counter(wedding-point);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 0, 0.45);
  background: rgba(196, 154, 0, 0.15);
  color: #8a6300;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
}
body.event-page--wedding .wedding-step {
  border-top: 3px solid rgba(196, 154, 0, 0.35);
}
body.event-page--wedding .wedding-step__tag {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 154, 0, 0.40);
  background: rgba(196, 154, 0, 0.12);
  color: #8a6300;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
body.event-page--wedding .checklist-item {
  border-left: 3px solid rgba(196, 154, 0, 0.40);
}
body.event-page--wedding .faq-item__question {
  color: #5f4700;
}
@media (max-width: 900px) {
  body.event-page--wedding .wedding-grid--2 {
    grid-template-columns: 1fr;
  }
}

.aeo-block__label {
  display: inline-flex;
  margin-bottom: var(--space-3);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(165, 120, 20, 0.18);
  background: rgba(165, 120, 20, 0.07);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
.aeo-block__text {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--color-text);
}

.section-note {
  background: rgba(58, 42, 8, 0.03);
  border: 1px solid rgba(58, 42, 8, 0.10);
  border-left: 4px solid rgba(196, 154, 0, 0.78);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

/* ── INFO BOX / INFO CARD ────────────────────────────────────────────────── */
.info-box {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.info-card {
  background: var(--color-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
}
.info-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.info-card p { font-size: var(--text-sm); color: var(--color-text-light); line-height: 1.65; }

/* ── FEATURE LIST / AREA LIST / INFO LIST ────────────────────────────────── */
.feature-list, .area-list, .info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.feature-list li, .area-list li, .info-list li, .info-list-item {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  padding-left: var(--space-5);
  position: relative;
}
.feature-list li::before, .area-list li::before, .info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary-dark);
  font-weight: var(--fw-bold);
}

/* ── HIGHLIGHT BOX ────────────────────────────────────────────────────────â”€ */
.highlight-box {
  background: rgba(165,120,20,0.04);
  border: 1px solid rgba(165,120,20,0.12);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0;
}
.highlight-box p,.highlight-box li {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}
.highlight-box p:last-child,.highlight-box li:last-child { margin-bottom: 0; }

/* ── SECTION NOTE & INLINE LINK ──────────────────────────────────────────── */
.section__note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--space-4);
  text-align: center;
}
.inline-link {
  color: var(--color-secondary-dark);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}
.inline-link:hover { color: var(--color-primary); }

/* ── UTILITY SPACING ──────────────────────────────────────────────────────â”€ */
.mt-4  { margin-top: var(--space-4);  }
.mt-6  { margin-top: var(--space-6);  }
.mt-8  { margin-top: var(--space-8);  }
.mt-12 { margin-top: var(--space-12); }
.mt-16,.mt-24 { margin-top: var(--space-16); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

/* ── PRICING TABLE ────────────────────────────────────────────────────────â”€ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-6);
}
.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(232,184,0,0.05), var(--color-white));
  box-shadow: 0 0 0 1px var(--color-secondary), var(--shadow-md);
}
.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.pricing-card__features li {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.5;
  padding-left: var(--space-5);
  position: relative;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary-dark);
  font-weight: var(--fw-bold);
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── VENUE CARD ──────────────────────────────────────────────────────────── */
.venue-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-sm);
}
.venue-card__name {
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-size: var(--text-sm);
  margin-bottom: 4px;
}
.venue-card__area { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ==========================================================================
   END INNER PAGES CSS
   ========================================================================== */

/* ==========================================================================
   OLD-TEMPLATE PAGE STYLES
   (Pages using legacy class names: digital-standee, tv-rental-malaysia,
    led-screen, tv-with-stand, locations, pricing-guide, etc.)
   ========================================================================== */

/* ── HEADER VARIANTS (old template) ──────────────────────────────────────── */
/* .header-inner is the flex container inside .site-header .container */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  width: 100%;
  height: 100%;
}

/* Logo parts used in old template */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-white);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.logo-text span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Desktop nav — old template */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  height: 100%;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--color-light);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--space-3);
  padding: 0.5rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  background: var(--color-secondary);
  color: var(--color-dark) !important;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 12px rgba(232,184,0,0.3);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--color-secondary-dark);
  box-shadow: 0 6px 18px rgba(232,184,0,0.45);
}

/* Mobile nav CTA / WhatsApp — old template */
.mobile-nav-cta,
.mobile-nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-3) var(--space-5) 0;
  padding: 0.875rem var(--space-5);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-fast);
}
.mobile-nav-cta {
  background: var(--color-secondary);
  color: var(--color-dark) !important;
}
.mobile-nav-cta:hover { background: var(--color-secondary-dark); }
.mobile-nav-wa {
  background: var(--color-whatsapp);
  color: var(--color-white) !important;
  margin-top: var(--space-2);
}
.mobile-nav-wa:hover { background: var(--color-whatsapp-dark); }

/* Mobile nav links container — old template */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) 0;
  flex: 1;
  overflow-y: auto;
}

/* ── BREADCRUMB BAR (standalone, outside hero) ────────────────────────────â”€ */
.breadcrumb-bar {
  background: var(--color-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 0.625rem 0;
}
.breadcrumb-bar .breadcrumb {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.breadcrumb-bar .breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}
.breadcrumb-bar .breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--color-text-light); margin: 0 0.1rem; }
.breadcrumb-current { color: var(--color-text); font-weight: var(--fw-medium); }

/* ── PAGE HERO (old-template version of page-banner) ──────────────────────â”€ */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
  padding: var(--space-12) 0 var(--space-14);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(232,184,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--color-white) !important;
  max-width: 820px;
  margin-bottom: var(--space-4);
}
.page-hero p {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: var(--space-2);
  line-height: 1.65;
}

/* Section-label in old template (same purpose as .page-banner__badge) */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  background: rgba(232,184,0,0.15);
  border: 1px solid rgba(232,184,0,0.35);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: var(--space-3);
}
/* In hero context, ensure section-label is visible */
.page-hero .section-label {
  color: var(--color-secondary);
  background: rgba(232,184,0,0.2);
  border-color: rgba(232,184,0,0.5);
}

/* ── SECTION BACKGROUNDS — old template ──────────────────────────────────â”€ */
.section-bg-alt { background: var(--color-light); }

/* ── WHATSAPP BUTTON — old template ──────────────────────────────────────â”€ */
/* .btn-wa = same appearance as .btn--whatsapp */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-whatsapp);
  background: var(--color-whatsapp);
  color: var(--color-white) !important;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: background var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}
.btn-wa:hover {
  background: var(--color-whatsapp-dark);
  border-color: var(--color-whatsapp-dark);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.50);
}

/* ── RELATED LINK (standalone link in .related-grid) ──────────────────────â”€ */
.related-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.related-link:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(232,184,0,0.2);
  transform: translateY(-2px);
  color: var(--color-primary);
}
.related-link-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.related-link-text { flex: 1; }

/* ── SERVICE CARD TAG (badge variant inside service-card-body) ────────────â”€ */
.service-card-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-secondary-dark);
  background: rgba(232,184,0,0.12);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  margin-bottom: var(--space-2);
}

/* ── SECTION HEADER (heading + label wrapper) ────────────────────────────â”€ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-10);
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── SERVICES GRID (3-col, old template) ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── MISC UTILITY ────────────────────────────────────────────────────────── */
.mt-16 { margin-top: 1rem; }
.mt-24 { margin-top: 1.5rem; }

/* ==========================================================================
   END OLD-TEMPLATE PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   CONTACT PAGE — MISSING COMPONENT STYLES
   ========================================================================== */

/* Two-column layout wrapper (alias for .contact-grid) */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Contact cards (phone, whatsapp, email, hours, response) */
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.contact-card:last-child { margin-bottom: 0; }
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  margin-bottom: var(--space-3);
}
.contact-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.contact-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.contact-card__btn {
  width: 100%;
  justify-content: center;
}
.contact-card__note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  line-height: 1.5;
}

/* Service hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
}
.hours-table td { padding: var(--space-2) 0; }
.hours-table__day {
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  padding-right: var(--space-4);
}
.hours-table__time {
  color: var(--color-dark);
  font-weight: var(--fw-semibold);
  text-align: right;
}
.hours-table tr + tr td { border-top: 1px solid var(--color-border-light); }

/* Form wrapper (right column) */
.contact-form-wrapper { }
.contact-form-header {
  margin-bottom: var(--space-6);
}
.contact-form-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.contact-form-header__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Form field aliases (.form-input / .form-select / .form-textarea → same as .form-control) */
.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  line-height: var(--leading-normal);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(165, 120, 20, 0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Required field asterisk */
.form-required { color: var(--color-accent); margin-left: 2px; }

/* 2-column form row modifier */
.form-row--two { grid-template-columns: 1fr 1fr; }
.form-row--one  { grid-template-columns: 1fr; }
/* Also override base .form-row to be single by default */
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
.form-row.form-row--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row--two { grid-template-columns: 1fr; } }

/* Fieldset / radio groups */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.form-radio-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-2);
}
.form-radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  cursor: pointer;
}
.form-radio { accent-color: var(--color-primary); width: 16px; height: 16px; }

/* Submit button row */
.form-submit {
  width: 100%;
  justify-content: center;
}

/* Form fine print */
.form-small-print {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  line-height: 1.6;
  text-align: center;
}

/* Section heading helpers used inline on contact/other pages */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-3);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-10);
  line-height: 1.65;
}

/* Why-grid (4-col "why choose us" grid on contact page) */
.why-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
}
.why-grid--4 { grid-template-columns: repeat(4, 1fr); }
.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}
.why-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  display: block;
}
.why-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.why-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .why-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid--4 { grid-template-columns: 1fr; }
}

/* Steps grid 3-col variant (used on contact page) */
.steps-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 800px) { .steps-grid--3 { grid-template-columns: 1fr; } }

/* ==========================================================================
   END CONTACT PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */
body.pricing-page .page-banner {
  background:
    radial-gradient(1100px 380px at 12% -12%, rgba(232, 184, 0, 0.2), transparent 55%),
    linear-gradient(135deg, #5b430d 0%, #7b5a12 100%);
}
body.pricing-page .section--light {
  background: linear-gradient(180deg, #fffaf1 0%, #fff 100%);
}
body.pricing-page .comparison-table {
  border-color: rgba(58, 42, 8, 0.12);
}
body.pricing-page .card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
body.pricing-page .check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
body.pricing-page .check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.55;
}
body.pricing-page .check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary-dark);
  font-weight: var(--fw-black);
}
@media (max-width: 900px) {
  body.pricing-page .card-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media print {
  /* Reset backgrounds */
  *,
  *::before,
  *::after {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* Hide UI elements */
  .top-bar,
  .site-header,
  .mobile-nav,
  .nav-overlay,
  .hero-scroll,
  .gallery-filter,
  .whatsapp-float,
  .wa-float,
  .mobile-cta-bar,
  .sticky-cta,
  .scroll-to-top,
  .hamburger,
  .site-footer .footer-social,
  .btn-whatsapp,
  .cta-strip-actions {
    display: none !important;
  }

  /* Typography */
  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
  h4 { font-size: 14pt; }
  h5, h6 { font-size: 12pt; }

  /* Page breaks */
  .section { break-inside: avoid; }
  h2, h3 { break-after: avoid; }

  /* Links */
  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666 !important;
  }

  /* Remove link decoration from navigation */
  .nav-link::after,
  .footer-links a::before {
    display: none;
  }

  /* Containers */
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Images */
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  /* Tables */
  table {
    border-collapse: collapse;
  }

  .size-table th,
  .size-table td {
    border: 1px solid #999 !important;
    padding: 6pt 8pt !important;
  }
}






