/* ============================================================
   ROSHEM CONSTRUCTION & INTERIORS — Main Stylesheet
   Version: 1.0
   Fonts: Poppins (headings) + Open Sans (body)
   Icons: Lucide Icons
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #14499E;
  --color-primary-dark: #0C3166;
  --color-primary-light: #4962AC;
  --color-secondary: #D42026;
  --color-secondary-dark: #BB2025;
  --color-secondary-light: #E51C2B;
  --color-accent: #64748b;
  --color-accent-light: #94a3b8;
  --color-bg: #f8fafc;
  --color-bg-alt: #f1f5f9;
  --color-text: #1e293b;
  --color-text-light: #475569;
  --color-text-muted: #94a3b8;
  --color-success: #059669;
  --color-white: #ffffff;
  --color-dark: #0f172a;
  --color-border: #e2e8f0;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 2rem;      /* 32px */
  --font-size-4xl: 2.5rem;    /* 40px */
  --font-size-5xl: 3rem;      /* 48px */
  --line-height-tight: 1.2;
  --line-height-base: 1.6;

  /* Spacing */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

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

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}

/* ----------------------------------------------------------
   2. CSS RESET
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-primary);
}

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

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ----------------------------------------------------------
   3. UTILITY CLASSES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__header h2 {
  margin-bottom: var(--space-md);
}

.section__header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--font-size-lg);
}

.section__overline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

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

/* ----------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-base);
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn-primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Secondary CTA (Navy outline) */
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-navy:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* White button (for dark backgrounds) */
.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

/* ----------------------------------------------------------
   5. PRELOADER
   ---------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.preloader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.preloader__text {
  position: absolute;
  margin-top: 80px;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 2px;
}

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

/* ----------------------------------------------------------
   6. HEADER / NAVIGATION
   ---------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.header__logo-img {
  height: auto;
  width: 250px;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  letter-spacing: 1px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

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

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--color-secondary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger__line + .hamburger__line {
  margin-top: 6px;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ----------------------------------------------------------
   7. HERO SECTIONS
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero--page {
  min-height: 50vh;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.92) 0%,
    rgba(30, 58, 95, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: var(--color-white);
  padding: var(--space-3xl) 0;
}

.hero__content h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero__content p {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

/* Trust Badges */
.hero__badges {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.hero__badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* Page Hero (inner pages) */
.hero--page .hero__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero--page .hero__content p {
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ----------------------------------------------------------
   8. TRUST STRIP
   ---------------------------------------------------------- */
.trust-strip {
  background: var(--color-white);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.trust-strip__labels {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-strip__label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.trust-strip__label svg {
  color: var(--color-secondary);
}

.trust-strip__stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-strip__stat {
  text-align: center;
}

.trust-strip__stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.trust-strip__stat-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
}

/* ----------------------------------------------------------
   9. BENEFITS / FEATURES
   ---------------------------------------------------------- */
.benefits {
  padding: var(--space-4xl) 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border-top: 4px solid var(--color-secondary);
}

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

.benefit-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   10. SERVICES CARDS
   ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card__body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
}

/* Detail service cards (Services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-xl);
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail__image {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.service-detail__content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail__content h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

.service-detail__content p {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-lg);
}

.service-detail__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.service-detail__list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* Service Detail Alternate Layout */
.service-detail:nth-child(even) .service-detail__image {
  order: 1;
}

.service-detail:nth-child(even) .service-detail__content {
  order: 0;
}

/* ----------------------------------------------------------
   11. PORTFOLIO / PROJECT GRID
   ---------------------------------------------------------- */
/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-sm);
  padding: 0.5rem 1.25rem;
  background: var(--color-white);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn--active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.project-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

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

.project-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card__image {
  transform: scale(1.1);
}

.project-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 58, 95, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__overlay-content {
  text-align: center;
  padding: var(--space-md);
  color: var(--color-white);
}

.project-card__overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.project-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card__body {
  padding: var(--space-lg);
}

.project-card__body h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
}

.project-card__location {
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.project-card__location svg {
  width: 14px;
  height: 14px;
}

.project-card__desc {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

.project-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.project-card__service-tag {
  font-size: var(--font-size-xs);
  background: rgba(30, 58, 95, 0.08);
  color: var(--color-primary);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* Project Detail Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 700px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.modal--open .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
  color: var(--color-text);
}

.modal__close:hover {
  background: var(--color-border);
}

.modal__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.modal__badge {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal h2 {
  margin-bottom: var(--space-sm);
}

.modal__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-accent);
}

.modal__body {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   12. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

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

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: #f59e0b;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__text {
  font-size: var(--font-size-sm);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-card__info h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.testimonial-card__info span {
  font-size: var(--font-size-xs);
  color: var(--color-accent);
  display: block;
}

/* ----------------------------------------------------------
   13. ABOUT PREVIEW (Home Page)
   ---------------------------------------------------------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview__image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-preview__content h2 {
  margin-bottom: var(--space-lg);
}

.about-preview__content p {
  margin-bottom: var(--space-lg);
}

.about-preview__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-preview__highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-light);
}

.about-preview__highlight svg {
  width: 18px;
  height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   14. FINAL CTA SECTION
   ---------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: var(--font-size-4xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
}

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

.cta-section__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-xl);
  color: var(--color-white);
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.cta-section__phone:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ----------------------------------------------------------
   15. ABOUT PAGE SPECIFIC
   ---------------------------------------------------------- */
/* Story Timeline */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.story__content h2 {
  margin-bottom: var(--space-lg);
}

.story__content p {
  margin-bottom: var(--space-md);
}

.story__timeline {
  padding-left: var(--space-xl);
  border-left: 3px solid var(--color-secondary);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 7px);
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-secondary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.timeline__item h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
}

.timeline__item p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.mission-vision__card {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-secondary);
}

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

.mission-vision__card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
}

.mission-vision__card p {
  font-size: var(--font-size-base);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-size: var(--font-size-base);
}

.value-card p {
  font-size: var(--font-size-xs);
  margin-bottom: 0;
  margin-top: var(--space-sm);
}

/* Differentiators */
.differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.differentiator-item {
  display: flex;
  gap: var(--space-md);
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.differentiator-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-success);
}

.differentiator-item__icon svg {
  width: 20px;
  height: 20px;
}

.differentiator-item h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
}

.differentiator-item p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* Certifications */
.certifications {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.cert-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cert-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card__icon img {
  width: 100%;
  height: auto;
}

.cert-card h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.cert-card p {
  font-size: var(--font-size-xs);
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------
   16. KENWA ADVANTAGE SECTION
   ---------------------------------------------------------- */
.kenwa-advantage {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
  padding: var(--space-4xl) 0;
}

.kenwa-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.kenwa-benefits__item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.kenwa-benefits__item svg {
  width: 40px;
  height: 40px;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.kenwa-benefits__item h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.kenwa-benefits__item p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

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

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  width: calc(75% - 40px);
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

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

.step__number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.step h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
}

.step p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   18. FAQ ACCORDION
   ---------------------------------------------------------- */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-base);
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-accent);
}

.faq__item--open .faq__question svg {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   19. CONTACT FORM
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-group label .required {
  color: #dc2626;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-control--error {
  border-color: #dc2626;
}

.form-control--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-control--success {
  border-color: var(--color-success);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: var(--font-size-xs);
  color: #dc2626;
  margin-top: var(--space-xs);
  display: none;
}

.form-error--visible {
  display: block;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.form-group--checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: var(--font-size-sm);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__text h4 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
}

.contact-info__text p,
.contact-info__text a {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

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

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Quick Response */
.quick-response {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.quick-response svg {
  width: 24px;
  height: 24px;
  color: var(--color-success);
  flex-shrink: 0;
}

.quick-response h4 {
  font-size: var(--font-size-base);
  color: var(--color-success);
  margin-bottom: 2px;
}

.quick-response p {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   20. PAGE HERO / BANNER (Inner Pages)
   ---------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(30, 58, 95, 0.7) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.page-hero__content h1 {
  color: var(--color-white);
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
}

.page-hero__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   21. STATS BAR
   ---------------------------------------------------------- */
.stats-bar {
  background: var(--color-primary);
  padding: var(--space-2xl) 0;
}

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

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stats-bar__label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----------------------------------------------------------
   22. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__col h4 {
  color: var(--color-white);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__brand img {
  height: 54px;
  width: auto;
}

.footer__brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-white);
  letter-spacing: 1px;
}

.footer__tagline {
  font-size: var(--font-size-sm);
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
}

.footer__desc {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer__badge {
  width: 100px;
  height: auto;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer__links a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  transition: background var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom */
.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.6);
}

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

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

/* ----------------------------------------------------------
   23. WHATSAPP FLOATING BUTTON
   ---------------------------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

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

.whatsapp-btn__pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ----------------------------------------------------------
   24. BACK TO TOP BUTTON
   ---------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 998;
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

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

/* ----------------------------------------------------------
   25. COOKIE CONSENT BANNER
   ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-lg) var(--space-xl);
  z-index: 9999;
  display: none;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner--visible {
  display: block;
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-banner a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   26. TOAST NOTIFICATIONS
   ---------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + var(--space-md));
  right: var(--space-md);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-primary);
  min-width: 300px;
  max-width: 450px;
  transform: translateX(120%);
  transition: transform var(--transition-base);
  animation: slideIn 0.3s ease forwards;
}

.toast--success {
  border-left-color: var(--color-success);
}

.toast--error {
  border-left-color: #dc2626;
}

.toast__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toast--success .toast__icon {
  color: var(--color-success);
}

.toast--error .toast__icon {
  color: #dc2626;
}

.toast__content {
  flex: 1;
}

.toast__content h4 {
  font-size: var(--font-size-sm);
  margin-bottom: 2px;
}

.toast__content p {
  font-size: var(--font-size-xs);
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.toast__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.toast__close:hover {
  color: var(--color-text);
}

@keyframes slideIn {
  to { transform: translateX(0); }
}

@keyframes slideOut {
  to { transform: translateX(120%); opacity: 0; }
}

/* ----------------------------------------------------------
   27. SCROLL ANIMATIONS
   ---------------------------------------------------------- */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

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

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

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

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

.animate-on-scroll--scale {
  transform: scale(0.95);
}

.animate-on-scroll--scale.animate-on-scroll--visible {
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

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

.stagger-children--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   28. RESPONSIVE — TABLETS (768px - 1023px)
   ---------------------------------------------------------- */
@media (max-width: 1023px) {
  :root {
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 2.5rem;
  }

  .grid-4,
  .values-grid,
  .kenwa-benefits,
  .steps,
  .certifications {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

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

  .about-preview {
    gap: var(--space-xl);
  }

  .about-preview__image {
    height: 300px;
  }

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

  .service-detail__image {
    min-height: 250px;
    max-height: 300px;
  }

  .service-detail:nth-child(even) .service-detail__image {
    order: 0;
  }

  .steps::before {
    display: none;
  }

  .header__phone {
    display: none;
  }
}

/* ----------------------------------------------------------
   29. RESPONSIVE — MOBILE (< 768px)
   ---------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-5xl: 2rem;
    --font-size-3xl: 1.75rem;
    --space-4xl: 3rem;
    --space-3xl: 2.5rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  /* Mobile Navigation */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--transition-base);
    z-index: 999;
  }

  .nav--open {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: var(--space-md);
  }

  .nav__link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--font-size-base);
  }

  .header__cta {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }

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

  /* Grids to single column */
  .grid-2,
  .grid-3,
  .grid-4,
  .benefits__grid,
  .services-grid,
  .project-grid,
  .testimonials-grid,
  .footer__grid,
  .values-grid,
  .differentiators,
  .steps,
  .kenwa-benefits,
  .certifications,
  .mission-vision,
  .stats-bar__grid,
  .contact-grid,
  .about-preview {
    grid-template-columns: 1fr;
  }

  .about-preview__highlights {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero__content h1 {
    font-size: var(--font-size-3xl);
  }

  .hero__badges {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .page-hero__content h1 {
    font-size: var(--font-size-3xl);
  }

  /* Trust Strip */
  .trust-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip__labels {
    justify-content: center;
  }

  .trust-strip__stats {
    justify-content: center;
  }

  /* Service Detail */
  .service-detail__list {
    grid-template-columns: 1fr;
  }

  .service-detail__content {
    padding: var(--space-lg);
  }

  /* About Preview */
  .about-preview__image {
    height: 250px;
  }

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

  /* Checkbox group */
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* What's differentiators */
  .differentiator-item {
    flex-direction: column;
    text-align: center;
  }

  .differentiator-item__icon {
    margin: 0 auto;
  }

  /* Steps */
  .step__number {
    width: 60px;
    height: 60px;
    font-size: var(--font-size-xl);
  }

  /* Certifications */
  .cert-card {
    padding: var(--space-lg);
  }

  /* Cookie */
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .toast {
    min-width: 250px;
  }

  .toast-container {
    right: var(--space-sm);
    left: var(--space-sm);
  }

  /* Additional mobile improvements */

  /* Make service card images shorter on mobile */
  .service-card__image {
    height: 160px;
  }

  /* Filter buttons wrap better */
  .filter-bar {
    gap: 0.375rem;
  }

  .filter-btn {
    font-size: var(--font-size-xs);
    padding: 0.375rem 0.875rem;
  }

  /* Modal adjustments */
  .modal__content {
    padding: var(--space-lg);
    width: 95%;
  }

  .modal__image {
    height: 200px;
  }

  .modal__services-list {
    grid-template-columns: 1fr !important;
  }

  /* Page hero smaller on mobile */
  .page-hero {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  }

  /* CTA section improvements */
  .cta-section__phone {
    font-size: var(--font-size-base);
    padding: var(--space-sm) var(--space-md);
    width: 100%;
    justify-content: center;
  }

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

  /* Footer compact */
  .footer__badge {
    width: 80px;
    height: 80px;
  }

  /* Step spacing */
  .step {
    padding: 0 var(--space-md);
  }

  /* About story timeline mobile */
  .story__timeline {
    padding-left: var(--space-lg);
  }

  .timeline__item::before {
    left: calc(-1 * var(--space-lg) - 7px);
    width: 12px;
    height: 12px;
  }

  /* Mission Vision cards */
  .mission-vision__card {
    padding: var(--space-lg);
  }

  /* Value cards on mobile */
  .value-card {
    padding: var(--space-lg);
  }

  /* Differentiator item */
  .differentiator-item {
    padding: var(--space-md);
  }

  /* Kenwa benefits */
  .kenwa-benefits__item {
    padding: var(--space-lg);
  }

  /* Stats bar */
  .stats-bar__number {
    font-size: var(--font-size-3xl);
  }

  /* Hero badge size */
  .hero__badge {
    font-size: var(--font-size-xs);
  }

  /* About preview highlights */
  .about-preview__highlights {
    gap: var(--space-sm);
  }

  /* Testimonial card */
  .testimonial-card {
    padding: var(--space-lg);
  }

  /* Header logo text */
  .header__logo-text {
    font-size: var(--font-size-lg);
  }

  .header__logo-img {
  height: auto;
  width: 250px;
}

  /* Section spacing reduction */
  .section {
    padding: var(--space-3xl) 0;
  }

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

/* ----------------------------------------------------------
   30. EXTRA SMALL DEVICES (< 400px)
   ---------------------------------------------------------- */
@media (max-width: 399px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__content h1 {
    font-size: 1.5rem;
  }

  .section__header h2 {
    font-size: var(--font-size-2xl);
  }

  .benefit-card {
    padding: var(--space-lg);
  }

  .service-card__body {
    padding: var(--space-lg);
  }

  .project-card__body {
    padding: var(--space-md);
  }

  .filter-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.625rem;
  }

  .cta-section h2 {
    font-size: var(--font-size-2xl);
  }

  .footer__grid {
    gap: var(--space-xl);
  }

  .footer__col {
    padding: 0;
  }

  .contact-info__item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .contact-info__icon {
    width: 40px;
    height: 40px;
  }

  .modal__content {
    padding: var(--space-md);
    width: 97%;
  }

  .modal__title {
    font-size: var(--font-size-lg);
  }
}

/* ----------------------------------------------------------
   31. CASE STUDY PAGES
   ---------------------------------------------------------- */
.case-study__hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.case-study__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study__hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
  color: var(--color-white);
}

.case-study__breadcrumb {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.case-study__breadcrumb a {
  color: var(--color-white);
  text-decoration: underline;
}

.case-study__breadcrumb a:hover {
  color: var(--color-secondary);
}

.case-study__hero-content h1 {
  font-size: var(--font-size-4xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.case-study__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.case-study__meta svg {
  vertical-align: middle;
  margin-right: 4px;
}

/* Stats */
.case-study__stats {
  background: var(--color-primary);
  padding: var(--space-2xl) 0;
  color: var(--color-white);
}

.case-study__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.case-study__stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}

.case-study__stat-label {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-top: var(--space-xs);
}

/* Content layout */
.case-study__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.case-study__text h2 {
  font-size: var(--font-size-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.case-study__text h2:first-child {
  margin-top: 0;
}

.case-study__text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.case-study__results {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.case-study__results li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-weight: 500;
}

.case-study__results li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-success);
  margin-top: 2px;
}

/* Sidebar */
.case-study__sidebar {
  display: grid;
  gap: var(--space-lg);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.case-study__sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.case-study__sidebar-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-secondary);
}

.case-study__services-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.case-study__services-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
}

.case-study__services-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.case-study__services-list strong {
  color: var(--color-text);
  min-width: 70px;
}

/* Gallery */
.case-study__gallery-section {
  background: var(--color-bg-alt);
}

.case-study__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.case-study__gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.case-study__gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.case-study__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: var(--space-sm);
}

.lightbox__close svg {
  width: 32px;
  height: 32px;
}

/* Lightbox Navigation */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 20;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.lightbox__prev {
  left: 16px;
}

.lightbox__next {
  right: 16px;
}

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* Case study responsive */
@media (max-width: 1023px) {
  .case-study__content {
    grid-template-columns: 1fr;
  }

  .case-study__sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

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

  .case-study__hero-content h1 {
    font-size: var(--font-size-3xl);
  }
}

@media (max-width: 767px) {
  .case-study__stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .case-study__sidebar {
    grid-template-columns: 1fr;
  }

  .case-study__gallery {
    grid-template-columns: 1fr;
  }

  .case-study__hero-content h1 {
    font-size: var(--font-size-2xl);
  }
}

/* ----------------------------------------------------------
   32. PLACEHOLDER IMAGE STYLING
   ---------------------------------------------------------- */
.project-card__image-wrap {
  position: relative;
  overflow: hidden;
}

.project-card__image[src$=".svg"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card__image[src$=".svg"] + .project-card__badge {
  z-index: 2;
}

.project-card__image[src$=".svg"] + .project-card__badge + .project-card__overlay {
  z-index: 2;
}

/* ----------------------------------------------------------
   33. MID-RANGE PHONES (400px - 550px) — SMALL 2-COLUMN GRIDS
   ---------------------------------------------------------- */
@media (min-width: 400px) and (max-width: 549px) {
  .about-preview__highlights {
    grid-template-columns: 1fr 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail__list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ----------------------------------------------------------
   32. PRINT STYLES
   ---------------------------------------------------------- */
@media print {
  .header,
  .footer,
  .whatsapp-btn,
  .back-to-top,
  .cookie-banner,
  .preloader,
  .toast-container {
    display: none !important;
  }

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

  .hero__overlay,
  .page-hero__overlay {
    background: none !important;
  }

  .hero__content,
  .page-hero__content {
    color: var(--color-text) !important;
  }

  .hero__content h1,
  .page-hero__content h1 {
    color: var(--color-primary) !important;
  }

  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }
}
