/* ============================================
   MG PRO AS - Premium Carpentry Website
   Industrial Precision × Nordic Minimalism
   ============================================ */

/* === CSS Custom Properties === */
:root {
  /* Core Palette */
  --primary: #1A1A2E;
  --primary-rgb: 26, 26, 46;
  --secondary: #C9A227;
  --secondary-rgb: 201, 162, 39;
  --accent: #E8E8E8;
  --background: #FAFAFA;
  --dark-bg: #16213E;
  --dark-bg-rgb: 22, 33, 62;
  --text: #2D2D2D;
  --text-light: #6C757D;

  /* Extended Palette */
  --brass-light: #D4B94A;
  --brass-dark: #A88A1E;
  --steel-dark: #0F0F1A;
  --steel-mid: #2A2A3D;
  --cream: #F5F3EE;
  --warm-white: #FFFEFA;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --container-max: 1400px;
  --container-narrow: 900px;
  --header-height: 90px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);

  /* Diagonal Cut Angle */
  --cut-angle: -4deg;
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1em;
}

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

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

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

ul, ol {
  list-style: none;
}

/* === Utility Classes === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.text-accent {
  color: var(--secondary);
}

.text-light {
  color: var(--text-light);
}

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s var(--ease-smooth);
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--secondary);
  color: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.btn--primary:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

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

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

.btn--dark {
  background: var(--primary);
  color: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.btn--dark:hover {
  background: var(--steel-mid);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-smooth);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--warm-white);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-md);
}

.header.scrolled::before {
  opacity: 1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo-mark {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.3s var(--ease-bounce);
}

.header__logo:hover .header__logo-mark {
  transform: scale(1.05);
}

.header__logo-mark svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.header__logo-text span {
  font-weight: 400;
  color: var(--text-light);
}

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

.header__nav-list {
  display: flex;
  gap: var(--space-lg);
}

.header__nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease-smooth);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s var(--ease-smooth);
}

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

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

.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
  }
}

/* Mobile Menu Toggle */
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
}

@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

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

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__inner {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--accent);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s var(--ease-smooth);
}

.mobile-nav.active .mobile-nav__link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.active .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav__link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav__cta {
  margin-top: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-smooth) 0.35s;
}

.mobile-nav.active .mobile-nav__cta {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 50%, var(--steel-dark) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23C9A227' 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");
  opacity: 0.5;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
    padding: 0;
  }
}

.hero__content {
  color: var(--warm-white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s var(--ease-dramatic) 0.2s forwards;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero__title {
  color: var(--warm-white);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s var(--ease-dramatic) 0.4s forwards;
}

.hero__title-accent {
  display: block;
  color: var(--secondary);
  position: relative;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.15em;
  background: var(--secondary);
  opacity: 0.3;
  transform: skewX(var(--cut-angle));
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s var(--ease-dramatic) 0.6s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s var(--ease-dramatic) 0.8s forwards;
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s var(--ease-dramatic) 1s forwards;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.hero__visual {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeSlideLeft 1s var(--ease-dramatic) 0.6s forwards;
}

.hero__image-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201, 162, 39, 0.3));
  z-index: 1;
}

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

.hero__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--secondary);
  opacity: 0.2;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  z-index: -1;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  position: relative;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--secondary);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(40px); opacity: 0; }
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* === Services Overview Section === */
.services-overview {
  padding: var(--space-3xl) 0;
  background: var(--background);
  position: relative;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.02;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--secondary);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--warm-white);
  padding: var(--space-lg);
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid rgba(0, 0, 0, 0.05);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--secondary);
  transition: height 0.4s var(--ease-smooth);
}

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

.service-card:hover::before {
  height: 100%;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--secondary);
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s var(--ease-smooth);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* === Why Choose Us Section === */
.why-us {
  padding: var(--space-3xl) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.3;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .section-header {
  text-align: left;
  max-width: none;
  margin-bottom: var(--space-xl);
}

.why-us .section-label {
  color: var(--secondary);
}

.why-us .section-label::before,
.why-us .section-label::after {
  display: none;
}

.why-us .section-title {
  color: var(--warm-white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-us__item {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease-smooth);
}

.why-us__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
}

.why-us__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.4;
}

.why-us__title {
  font-size: 1.1rem;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.why-us__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* === Featured Project Section === */
.featured-project {
  padding: var(--space-3xl) 0;
  background: var(--cream);
  position: relative;
}

.featured-project__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .featured-project__inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.featured-project__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.featured-project__img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.featured-project__img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/10;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.featured-project__img:nth-child(2) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.featured-project__img:nth-child(3) {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.featured-project__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.featured-project__img:hover img {
  transform: scale(1.05);
}

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

.featured-project__label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.featured-project__title {
  margin-bottom: var(--space-sm);
}

.featured-project__desc {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.featured-project__stats {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-lg);
}

.featured-project__stat h4 {
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1;
}

.featured-project__stat p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* === Coverage Area Section === */
.coverage {
  padding: var(--space-3xl) 0;
  background: var(--background);
  position: relative;
}

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

@media (min-width: 1024px) {
  .coverage__inner {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
}

.coverage__content .section-header {
  text-align: left;
  max-width: none;
  margin-bottom: var(--space-lg);
}

.coverage__content .section-label::before,
.coverage__content .section-label::after {
  display: none;
}

.coverage__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.coverage__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

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

.coverage__map {
  position: relative;
  background: var(--primary);
  padding: var(--space-xl);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.coverage__map-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--steel-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coverage__map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C9A227' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.coverage__map-content {
  position: relative;
  text-align: center;
  color: var(--warm-white);
}

.coverage__map-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.coverage__map-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* === CTA Section === */
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--brass-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%231A1A2E' fill-opacity='0.1'%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");
}

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

.cta-section__title {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.cta-section__subtitle {
  font-size: 1.2rem;
  color: rgba(26, 26, 46, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

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

.cta-section__contact {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(26, 26, 46, 0.2);
}

.cta-section__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
}

.cta-section__contact-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cta-section__contact-item span {
  font-weight: 600;
}

/* === Footer === */
.footer {
  background: var(--primary);
  color: var(--warm-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

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

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.footer__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.footer__logo-mark svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__logo-text span {
  font-weight: 400;
  opacity: 0.6;
}

.footer__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s var(--ease-smooth);
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease-smooth);
}

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

/* === Services Page === */
.page-hero {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 50%, var(--steel-dark) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--background), transparent);
  opacity: 0.05;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
}

.page-hero__breadcrumb a {
  transition: color 0.3s var(--ease-smooth);
}

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

.page-hero__breadcrumb svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.page-hero__title {
  color: var(--warm-white);
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Services Detail */
.services-detail {
  padding: var(--space-2xl) 0;
}

.services-detail__grid {
  display: grid;
  gap: var(--space-xl);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  background: var(--warm-white);
  padding: var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .service-detail-card {
    grid-template-columns: 300px 1fr;
    padding: var(--space-xl);
  }

  .service-detail-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
  }

  .service-detail-card:nth-child(even) .service-detail-card__image {
    order: 2;
  }
}

.service-detail-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

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

.service-detail-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-card__title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.service-detail-card__title svg {
  width: 32px;
  height: 32px;
  fill: var(--secondary);
}

.service-detail-card__desc {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.service-detail-card__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-detail-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.service-detail-card__feature svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary);
  flex-shrink: 0;
}

/* === About Page === */
.about-intro {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-intro__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro__image {
  position: relative;
}

.about-intro__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

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

.about-intro__badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--secondary);
  padding: var(--space-md);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

@media (max-width: 1023px) {
  .about-intro__badge {
    right: 20px;
  }
}

.about-intro__badge-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-intro__badge-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0.8;
}

.about-intro__content .section-label {
  justify-content: flex-start;
}

.about-intro__content .section-label::before {
  display: none;
}

.about-intro__content .section-title {
  margin-bottom: var(--space-md);
}

.about-intro__text {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.about-intro__text strong {
  color: var(--text);
}

/* Values Section */
.values {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

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

@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--warm-white);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-smooth);
}

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

.value-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--secondary);
}

.value-card__title {
  margin-bottom: 0.5rem;
}

.value-card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Process Section */
.process {
  padding: var(--space-2xl) 0;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process__grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--brass-light), var(--secondary));
    opacity: 0.3;
  }
}

.process__step {
  text-align: center;
  position: relative;
}

.process__number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--warm-white);
  border: 3px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.process__title {
  margin-bottom: 0.5rem;
}

.process__desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* === Projects Page === */
.projects-grid {
  padding: var(--space-2xl) 0;
}

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

@media (min-width: 768px) {
  .projects-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--steel-mid);
  cursor: pointer;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 60%);
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.4s var(--ease-smooth);
}

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

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0.8;
  transition: all 0.4s var(--ease-smooth);
}

.project-card:hover .project-card__content {
  transform: translateY(0);
  opacity: 1;
}

.project-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.project-card__title {
  font-size: 1.25rem;
  color: var(--warm-white);
  margin-bottom: 0.25rem;
}

.project-card__location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Projects CTA */
.projects-cta {
  padding: var(--space-2xl) 0;
  background: var(--cream);
  text-align: center;
}

.projects-cta__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.projects-cta__icon svg {
  width: 36px;
  height: 36px;
  fill: var(--secondary);
}

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

.projects-cta p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

/* === Contact Page === */
.contact-section {
  padding: var(--space-2xl) 0;
}

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

@media (min-width: 1024px) {
  .contact-section__inner {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info {
  background: var(--primary);
  padding: var(--space-xl);
  color: var(--warm-white);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.contact-info__title {
  color: var(--warm-white);
  margin-bottom: var(--space-sm);
}

.contact-info__subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info__item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1.1rem;
}

.contact-info__value a {
  transition: color 0.3s var(--ease-smooth);
}

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

.contact-info__hours {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info__hours h4 {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.contact-info__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--warm-white);
  padding: var(--space-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form__title {
  margin-bottom: var(--space-lg);
}

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

@media (min-width: 768px) {
  .form-row--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--accent);
  background: var(--background);
  color: var(--text);
  transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--warm-white);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%232D2D2D'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.95rem;
}

.contact-form__submit {
  margin-top: var(--space-md);
}

.contact-form__note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--accent);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Form Messages */
.form-message {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

/* Map Section */
.map-section {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

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

@media (min-width: 1024px) {
  .map-section__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.map-section__content .section-label {
  justify-content: flex-start;
}

.map-section__content .section-label::before {
  display: none;
}

.map-section__areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.map-section__area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--warm-white);
  font-weight: 500;
  transition: all 0.3s var(--ease-smooth);
}

.map-section__area:hover {
  background: var(--primary);
  color: var(--warm-white);
}

.map-section__area svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
}

.map-section__visual {
  aspect-ratio: 4/3;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.map-section__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C9A227' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.map-section__placeholder {
  position: relative;
  text-align: center;
  padding: var(--space-xl);
}

.map-section__placeholder svg {
  width: 60px;
  height: 60px;
  fill: var(--secondary);
  margin-bottom: var(--space-sm);
}

.map-section__placeholder p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* === Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-dramatic), transform 0.8s var(--ease-dramatic);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"].animated {
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="fade-right"].animated {
  transform: translateX(0);
}

/* Staggered animations */
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* === Responsive Adjustments === */
@media (max-width: 767px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cta-section__contact {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer__inner {
    text-align: center;
  }

  .footer__brand {
    max-width: none;
  }

  .footer__logo {
    justify-content: center;
  }

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

/* === Print Styles === */
@media print {
  .header,
  .footer,
  .cta-section,
  .hero__scroll {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

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