/* ============================================================
   Marble Polishing UAE — Shared Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:       #C9A96E;
  --gold-light: #dfc08e;
  --gold-dark:  #a8863f;
  --dark:       #1C1C1E;
  --dark-2:     #2a2a2c;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --gray-100:   #f0efec;
  --gray-200:   #e2e0db;
  --gray-400:   #9a9590;
  --gray-600:   #666260;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 3rem;
}
.gold-text { color: var(--gold); }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: background var(--transition), box-shadow var(--transition);
}

/* Transparent variant for homepage hero */
.site-header[data-transparent="true"] {
  position: fixed;
  width: 100%;
  background: transparent;
  box-shadow: none;
}
.site-header[data-transparent="true"].scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.logo-main span { color: var(--gold); }
.logo-sub {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201,169,110,.08);
}
.nav-link i.chevron { font-size: .7rem; transition: transform var(--transition); }
.nav-item:hover > .nav-link i.chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown a i {
  color: var(--gold);
  width: 16px;
  text-align: center;
  font-size: .8rem;
}
.dropdown a:hover {
  background: rgba(201,169,110,.1);
  color: var(--gold);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-phone i { color: var(--gold); font-size: .9rem; }
.header-phone:hover { color: var(--gold); }
.header-wa {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #25D366;
  color: var(--white);
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.header-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.header-wa i { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: 6px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,169,110,.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-nav.open { max-height: 100vh; }
.mobile-nav-inner { padding: 1rem 5vw 1.5rem; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 0;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 500;
  cursor: pointer;
}
.mobile-nav-link i { color: var(--gold); width: 18px; text-align: center; }
.mobile-nav-link.toggle-mobile-dd { justify-content: space-between; }
.mobile-nav-link.toggle-mobile-dd .chevron-m { font-size: .7rem; color: rgba(255,255,255,.5); transition: transform var(--transition); }
.mobile-nav-link.toggle-mobile-dd.open .chevron-m { transform: rotate(180deg); }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-dropdown { padding-left: 1.5rem; display: none; }
.mobile-dropdown.open { display: block; }
.mobile-dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-dropdown a i { color: var(--gold); width: 16px; font-size: .8rem; }
.mobile-dropdown a:hover { color: var(--gold); }
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.25rem;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.35); }
.breadcrumb span { color: var(--gold); }

/* ---------- PAGE HERO ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2517 60%, var(--dark) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%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: .6;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 720px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.3);
  color: var(--gold);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
}
.hero-badge i { font-size: .75rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- SECTION UTILITIES ---------- */
.section-pad { padding: 5rem 0; }
.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--dark); }
.content-section { padding: 5rem 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ---------- ABOUT / CONTENT GRID ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-grid.image-left { direction: rtl; }
.about-grid.image-left > * { direction: ltr; }

.about-text .section-label { display: block; margin-bottom: .5rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: .975rem;
  line-height: 1.8;
}
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-image-frame {
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--gold) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ---------- FEATURE LIST ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  border-color: rgba(201,169,110,.3);
}
.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
}
.feature-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .2rem;
  font-family: 'Inter', sans-serif;
}
.feature-text span { font-size: .82rem; color: var(--gray-600); }

/* ---------- CARDS: WHY GRID (6 cards) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,110,.3);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(201,169,110,.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,.2);
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.why-card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- CARDS: SERVICES GRID (4 cards, 2-col) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service-number {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: rgba(201,169,110,.15);
  line-height: 1;
  margin-bottom: .5rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-tag {
  display: inline-block;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.25);
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 50px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .85rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,169,110,.3); }
.faq-item.open { border-color: rgba(201,169,110,.4); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .975rem;
  transition: color var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(201,169,110,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .7rem;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 1rem 1.5rem 1.4rem;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
  border-top: 1px solid var(--gray-100);
}

/* ---------- COMPARISON COLUMNS ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.comparison-col {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.comparison-col:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.comparison-col.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--gold);
}
.comparison-col.featured h3 { color: var(--white); }
.comparison-col.featured > p { color: rgba(255,255,255,.65); }
.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.comparison-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.comparison-col h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.comparison-col > p { font-size: .875rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.comparison-list { display: flex; flex-direction: column; gap: .7rem; }
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--gray-600);
}
.comparison-list li i { color: var(--gold); margin-top: .25rem; font-size: .85rem; flex-shrink: 0; }
.comparison-col.featured .comparison-list li { color: rgba(255,255,255,.8); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2517 50%, var(--dark) 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.cta-banner h2 span { color: var(--gold); }
.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}
.cta-trust-item i { color: var(--gold); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #111113;
  color: rgba(255,255,255,.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.5);
}
.footer-socials { display: flex; gap: .65rem; }
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--transition), padding-left var(--transition);
  padding: .15rem 0;
}
.footer-links a i { color: var(--gold); font-size: .7rem; flex-shrink: 0; }
.footer-links a:hover { color: var(--gold); padding-left: .3rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: .875rem;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(201,169,110,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .8rem;
}
.footer-contact-item span { color: rgba(255,255,255,.5); }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ---------- FLOATING BUTTONS ---------- */
.floating-whatsapp,
.floating-call {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-whatsapp {
  bottom: 92px;
  right: 24px;
  background: #25D366;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
  color: var(--white);
}
.floating-call {
  bottom: 24px;
  right: 24px;
  background: var(--gold);
}
.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(201,169,110,.45);
  color: var(--white);
}
.floating-whatsapp::after,
.floating-call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .3;
  animation: pulse-ring 2.2s ease-out infinite;
}
.floating-whatsapp::after { color: #25D366; }
.floating-call::after { color: var(--gold); }

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .35; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- FADE-UP ANIMATION ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.fade-up-delay-5 { transition-delay: .5s; }
.fade-up-delay-6 { transition-delay: .6s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid { gap: 2.5rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-phone { display: none; }
  .header-wa span { display: none; }
  .header-wa { padding: .5rem .7rem; }

  .page-hero { padding: 3.5rem 0 3rem; }
  .section-pad, .content-section { padding: 3.5rem 0; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-grid.image-left { direction: ltr; }
  .about-image img { height: 300px; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .cta-trust { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .floating-whatsapp { bottom: 84px; right: 16px; width: 50px; height: 50px; font-size: 1.25rem; }
  .floating-call { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 1.25rem; }
}

/* ---------- UTILITIES ---------- */
.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;
}

/* ==========================================================
   BACKWARD-COMPATIBLE NAV CLASSES (used by all pages except
   marble-cleaning.html which uses .header-inner / .main-nav)
   ========================================================== */

/* Remove any padding the container adds inside the header */
.site-header .container { padding-left: 0; padding-right: 0; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(1rem, 3vw, 2rem);
  max-width: var(--max-width, 1280px);
  margin: 0 auto;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-links a,
.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,169,110,.08);
}

/* Dropdown (old class name) */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .6rem;
  margin-left: .2rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  background: var(--dark-2, #2a2a2c);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius, 12px);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a,
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .9rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  background: none;
  transition: var(--transition);
}

.dropdown-menu a:hover { background: rgba(201,169,110,.1); color: var(--gold); }

/* Nav CTA (old class name) */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-phone i { color: var(--gold); }
.nav-phone:hover { color: var(--gold); }

/* Hide old nav links on mobile (same breakpoint as .main-nav) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-phone { display: none; }
}

/* ==========================================================
   PAGE HERO — support optional background image via inline style
   ========================================================== */

/* When a background-image is applied inline, show it with a dark overlay */
.page-hero[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
}

.page-hero[style*="background-image"]::before {
  background: linear-gradient(135deg, rgba(28,28,30,.88) 0%, rgba(28,28,30,.72) 100%) !important;
  opacity: 1 !important;
}

/* Center page-hero content when text-align center is used */
.page-hero .page-hero-content.text-center,
.page-hero .container.page-hero-content { text-align: center; }
.page-hero .container.page-hero-content p { margin-left: auto; margin-right: auto; }

/* Extra button row spacing in page hero */
.page-hero .hero-btn-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================
   FLOATING WIDGETS (used by all pages)
   ========================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: pulse-wa 2.5s infinite;
  transition: transform var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1); color: #fff; }

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,.8); }
}

.floating-call {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,197,94,.4);
  transition: transform var(--transition);
}
.floating-call:hover { transform: scale(1.1); color: #fff; }

/* ==========================================================
   EXTRA BUTTON VARIANTS used by old pages
   ========================================================== */
.btn-call {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #fff !important;
}
.btn-call:hover { background: linear-gradient(135deg,#16a34a,#15803d); transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: #fff !important; }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* ==========================================================
   LAYOUT HELPERS
   ========================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c97e);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.gold-line-left {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c97e);
  margin: 1rem 0 0;
  border-radius: 2px;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}
.section-header p {
  color: #666;
  margin-top: .75rem;
  font-size: 1.05rem;
}
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.75); }
.section-header.light .eyebrow { color: var(--gold); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* ==========================================================
   TRUST BAR
   ========================================================== */
.trust-bar {
  background: var(--dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}
.trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
  transition: opacity .5s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,30,.92) 0%, rgba(28,28,30,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,.25);
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
  letter-spacing: .05em;
}

/* ==========================================================
   SERVICE CARDS
   ========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201,169,110,.12);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}
.service-card-img-wrap {
  height: 200px;
  overflow: hidden;
  background: #f0ece4;
  position: relative;
}
.service-card-img-wrap img,
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}
.service-card:hover .service-card-img-wrap img,
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg,#fdf5e4,#f5e6c8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin: 0 0 .5rem;
}
.service-card-desc {
  font-size: .92rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: .7rem; }

/* ==========================================================
   WHY CHOOSE / FEATURE CARDS
   ========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(201,169,110,.06);
  transform: translateY(-4px);
}
.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg,rgba(201,169,110,.15),rgba(201,169,110,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 .6rem;
}
.why-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .95rem;
  color: #444;
  line-height: 1.6;
}
.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: .85rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

/* ==========================================================
   PROCESS STEPS
   ========================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}
.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8c97e);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(201,169,110,.35);
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin: 0 0 .5rem;
}
.step-desc {
  font-size: .88rem;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================
   BEFORE / AFTER
   ========================================================== */
.before-after-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width:640px) { .before-after-wrap { grid-template-columns: 1fr; } }
.ba-panel {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.ba-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(28,28,30,.8);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 20px;
  border: 1px solid rgba(201,169,110,.3);
}
.ba-label.after {
  background: linear-gradient(135deg, var(--gold), #e8c97e);
  color: var(--dark);
  border-color: var(--gold);
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 12px;
  padding: 2rem;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8c97e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  color: #fff;
  font-size: .95rem;
}
.author-location {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: .1rem;
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 10px;
  margin-bottom: .85rem;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg,#fdf5e4,#f5e6c8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  border-top: 1px solid rgba(201,169,110,.12);
  padding-top: 1rem;
}

/* ==========================================================
   LOCATIONS GRID
   ========================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.location-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .4s, transform .5s;
  display: block;
}
.location-card:hover img { opacity: .4; transform: scale(1.05); }
.location-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(to top, rgba(28,28,30,.9) 0%, transparent 60%);
}
.location-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 .4rem;
}
.location-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .85rem;
  line-height: 1.5;
}
.location-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition);
}
.location-link:hover { gap: .7rem; }

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg,rgba(201,169,110,.15),rgba(201,169,110,.05));
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 24px;
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.contact-info-card {
  background: #fff;
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg,#fdf5e4,#f5e6c8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.contact-info-value {
  font-size: .95rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.5;
}
.contact-cta-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg,#f0ece4,#e8e0d0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border: 1px solid rgba(201,169,110,.2);
  color: var(--gold);
  text-align: center;
}
.map-icon { font-size: 2.5rem; }
.map-placeholder p {
  font-size: .88rem;
  color: #888;
  margin: 0;
}

/* ==========================================================
   CONTACT FORM
   ========================================================== */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .45rem;
  letter-spacing: .03em;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e0d9cc;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: #faf9f7;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
  background: #fff;
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A96E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), #e8c97e);
  color: var(--dark);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(201,169,110,.4);
}
.about-img-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-img-badge .badge-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .25rem;
  display: block;
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner-content {
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin: .75rem 0 1rem;
}
.cta-banner-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ==========================================================
   SOCIAL BUTTONS
   ========================================================== */
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ==========================================================
   FOOTER COLUMNS
   ========================================================== */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 1.25rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: .6rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.7;
}

/* ==========================================================
   SECTION PADDING UTILITY
   ========================================================== */
.section-pad {
  padding: 5rem 0;
}
.section-pad-sm {
  padding: 3rem 0;
}
.bg-dark-section {
  background: var(--dark);
}
.bg-off-white {
  background: var(--off-white);
}

/* ==========================================================
   RESPONSIVE HELPERS
   ========================================================== */
@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }
  .hero { min-height: 85vh; padding-top: 72px; }
  .hero-stats { gap: 1.5rem; }
  .services-grid,
  .why-grid,
  .testimonials-grid,
  .locations-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .before-after-wrap { grid-template-columns: 1fr; }
  .about-img-badge { right: -.75rem; bottom: -.75rem; }
  .contact-form-wrap { padding: 1.75rem; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
