/* ============================================================
   CITYPRINTS DUBAI — SHARED STYLESHEET
   Premium Printing Company | Dubai, UAE
   Version: 2.0.0
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   2. CSS VARIABLES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --primary:        #8B1A1A;
  --primary-deep:   #6B1010;
  --primary-light:  #A62626;
  --whatsapp:       #25D366;
  --whatsapp-dark:  #1DA851;
  --gold:           #C8963E;

  /* Neutral Palette */
  --bg:             #FAF8F6;
  --cream:          #F3F0EC;
  --white:          #FFFFFF;
  --text-dark:      #1A1A1A;
  --text-muted:     #4A4A4A;
  --border:         #E5E0D9;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 8px 40px rgba(0, 0, 0, 0.16);

  /* Border Radii */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* Transitions */
  --transition: all 0.25s ease;

  /* Layout */
  --max-width:  1200px;

  /* Typography Scale */
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Nav height */
  --nav-height: 72px;
}

/* ============================================================
   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%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* ============================================================
   4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  color: #2D2D2D;
  line-height: 1.75;
  max-width: 70ch;
}

strong { font-weight: 600; color: var(--text-dark); }
em { font-style: italic; }

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

small { font-size: 0.85rem; }

.lead {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.text-serif { font-family: var(--font-serif); }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-dark { color: var(--text-dark); }

/* ============================================================
   5. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.container--wide {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-3xl);
}

.section--sm {
  padding-block: var(--space-2xl);
}

.section--lg {
  padding-block: calc(var(--space-3xl) * 1.5);
}

.section--cream {
  background-color: var(--cream);
}

.section--white {
  background-color: var(--white);
}

.section--dark {
  background-color: var(--primary-deep);
  color: var(--white);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.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-fill, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ============================================================
   6. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px var(--space-lg);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.announcement-bar a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover { color: #ffd780; }

.announcement-close {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px;
  transition: var(--transition);
}

.announcement-close:hover { color: var(--white); }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo svg {
  width: 160px;
  height: 44px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--primary);
  line-height: 1;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--cream);
}

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--whatsapp);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.nav-cta svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover { background-color: var(--cream); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  padding: var(--space-xl) var(--space-lg);
  padding-top: calc(var(--nav-height) + 20px);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-xl);
}

.mobile-nav-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 14px var(--space-md);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

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

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ============================================================
   8. LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle {
  display: flex;
  align-items: center;
  background-color: var(--cream);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
}

.lang-btn.active,
.lang-btn:hover {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.btn-primary:hover {
  background-color: var(--primary-deep);
  border-color: var(--primary-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.35);
}

/* WhatsApp */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.25);
}

/* Ghost */
.btn-ghost {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}

.btn-ghost:hover {
  background-color: var(--cream);
  color: var(--primary);
  border-color: var(--primary);
}

/* Gold */
.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background-color: #b0842f;
  border-color: #b0842f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.4);
}

/* Sizes */
.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ============================================================
   10. SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.section-title em {
  color: var(--primary);
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.75;
}

.section-header--left {
  text-align: left;
}

.section-header--left .section-subtitle {
  margin-inline: 0;
}

/* ============================================================
   11. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--cream);
  overflow: hidden;
  min-height: 90vh;
  display: grid;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139, 26, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: var(--space-3xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(139, 26, 26, 0.1);
  color: #8B1A1A;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(139, 26, 26, 0.2);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
}

.hero-title em {
  color: var(--primary);
  font-style: italic;
}

.hero-title .line-gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 55ch;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border);
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Page Hero (for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ============================================================
   12. BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-popular {
  background-color: rgba(200, 150, 62, 0.12);
  color: #8B6020;
  border: 1px solid rgba(200, 150, 62, 0.25);
}

.badge-new {
  background-color: rgba(37, 211, 102, 0.1);
  color: #0a7a3a;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.badge-red {
  background-color: rgba(139, 26, 26, 0.08);
  color: var(--primary);
  border: 1px solid rgba(139, 26, 26, 0.15);
}

.badge-gold {
  background-color: var(--gold);
  color: var(--white);
}

.badge-sale {
  background-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   13. PRODUCT CARDS
   ============================================================ */
.product-card {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  border-color: rgba(139, 26, 26, 0.15);
}

.product-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
}

.product-card-image {
  background-color: var(--white);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

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

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

.product-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.product-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-card-cta {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

.product-card-cta .btn {
  flex: 1;
}

/* Product Detail Page */
.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding-block: var(--space-3xl);
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.product-gallery-main {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  margin-bottom: var(--space-md);
}

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

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-gallery-thumb {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  aspect-ratio: 1;
  transition: var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--primary);
}

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

.product-info-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-block: var(--space-lg);
}

.spec-item {
  display: flex;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
  gap: var(--space-md);
}

.spec-item:last-child { border-bottom: none; }

.spec-item:nth-child(even) { background-color: var(--cream); }

.spec-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 130px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================================
   14. CATEGORY CARDS
   ============================================================ */
.category-card {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  border-color: rgba(139, 26, 26, 0.2);
}

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

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

.category-card:hover .category-card-image img {
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-card-overlay {
  opacity: 1;
}

.category-card-body {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.category-card-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.category-card-arrow {
  width: 36px;
  height: 36px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.category-card:hover .category-card-arrow {
  background-color: var(--primary);
  color: var(--white);
  transform: translateX(4px);
}

/* ============================================================
   15. STEPS / HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  display: none;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.step-number-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.step-item:hover .step-number {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 8px rgba(139, 26, 26, 0.1);
}

.step-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 24ch;
  margin-inline: auto;
}

/* ============================================================
   16. FEATURES / ADVANTAGES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 26, 26, 0.15);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(139, 26, 26, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

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

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   17. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--cream);
  line-height: 1;
}

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

.stars {
  display: flex;
  gap: 3px;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.star-empty { color: var(--border); }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--cream);
  flex-shrink: 0;
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */
.faq-section {
  max-width: 780px;
  margin-inline: auto;
}

.faq-category {
  margin-bottom: var(--space-2xl);
}

.faq-category-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.faq-category-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: rgba(139, 26, 26, 0.25);
  box-shadow: var(--shadow-sm);
}

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

.faq-question:hover {
  background-color: var(--cream);
}

.faq-item.open .faq-question {
  background-color: rgba(139, 26, 26, 0.04);
}

.faq-question-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
}

.faq-item.open .faq-question-text {
  color: var(--primary);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: none;
}

.faq-answer-inner p + p { margin-top: var(--space-sm); }

.faq-answer-inner ul {
  list-style: disc;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* FAQ Search */
.faq-search-wrap {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.faq-search {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background-color: var(--white);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-search:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 26, 26, 0.1);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.faq-no-results {
  text-align: center;
  color: var(--text-muted);
  padding: var(--space-2xl);
  display: none;
}

/* ============================================================
   19. BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--cream);
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-tag {
  display: inline-block;
  background-color: rgba(139, 26, 26, 0.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-title { color: var(--primary); }

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  margin-top: auto;
  padding-top: var(--space-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-more { gap: 8px; }

/* Blog Post Page */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
  padding-block: var(--space-3xl);
}

.blog-post-header {
  margin-bottom: var(--space-xl);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.blog-post-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  aspect-ratio: 16/7;
}

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

.blog-post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.blog-post-content p {
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  max-width: 75ch;
}

.blog-post-content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.blog-post-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.blog-post-content ul { list-style: disc; }
.blog-post-content ol { list-style: decimal; }

.blog-post-content li {
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.7;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: var(--space-lg);
  margin-block: var(--space-xl);
  font-style: italic;
  color: var(--text-muted);
}

.blog-post-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sidebar-widget {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: var(--space-xl);
}

.sidebar-widget-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   20. CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--border);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-label .required {
  color: var(--primary);
  margin-left: 3px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 26, 26, 0.08);
}

.form-input.error,
.form-textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

.form-error-msg {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}

.form-error-msg.show { display: block; }

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  user-select: none;
}

.form-radio-label:has(input:checked),
.form-radio-label:hover {
  border-color: var(--primary);
  background-color: rgba(139, 26, 26, 0.05);
  color: var(--primary);
}

.form-radio-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(139, 26, 26, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

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

/* ============================================================
   21. ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.value-card {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2rem;
  color: var(--gold);
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   22. BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-block: var(--space-md);
  font-size: 0.82rem;
}

.breadcrumb-item {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.breadcrumb-item.active { color: var(--text-dark); font-weight: 500; }

.breadcrumb-sep {
  color: var(--border);
  font-size: 0.75rem;
}

/* ============================================================
   23. FLOATING WHATSAPP
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.floating-wa-btn {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  animation: wa-pulse 2.5s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.floating-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--text-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.floating-wa:hover .floating-wa-tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ============================================================
   24. MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  gap: var(--space-sm);
  align-items: center;
}

.mobile-cta-bar .mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.mobile-cta-btn--whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
}

.mobile-cta-btn--whatsapp:hover { background-color: var(--whatsapp-dark); }

.mobile-cta-btn--call {
  background-color: var(--cream);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}

.mobile-cta-btn--call:hover { background-color: var(--border); }

/* ============================================================
   25. FOOTER
   ============================================================ */
.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.footer-col {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
  margin: 0;
  margin-bottom: var(--space-lg);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, padding-left 0.2s ease;
  line-height: 1.5;
}

.footer-link:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-legal-link:hover { color: rgba(255, 255, 255, 0.8); }

/* ============================================================
   26. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll-triggered animation base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-left {
  transform: translateX(-24px);
}

.animate-on-scroll.slide-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  transform: translateX(24px);
}

.animate-on-scroll.slide-right.visible {
  transform: translateX(0);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* Shimmer loading state */
.skeleton {
  background: linear-gradient(90deg, var(--cream) 25%, var(--border) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

/* Display */
.hidden        { display: none !important; }
.show-mobile   { display: none; }
.block         { display: block; }
.inline-block  { display: inline-block; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Width */
.w-full  { width: 100%; }
.w-auto  { width: auto; }

/* Margin Utilities */
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: var(--space-xs); }
.mt-2  { margin-top: var(--space-sm); }
.mt-3  { margin-top: var(--space-md); }
.mt-4  { margin-top: var(--space-lg); }
.mt-5  { margin-top: var(--space-xl); }
.mt-6  { margin-top: var(--space-2xl); }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: var(--space-xs); }
.mb-2  { margin-bottom: var(--space-sm); }
.mb-3  { margin-bottom: var(--space-md); }
.mb-4  { margin-bottom: var(--space-lg); }
.mb-5  { margin-bottom: var(--space-xl); }
.mb-6  { margin-bottom: var(--space-2xl); }

.mx-auto { margin-inline: auto; }

/* Padding Utilities */
.py-0  { padding-block: 0; }
.py-1  { padding-block: var(--space-xs); }
.py-2  { padding-block: var(--space-sm); }
.py-3  { padding-block: var(--space-md); }
.py-4  { padding-block: var(--space-lg); }
.py-5  { padding-block: var(--space-xl); }
.py-6  { padding-block: var(--space-2xl); }

.px-0  { padding-inline: 0; }
.px-1  { padding-inline: var(--space-xs); }
.px-2  { padding-inline: var(--space-sm); }
.px-3  { padding-inline: var(--space-md); }
.px-4  { padding-inline: var(--space-lg); }
.px-5  { padding-inline: var(--space-xl); }

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

/* ============================================================
   28. RTL SUPPORT
   ============================================================ */
body.rtl {
  direction: rtl;
  font-family: 'Cairo', var(--font-sans), sans-serif;
}

.rtl .nav-inner          { flex-direction: row-reverse; }
.rtl .nav-links          { flex-direction: row-reverse; }
.rtl .nav-actions        { flex-direction: row-reverse; }
.rtl .hero-content       { text-align: right; }
.rtl .hero-cta-group     { flex-direction: row-reverse; }
.rtl .hero-stats         { flex-direction: row-reverse; }
.rtl .section-header     { text-align: right; }
.rtl .feature-card       { text-align: right; }
.rtl .footer-grid        { direction: rtl; }
.rtl .footer-links       { align-items: flex-end; }
.rtl .breadcrumb         { flex-direction: row-reverse; }
.rtl .step-desc          { direction: rtl; }
.rtl .steps-grid         { direction: rtl; }
.rtl .faq-question       { flex-direction: row-reverse; }
.rtl .contact-grid       { direction: rtl; }
.rtl .form-label         { text-align: right; }
.rtl .floating-wa        { right: auto; left: var(--space-xl); }
.rtl .blog-post-layout   { direction: rtl; }
.rtl .product-detail-hero { direction: rtl; }
.rtl .spec-label         { text-align: right; }

/* Arabic Typography Adjustments */
.rtl h1, .rtl h2, .rtl h3,
.rtl h4, .rtl h5, .rtl h6 {
  font-family: 'Cairo', var(--font-serif), serif;
  font-weight: 700;
  line-height: 1.4;
}

/* ============================================================
   29. RESPONSIVE — 1280px
   ============================================================ */
@media (max-width: 1280px) {
  :root { --max-width: 1100px; }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   30. RESPONSIVE — 1024px (Tablet Landscape)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --nav-height: 64px;
    --space-3xl: 72px;
    --space-2xl: 48px;
  }

  .nav-links { display: none; }

  .hamburger { display: flex; }

  .mobile-menu { display: block; }

  .mobile-cta-bar { display: flex; }

  .floating-wa { bottom: calc(var(--space-xl) + 80px); }

  .hero { min-height: 80vh; }

  .hero-image { display: none; }

  .hero-content { max-width: 100%; }

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

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

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

  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .steps-grid::before { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   31. RESPONSIVE — 768px (Tablet Portrait)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-3xl: 56px;
    --space-2xl: 40px;
    --space-xl:  28px;
  }

  .container { padding-inline: var(--space-md); }

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

  .features-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }

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

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

  /* Hero */
  .hero-stats {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .hero-stat-divider { display: none; }

  /* Contact Form */
  .form-row { grid-template-columns: 1fr; }

  /* Show mobile, hide desktop */
  .show-mobile { display: block; }
  .hide-mobile { display: none !important; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

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

  /* Nav CTA text on small screens */
  .nav-cta-text { display: none; }
}

/* ============================================================
   32. RESPONSIVE — 480px (Mobile)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --space-3xl: 48px;
    --space-2xl: 36px;
    --space-xl:  24px;
    --space-lg:  20px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn { text-align: center; justify-content: center; }

  .hero-stats { justify-content: space-around; }

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

  .grid-4 { grid-template-columns: 1fr; }

  .product-gallery-thumbs { grid-template-columns: repeat(3, 1fr); }

  .section-header { margin-bottom: var(--space-xl); }

  .contact-form { padding: var(--space-lg); }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .floating-wa {
    right: var(--space-md);
    bottom: calc(var(--space-md) + 80px);
  }

  .floating-wa-btn { width: 52px; height: 52px; }

  .mobile-cta-bar { padding: var(--space-sm) var(--space-md); }

  .btn-lg { padding: 14px 28px; font-size: 0.9rem; }

  /* Breadcrumbs */
  .breadcrumb { font-size: 0.75rem; }

  /* FAQ */
  .faq-section { max-width: 100%; }
}

/* ============================================================
   33. PRINT STYLES
   ============================================================ */
@media print {
  .nav,
  .announcement-bar,
  .floating-wa,
  .mobile-cta-bar,
  .footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a { text-decoration: underline; color: #000; }
  .page-hero { background: none; color: #000; padding: 0; }
}

/* ============================================================
   34. HOMEPAGE — MISSING & ENHANCED STYLES
   (Classes used in index.html not covered above)
   ============================================================ */

/* --- Hero Container Layout --- */
.hero-container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  padding-block: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-headline em {
  color: var(--primary);
  font-style: italic;
  display: block;
}

.hero-subheading {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-xl);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-white:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(139, 26, 26, 0.04);
  transform: translateY(-2px);
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Hero Visual (right side collage) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 440px;
}

.collage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(139, 26, 26, 0.12);
}

.collage-card--1 { animation: heroFloat1 7s ease-in-out infinite; }
.collage-card--2 { animation: heroFloat2 7s ease-in-out infinite 1.75s; }
.collage-card--3 { animation: heroFloat3 7s ease-in-out infinite 3.5s; }
.collage-card--4 { animation: heroFloat4 7s ease-in-out infinite 5.25s; }

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translateY(-5px); }
  50%       { transform: translateY(5px); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: translateY(3px); }
  50%       { transform: translateY(-7px); }
}
@keyframes heroFloat4 {
  0%, 100% { transform: translateY(-2px); }
  50%       { transform: translateY(8px); }
}

.collage-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.1), rgba(200, 150, 62, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s ease;
}

.collage-card:hover .collage-icon {
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.18), rgba(200, 150, 62, 0.14));
}

.collage-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #8B1A1A;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
}

.scroll-arrow { color: #8B1A1A; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* --- Section Eyebrow --- */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B1A1A;
  margin-bottom: var(--space-sm);
}

/* --- Products Grid (Homepage Category Cards) --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.products-section-footer {
  text-align: center;
  margin-top: var(--space-2xl);
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-red:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 26, 26, 0.3);
}

/* Homepage product-card overrides (different from product-page cards) */
.products-grid .product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.products-grid .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(139, 26, 26, 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(139, 26, 26, 0.2);
}

.product-card-bg {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.product-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 22px,
    rgba(255, 255, 255, 0.03) 22px,
    rgba(255, 255, 255, 0.03) 44px
  );
}

.product-card-bg::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(200, 150, 62, 0.14);
  transition: transform 0.4s ease;
}

.products-grid .product-card:hover .product-card-bg::after {
  transform: scale(1.5);
}

.product-card-bg svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, color 0.35s ease;
}

.products-grid .product-card:hover .product-card-bg svg {
  transform: scale(1.15) rotate(-8deg);
  color: rgba(255, 255, 255, 0.7);
}

.product-card-bg--1 { background: linear-gradient(135deg, #6B1010, #8B1A1A); }
.product-card-bg--2 { background: linear-gradient(135deg, #7a4800, #b06c00); }
.product-card-bg--3 { background: linear-gradient(135deg, #0D4A2A, #166938); }
.product-card-bg--4 { background: linear-gradient(135deg, #1A2060, #2B34A0); }
.product-card-bg--5 { background: linear-gradient(135deg, #4A1060, #7A1AA0); }
.product-card-bg--6 { background: linear-gradient(135deg, #4A1010, #8B2020); }

.product-card-content {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
}

.product-card-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 8px;
  transition: gap 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.product-card-link:hover {
  gap: 10px;
  color: var(--primary-deep);
}

/* --- How It Works Steps --- */
/* HTML uses .step not .step-item — add alias */
.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease;
}

.step:hover { background: rgba(139, 26, 26, 0.03); }

.step .step-number {
  width: 68px;
  height: 68px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step:hover .step-number {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.35);
}

.step .step-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 150, 62, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 24ch;
  margin-inline: auto;
}

/* Step connectors — hidden for clean layout */
.step-connector {
  display: none;
}

/* --- Why Us / Advantages --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.advantage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.1);
  border-color: rgba(139, 26, 26, 0.18);
}

.advantage-icon {
  width: 54px;
  height: 54px;
  background: rgba(139, 26, 26, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

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

.advantage-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: none;
  margin: 0;
}

/* --- Testimonials Enhancements --- */
/* Aliases for classes used in index.html */
.testimonial-stars {
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
}

/* Override testimonials-grid for carousel mode */
.testimonials-track {
  overflow: hidden;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-carousel .testimonial-card {
  min-width: calc(33.333% - 11px);
  flex-shrink: 0;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonials-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.testimonials-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(139, 26, 26, 0.04);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  border: none;
  padding: 0;
}

.testimonials-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Better testimonial card styling */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(139, 26, 26, 0.07);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card blockquote p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  margin: 0;
  max-width: none;
}

.testimonial-card footer.testimonial-author {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- WhatsApp CTA Banner --- */
.wa-cta-banner {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 60%, #A52020 100%);
  position: relative;
  overflow: hidden;
}

.wa-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.wa-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(200, 150, 62, 0.08);
  pointer-events: none;
}

.wa-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
  padding-block: var(--space-3xl);
}

.wa-cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.wa-cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 46ch;
  margin-inline: auto;
}

.wa-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn-white-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-white-wa:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.wa-cta-phone {
  font-size: 1rem;
}

.wa-cta-phone a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  transition: color 0.2s ease;
}

.wa-cta-phone a:hover {
  color: var(--white);
}

/* ============================================================
   35. ENHANCED DEPTH & PREMIUM EFFECTS
   ============================================================ */

/* Stronger card shadows on hover */
.product-card:hover,
.feature-card:hover,
.stat-item:hover,
.value-card:hover {
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Richer nav shadow on scroll */
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.97);
}

/* Enhanced floating WA button */
.floating-wa-btn {
  width: 64px !important;
  height: 64px !important;
}

.floating-wa-btn svg {
  width: 32px !important;
  height: 32px !important;
}

/* Better blog cards */
.blog-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Better section headers */
.section-header h2,
.section-header .section-title {
  position: relative;
}

/* Better announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-deep), var(--primary), var(--primary-deep));
  background-size: 200% 100%;
  animation: shimmerBar 6s ease-in-out infinite;
}

@keyframes shimmerBar {
  0%, 100% { background-position: 0% 0%; }
  50%       { background-position: 100% 0%; }
}

/* ============================================================
   36. HOMEPAGE RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: var(--space-2xl);
  }

  .hero-subheading { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust-badges { justify-content: center; }
  .hero-visual { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .wa-cta-content { padding-inline: var(--space-md); }
  .btn-white-wa { padding: 14px 28px; font-size: 0.9rem; }

  .testimonials-carousel .testimonial-card {
    min-width: calc(100% - 0px);
  }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .hero-ctas .btn-outline-white {
    text-align: center;
    justify-content: center;
  }

  .wa-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-white-wa { text-align: center; justify-content: center; }
}

/* ============================================================
   37. ABOUT PAGE — STAT CARDS
   ============================================================ */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(139,26,26,0.1);
}

.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--primary);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.stat-card .stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  max-width: none;
}

/* About page stats grid override */
.about-stats .stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .about-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   38. PRODUCT / INNER PAGE HERO — WHITE TEXT ON DARK BG
   Only targets .page-hero (product & inner pages with red bg).
   Does NOT target .hero (homepage with light bg).
   ============================================================ */
.page-hero h1,
.page-hero .hero-title,
.product-hero h1,
.product-hero .hero-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero h2 {
  color: #FFFFFF !important;
}

.page-hero p,
.page-hero .hero-subtitle,
.page-hero .subtitle,
.page-hero .page-hero-subtitle,
.product-hero p,
.product-hero .hero-subtitle,
.product-hero .subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
}

.page-hero span,
.page-hero em,
.product-hero span {
  color: #FFFFFF !important;
}

.page-hero .badge,
.page-hero .pill,
.page-hero .hero-badge,
.page-hero span[class*="badge"],
.page-hero span[class*="pill"],
.product-hero .badge,
.product-hero .pill,
.product-hero .hero-badge,
.product-hero span[class*="badge"],
.product-hero span[class*="pill"] {
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .breadcrumb span,
.page-hero nav a,
.product-hero .breadcrumb,
.product-hero .breadcrumb a,
.product-hero nav a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.page-hero .breadcrumb a:hover,
.product-hero .breadcrumb a:hover {
  color: #FFFFFF !important;
}

.page-hero .hero-inner,
.page-hero .hero-inner * {
  color: #FFFFFF !important;
}

/* ============================================================
   39. HOMEPAGE POLISH
   ============================================================ */

/* Step numbers — brand red + serif */
.step-number {
  font-family: var(--font-serif) !important;
  color: var(--primary) !important;
}

/* Testimonial stars — gold */
.testimonial-stars svg,
.testimonial-stars span,
.star-rating svg {
  color: #C8963E !important;
  fill: #C8963E !important;
}

/* ============================================================
   39b. PRODUCT DETAIL CARD BADGE OVERRIDES
   ============================================================ */
.popular-badge,
.eco-badge,
.custom-badge-pill,
.product-card .badge,
[class*="badge-pill"] {
  background: #8B1A1A !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 4px 14px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eco-badge {
  background: #2A7A3A !important;
}

/* ============================================================
   40. SCROLL FADE-IN-UP ANIMATION
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   41. FLOATING WA BUTTON PULSE
   ============================================================ */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

.floating-wa-btn {
  animation: waPulse 2.5s ease-in-out infinite;
}

.floating-wa-btn:hover {
  animation: none;
  transform: scale(1.1);
}

/* ============================================================
   42. ANNOUNCEMENT BAR — FORCE WHITE TEXT
   ============================================================ */
.announcement-bar,
.announcement-bar *,
.announcement-bar p,
.announcement-bar span,
.announcement-bar a,
[class*="announcement"] {
  color: #FFFFFF !important;
}
.announcement-bar a {
  text-decoration: underline !important;
}
.announcement-bar .announcement-close,
.announcement-bar button {
  color: #FFFFFF !important;
}

/* ============================================================
   43. (REMOVED — blanket [class*="hero"] white text rules removed
       to fix homepage hero contrast. Product hero white text is
       now handled by section 38 with specific .page-hero selectors.)
   ============================================================ */

/* ============================================================
   44. ABOUT PAGE — STORY, COMPARISON, VISIT, CTA
   ============================================================ */

/* --- Story Section --- */
.story-section { padding: var(--space-3xl) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: start;
}
.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}
.story-body p {
  color: #2D2D2D;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 720px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-visual-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}
.story-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.story-visual-year-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--primary);
  display: block;
}
.story-visual-year-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}
.story-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: var(--space-md);
}
.story-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Comparison Table --- */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-top: var(--space-xl);
}
.comparison-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9rem;
}
.comparison-header [role="columnheader"] { color: var(--white); }
.comparison-us-label {
  font-weight: 700;
  color: var(--white);
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.88rem;
  transition: background 0.2s ease;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: var(--cream); }
.comparison-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-dark);
}
.comparison-feature svg { color: var(--text-muted); flex-shrink: 0; }
.comparison-us {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
}
.check-icon {
  color: #22883a;
  font-weight: 700;
  font-size: 1rem;
}
.comparison-them {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}
.cross-icon {
  color: #c0392b;
  font-weight: 700;
  font-size: 1rem;
}

/* --- Visit Section --- */
.visit-section { padding: var(--space-3xl) 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.visit-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}
.visit-text > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.visit-details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.visit-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.visit-detail-item svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.visit-detail-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.visit-detail-item span,
.visit-detail-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.visit-detail-item a:hover { color: var(--primary); }
.map-placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  min-height: 320px;
  text-align: center;
}
.map-placeholder svg { opacity: 0.6; }
.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- About CTA Section --- */
.about-cta-section {
  position: relative;
  background: var(--primary);
  padding: var(--space-3xl) 0;
  text-align: center;
  overflow: hidden;
}
.about-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  opacity: 1;
}
.about-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.about-cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white) !important;
  margin-bottom: var(--space-md);
}
.about-cta-content > p {
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.about-cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta-actions .btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.about-cta-actions .btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-outline-red:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- About Page Responsive --- */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .comparison-feature svg { display: none; }
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   46. FOOTER TEXT COLOR FIX — override global p { color: #2D2D2D }
   ============================================================ */
.footer p,
.footer span,
.footer address,
.footer .footer-brand-desc,
.footer .footer-desc,
.footer-col p,
.footer-col span,
.footer-contact-item,
.footer-contact-item span,
.footer-contact-item a,
.footer .footer-instagram {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer h4,
.footer-col h4,
.footer .footer-heading {
  color: #FFFFFF !important;
}

.footer a:hover,
.footer-contact-item a:hover,
.footer .footer-instagram:hover {
  color: #FFFFFF !important;
}

.footer-bottom p,
.footer-copyright {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ============================================================
   47. FLOATING WA — ensure SVG is visible, pulse span doesn't block
   ============================================================ */
.floating-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   48. LEGAL CONTENT (Privacy Policy, Terms of Service)
   ============================================================ */
.legal-content {
  padding: var(--space-3xl) 0;
}

.legal-content .container {
  max-width: 780px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-content ul li {
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */
