/* ===== Variables & Reset ===== */
:root {
  --primary: #4a5a3c;
  --primary-hover: #3d4d31;
  --primary-dark: #1a1a1a;
  --accent: #c9a84c;
  --accent-hover: #b8963e;
  --accent-light: #d4c09a;
  --blue: #5ba4c9;
  --blue-light: #e8f4fa;
  --dark: #1a1a1a;
  --gray-900: #2d2d2d;
  --gray-700: #555;
  --gray-500: #888;
  --gray-400: #aaa;
  --gray-300: #d1d1d1;
  --gray-200: #e8e8e8;
  --gray-100: #f4f4f4;
  --white: #ffffff;
  --font: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --icon-fb: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
  --icon-ig: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
  --icon-google: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 01-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z'/%3E%3Cpath d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E");
  --max-width: 1100px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 5px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(74,90,60,0.18);
}

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

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); line-height: 1.3; color: var(--primary-dark); }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--gray-100);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 640px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

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

.btn--white {
  background: var(--white);
  color: var(--primary-dark);
}
.btn--white:hover {
  background: var(--gray-100);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

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

.btn--phone {
  background: var(--primary);
  color: var(--white);
  font-size: 1.15rem;
  padding: 14px 30px;
}
.btn--phone:hover {
  background: var(--primary-hover);
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar__left a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__left a:hover { color: var(--white); }

.topbar__right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar__social a {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  transition: opacity 0.2s;
  font-size: 0;
}
.topbar__social a:hover { opacity: 1; }
.topbar__social .social--fb { background-image: var(--icon-fb); filter: brightness(0) invert(1); }
.topbar__social .social--ig { background-image: var(--icon-ig); filter: brightness(0) invert(1); }
.topbar__social .social--google { background-image: var(--icon-google); filter: brightness(0) invert(1); }

/* ===== Header ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer__logo img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

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

.header__nav a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
}
.header__nav a:hover {
  color: var(--primary);
}
.header__nav a.active {
  color: var(--primary);
  font-weight: 700;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header__phone:hover {
  background: var(--primary-hover);
  color: var(--white);
}

/* Compact phone icon (mobile only) */
.header__phone-icon {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__phone-icon svg { width: 20px; height: 20px; display: block; }
.header__phone-icon:hover { background: var(--primary-hover); color: var(--white); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 130px 0 140px;
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(15,22,12,0.85) 0%, rgba(26,40,20,0.55) 50%, rgba(26,40,20,0.25) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.35), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.hero__content {
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.hero__brand-mark {
  position: absolute;
  top: 48px;
  right: 48px;
  height: 180px;
  width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
  pointer-events: none;
  z-index: 1;
}

.hero__title-accent {
  color: var(--accent);
  display: inline-block;
}

.hero__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 580px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}

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

.hero__meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 88px 0;
  background: linear-gradient(120deg, rgba(20,28,16,0.85), rgba(74,90,60,0.55)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.page-hero--about {
  background: linear-gradient(120deg, rgba(20,28,16,0.78), rgba(26,40,20,0.55)),
    url('../images/hero-bg-alt1.jpg') center/cover no-repeat;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.page-hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Reusable eyebrow tag */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  color: var(--accent);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
}

.eyebrow--dark {
  color: var(--primary);
  background: rgba(74,90,60,0.08);
  border-color: rgba(74,90,60,0.25);
}

/* ===== Trust Badges ===== */
.badges {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
}

.badges__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 0;
  justify-items: center;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.badges__grid .badge-item:nth-child(1) { grid-column: 1 / span 2; }
.badges__grid .badge-item:nth-child(2) { grid-column: 3 / span 2; }
.badges__grid .badge-item:nth-child(3) { grid-column: 5 / span 2; }
.badges__grid .badge-item:nth-child(4) { grid-column: 2 / span 2; }
.badges__grid .badge-item:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 768px) {
  .badges__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .badges__grid .badge-item:nth-child(n) { grid-column: auto; }
  .badges__grid .badge-item:nth-child(5) { grid-column: 1 / -1; justify-self: center; }
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 0 8px;
}

.badge-item__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(74,90,60,0.1), rgba(201,168,76,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  color: var(--primary);
  flex-shrink: 0;
}

.badge-item__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.badge-item__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.2px;
  line-height: 1.3;
}

/* ===== Stats ===== */
.stats {
  background: var(--primary-dark);
  padding: 64px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* ===== Service Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  color: inherit;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card:hover .card__image {
  transform: scale(1.05);
}
.card:hover .card__title {
  color: var(--primary);
}

.card__image {
  width: 100%;
  height: 220px;
  background-color: var(--gray-200);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.card__body {
  padding: 28px 24px 26px;
  overflow: hidden;
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
  transition: color 0.2s;
}

.card__text {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}
.card__link:hover {
  color: var(--primary-hover);
}

/* ===== Reviews ===== */
.reviews__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.reviews__stars {
  color: #f5a623;
  font-size: 1.3rem;
}

.reviews__rating {
  font-weight: 700;
  font-size: 1.1rem;
}

.reviews__count {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-card__stars {
  color: #f5a623;
  font-size: 0.9rem;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ===== Service Blocks (services page) ===== */
.service-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-section:last-of-type {
  border-bottom: none;
}

.service-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-section__text {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  max-width: 720px;
  line-height: 1.7;
}

.service-list {
  margin-bottom: 24px;
}
.service-list li {
  padding: 5px 0 5px 24px;
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-block--reverse {
  direction: rtl;
}
.service-block--reverse > * {
  direction: ltr;
}

.service-block__image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--gray-200);
}

/* ===== Gallery / Portfolio ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 9px 20px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
  z-index: 0;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background 0.3s;
  z-index: 1;
}
.gallery-item:hover .gallery-item__overlay {
  background: linear-gradient(to top, rgba(26,40,20,0.9) 0%, rgba(26,40,20,0.35) 50%, rgba(0,0,0,0.1) 100%);
}

.gallery-item__category {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 4px;
}

.gallery-item__title {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ===== Why Choose Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-item {
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.5);
}

.why-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(74,90,60,0.08), rgba(201,168,76,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid var(--gray-200);
}

.why-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.why-item__text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== CTA Banner ===== */
.cta {
  background: var(--primary);
  padding: 88px 0;
  text-align: center;
  color: var(--white);
}

.cta__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--dark);
}
.contact-info__value a:hover { color: var(--primary); }

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  background: var(--gray-200);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Form ===== */
.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.form__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form__subtitle {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form__group { margin-bottom: 16px; }

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form__textarea { resize: vertical; min-height: 110px; }

.form__submit { width: 100%; margin-top: 6px; }

/* ===== About Page ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-intro__image {
  width: 100%;
  height: 440px;
  border-radius: var(--radius);
  background-color: var(--gray-200);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.about-intro__content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary-dark);
  line-height: 1.25;
}

.about-intro__content p {
  color: var(--gray-700);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.team-member { text-align: center; }

.team-member__photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  background-color: var(--gray-200);
  background-size: cover;
  background-position: center;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.team-member__photo--placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: var(--font);
}

.team-member__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.team-member__role {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 500;
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 40px;
  text-align: left;
}

.service-area-list li {
  padding: 14px 18px 14px 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.service-area-list li:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.service-area-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(74,90,60,0.15);
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: background-color 0.2s;
}
.footer__social a::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer__social a:hover { background-color: var(--accent); }
.footer__social a:hover::before { filter: brightness(0); opacity: 0.8; }
.footer__social .social--fb::before { background-image: var(--icon-fb); }
.footer__social .social--ig::before { background-image: var(--icon-ig); }
.footer__social .social--google::before { background-image: var(--icon-google); }

.footer__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__links li { margin-bottom: 8px; }
.footer__links a { color: rgba(255,255,255,0.55); }
.footer__links a:hover { color: var(--accent); }

.footer__contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: flex-start;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== Mobile sticky bottom CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1;
}
.mobile-cta a svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta__call {
  background: var(--primary);
  color: var(--white);
}
.mobile-cta__estimate {
  background: var(--accent);
  color: var(--primary-dark);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block--reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .about-intro__image { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__brand-mark { height: 130px; top: 32px; right: 32px; opacity: 0.7; }
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }

  .topbar { display: none; }
  .mobile-cta { display: block; }

  .container { padding: 0 16px; }

  .section { padding: 56px 0; }
  .cta { padding: 56px 0; }
  .stats { padding: 44px 0; }
  .badges { padding: 36px 0; }
  .service-section { padding: 44px 0; }

  .header__inner { height: 64px; gap: 8px; }
  .header__logo img { height: 44px; }

  .nav-toggle { display: flex; }
  .header__phone-icon { display: inline-flex; }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 24px;
    transition: right 0.35s ease;
  }
  .header__nav.open { right: 0; }
  .header__nav a {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9) !important;
    padding: 14px 24px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-radius: var(--radius);
  }
  .header__nav a.active,
  .header__nav a:hover { color: var(--accent) !important; background: rgba(255,255,255,0.05); }

  .header__phone { display: none; }

  .hero { padding: 64px 0 72px; min-height: auto; }
  .hero__brand-mark { display: none; }
  .hero__title { font-size: 2.1rem; }
  .hero__text { font-size: 1rem; }
  .hero__meta { gap: 12px; font-size: 0.8rem; }
  .page-hero { padding: 56px 0; }
  .page-hero__title { font-size: 1.9rem; }
  .page-hero__subtitle { font-size: 1rem; }
  .about-intro__content h2 { font-size: 1.6rem; }
  .about-intro__image { height: 260px; }
  .team-member__photo { width: 140px; height: 140px; }
  .section-title { font-size: 1.6rem; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .badges__grid { gap: 24px; }

  .form__row { grid-template-columns: 1fr; }
  .form__input,
  .form__select,
  .form__textarea { font-size: 16px; padding: 13px 14px; }
  .form { padding: 24px 20px; }

  .service-block__image { height: 240px; }
  .contact-map { height: 200px; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta__title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0 56px; }
  .hero__eyebrow { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 18px; }
  .hero__title { font-size: 1.75rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .hero__meta { gap: 10px; }
  .hero__meta-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .badges__grid { gap: 16px; }
  .badge-item__icon { width: 48px; height: 48px; font-size: 1.2rem; }
}
