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

:root {
  --gold: #BB7B32;
  --gold-dark: #9A6428;
  --gold-light: #D4983F;
  --dark: #24262B;
  --text: #333333;
  --text-light: #555555;
  --bg: #ffffff;
  --bg-alt: #f8f7f5;
  --bg-warm: #faf9f7;
  --border: #e8e4df;
  --shadow: rgba(0,0,0,0.08);
  --shadow-md: rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1200px;
  --header-height: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

body.has-sticky-footer { padding-bottom: 64px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.2;
  color: var(--dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== PHONE BUTTON (Global Highlight Style) ===== */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(187, 123, 50, 0.35);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-phone:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(187, 123, 50, 0.45);
}

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

.btn-phone.btn-phone--sm {
  font-size: 14px;
  padding: 10px 20px;
}

.btn-phone.btn-phone--lg {
  font-size: 18px;
  padding: 16px 36px;
}

.btn-phone.btn-phone--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}

.btn-phone.btn-phone--outline:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(187, 123, 50, 0.35);
}

/* Secondary button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #3a3d44;
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.3s, box-shadow 0.3s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--header-height);
  max-width: var(--container);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-icon svg { width: 24px; height: 24px; }

.header__logo-text {
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.header__logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.header__nav > a,
.header__nav > .nav-dropdown > .nav-dropdown__toggle {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.header__nav > a:hover,
.header__nav > a.active,
.header__nav > .nav-dropdown:hover > .nav-dropdown__toggle { color: var(--gold); }

.header__nav > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s;
}

.header__nav > a:hover::after,
.header__nav > a.active::after { width: 100%; }

/* Dropdown chevron */
.nav-dropdown__toggle .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown__toggle .chevron { transform: rotate(180deg); }

/* Desktop dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 100;
}

.nav-dropdown:hover > .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown__menu-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  padding: 12px 0;
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Two-column layout for services dropdown */
.nav-dropdown__menu-inner--wide {
  min-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px;
  gap: 0;
}

.nav-dropdown__menu-inner a {
  display: block;
  padding: 10px 20px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-dropdown__menu-inner--wide a {
  padding: 9px 14px;
}

.nav-dropdown__menu-inner a:hover {
  color: var(--gold);
  background: rgba(187,123,50,0.06);
}

.nav-dropdown__menu-inner a.active {
  color: var(--gold);
  background: rgba(187,123,50,0.1);
}

.header__cta .btn-phone { font-size: 14px; padding: 10px 20px; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 10001;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
  padding: 24px;
}

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

.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__nav { margin-top: 48px; }

.mobile-menu__nav > a,
.mobile-menu__nav > .mobile-dropdown > .mobile-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.mobile-menu__nav > a:hover,
.mobile-menu__nav > .mobile-dropdown > .mobile-dropdown__toggle:hover { color: var(--gold); }

.mobile-dropdown__toggle .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
  color: var(--gold);
}

.mobile-dropdown.is-open .mobile-dropdown__toggle .chevron { transform: rotate(180deg); }

.mobile-dropdown__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.mobile-dropdown.is-open .mobile-dropdown__menu {
  max-height: 600px;
  border-bottom: 1px solid var(--border);
}

.mobile-dropdown__menu a {
  display: block;
  padding: 10px 16px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
  border-bottom: 1px solid var(--border);
}

.mobile-dropdown__menu a:last-child { border-bottom: none; }

.mobile-dropdown__menu a:hover,
.mobile-dropdown__menu a.active { color: var(--gold); }

.mobile-menu__cta {
  margin-top: 24px;
}

.mobile-menu__cta .btn-phone {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 16px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0ece6 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(187,123,50,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187,123,50,0.1);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero h1 .highlight { color: var(--gold); }

.hero__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: 'Archivo', system-ui, sans-serif;
}

.hero__desc {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

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

.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__image-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.hero__image-badge .badge-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.hero__image-badge .badge-text span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--dark);
  padding: 28px 0;
}

.stats__grid {
  display: flex;
  justify-content: center;
  gap: 0;
}

.stats__item {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stats__item:last-child { border-right: none; }

.stats__number {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.stats__label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ===== SECTION STYLING ===== */
.section {
  padding: 80px 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about__content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about__badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about__badge svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.about__badge span {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

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

/* ===== SERVICES GRID ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-md);
  border-color: var(--gold);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(187,123,50,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.service-card:hover .service-card__icon { background: var(--gold); }

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: color 0.3s;
}

.service-card:hover .service-card__icon svg { color: #fff; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  transition: gap 0.2s;
}

.service-card:hover .service-card__link { gap: 10px; }

/* ===== BEFORE/AFTER SLIDER ===== */
.slider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  cursor: ew-resize;
  box-shadow: 0 8px 24px var(--shadow-md);
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__after { clip-path: inset(0 50% 0 0); }

.ba-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 2;
}

.ba-slider__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ba-slider__handle svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.ba-slider__label {
  position: absolute;
  bottom: 12px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ba-slider__label--before {
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
}

.ba-slider__label--after {
  left: 12px;
  background: var(--gold);
  color: #fff;
}

.ba-slider__title {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  color: var(--dark);
}

/* ===== WHY CHOOSE US ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 28px var(--shadow);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(187,123,50,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-card__location {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}

.faq-item__question:hover { color: var(--gold); }

.faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #3a3d44 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner .btn-phone { font-size: 18px; padding: 16px 36px; }

/* ===== LOCATIONS GRID ===== */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}

.location-card:hover {
  box-shadow: 0 8px 28px var(--shadow);
  transform: translateY(-2px);
}

.location-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(187,123,50,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.location-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.location-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.location-card__address {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.location-card__buttons {
  display: flex;
  gap: 10px;
}

.location-card__buttons .btn-phone {
  font-size: 13px;
  padding: 10px 16px;
  flex: 1;
  justify-content: center;
}

.location-card__buttons .btn-secondary {
  font-size: 13px;
  padding: 10px 16px;
  flex: 1;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
}

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

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
}

.footer__brand .header__logo-text { color: #fff; }

.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer ul a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== STICKY FOOTER CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--gold);
  padding: 0;
  display: none;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  color: #fff;
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.sticky-cta svg { width: 22px; height: 22px; }

/* ===== SERVICE PAGE ===== */
.service-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0ece6 100%);
}

.service-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.service-hero .hero__badge { margin-bottom: 16px; }

.service-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-content {
  padding: 64px 0;
}

.service-content__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.service-content__main h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-content__main h3 {
  font-size: 22px;
  margin: 32px 0 12px;
}

.service-content__main p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-content__main ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-content__main ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.service-content__main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}

.service-content__main ul li::after {
  content: '\2713';
  position: absolute;
  left: 3px;
  top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

/* Sidebar */
.service-sidebar {}

.sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.sidebar-card .btn-phone {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.sidebar-card ul li {
  margin-bottom: 8px;
}

.sidebar-card ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
  border: 1px solid var(--border);
}

.sidebar-card ul li a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sidebar-card ul li a.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ===== LOCATION PAGE ===== */
.location-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0ece6 100%);
}

.location-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.location-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
}

.location-hero__subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 700px;
  line-height: 1.7;
}

.location-hero__info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.location-hero__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-light);
}

.location-hero__info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.location-hero__info-item strong { color: var(--dark); }

.location-map {
  margin: 0;
  padding: 0;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Other locations links */
.other-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-locations__grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  transition: all 0.2s;
}

.other-locations__grid a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.other-locations__grid a svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { max-width: 500px; }
  .about__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .header__nav, .header__cta { display: none; }
  .header__hamburger { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero h1 { font-size: 32px; }
  .hero__desc { font-size: 15px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn-phone,
  .hero__buttons .btn-secondary { width: 100%; justify-content: center; }

  .stats__grid { flex-direction: column; gap: 16px; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 0; }
  .stats__item:last-child { border-bottom: none; }

  .section { padding: 56px 0; }
  .section__title { font-size: 28px; }

  .services__grid,
  .features__grid,
  .testimonials__grid,
  .locations__grid,
  .slider-grid { grid-template-columns: 1fr; }

  .other-locations__grid { grid-template-columns: 1fr; }

  .service-content__grid { grid-template-columns: 1fr; }
  .service-hero h1, .location-hero h1 { font-size: 30px; }

  .sticky-cta { display: block; }
  body.has-sticky-footer { padding-bottom: 60px; }

  .cta-banner h2 { font-size: 28px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .location-hero__info { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .location-card__buttons { flex-direction: column; }
  .hero__buttons .btn-phone { font-size: 16px; }
}
