:root {
  --color-primary: #004267;
  --color-primary-rgb: 0, 66, 103;
  --color-accent: #cca61f;
  --color-bg: #ffffff;
  --color-text: #333333;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo { max-height: 50px; width: auto; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  text-decoration: none;
}
.header-cta {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.header-cta:hover { color: var(--color-accent); text-decoration: underline; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn-accent {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline-dark:hover { background: var(--color-primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }

/* ===== SECTIONS COMMON ===== */
.section { padding: 3.5rem 0; }
.section.dark {
  background: var(--color-primary);
  color: #fff;
}
.section.dark .section-title { color: #fff; }
.section.dark .section-title::after { background: var(--color-accent); }
.section.light { background: #f7f8fa; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--color-primary);
  position: relative;
  letter-spacing: -0.02em;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.75rem 0 0;
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* ===== TEXT HIGHLIGHT ===== */
.section-text-highlight { padding: 3.5rem 0; background: var(--color-primary); }
.text-highlight-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fff;
}
.text-highlight-content strong { color: #fff; }

/* ===== HERO (2-column layout like precision-institut.fr) ===== */
.section-hero {
  background: #f7f8fa;
  padding: 3rem 0;
}
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-text-col h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.hero-bullets {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.hero-bullets li {
  padding: 0.45rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.55;
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}
.hero-text-col .btn {
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}
.hero-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
}

/* ===== TWO COLUMNS (Description) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.img-left .col-image { order: -1; }
.col-text h2 {
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.body-text p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #4a4a4a;
}
.bullet-list { list-style: none; margin-top: 1.25rem; }
.bullet-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.55;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}
.desc-cta { margin-top: 1.75rem; }
.col-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ===== WHY US (2-column: image left, text+bullets right) ===== */
.why-us-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-us-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.why-us-text-col h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.why-us-subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.why-us-body p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #4a4a4a;
}
.why-us-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}
.why-us-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.55;
}
.why-us-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}
.why-us-list li strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
}
.why-us-list li span {
  color: #555;
  font-size: 0.9rem;
}

/* ===== REVIEWS (2-column: testimonials left, count right) ===== */
.section-reviews {
  background: #fff;
  padding: 2.5rem 0;
}
/* Zone haute : titre + avis (gauche) | compteur (droite) */
.reviews-two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.reviews-left-col .section-title {
  margin-bottom: 1.25rem;
}
.reviews-testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-quote {
  padding: 1.15rem 1.25rem;
  background: #f9fafb;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent);
}
.review-quote blockquote {
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.review-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  color: #595959;
  font-weight: 500;
}
.reviews-count-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.reviews-count {
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.reviews-label {
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.reviews-logo { margin: 0.5rem 0; }
.reviews-stars { margin: 0.75rem 0 1.5rem; }
.star {
  color: #fbbf24;
  font-size: 1.75rem;
  margin: 0 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.rating-value {
  color: var(--color-primary);
  margin-left: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
}
/* Zone basse : cartes Google compactes */
.reviews-google-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.review-card-google {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  transition: box-shadow 0.2s;
}
.review-card-google:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.review-card-stars .star {
  font-size: 0.9rem;
  margin: 0 1px;
}
.review-card-text {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.55;
  margin: 0.5rem 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.review-card-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
}
.review-card-date {
  font-size: 0.72rem;
  color: #717171;
}
/* Responsive reviews */
@media (max-width: 768px) {
  .reviews-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reviews-count-col {
    order: -1;
    padding: 1rem;
  }
  .reviews-count { font-size: 3.5rem; }
  .reviews-google-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA BANNER (rounded container) ===== */
.section-cta { padding: 3rem 0; }
.cta-rounded {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-rounded.dark {
  background: var(--color-primary);
  color: #fff;
}
.cta-rounded.light {
  background: #f7f8fa;
  color: var(--color-primary);
}
.cta-rounded.accent {
  background: var(--color-accent);
  color: #fff;
}
.cta-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.cta-rounded.dark .cta-text,
.cta-rounded.accent .cta-text { color: #fff; }
.cta-rounded.dark .btn-accent {
  background: #fff;
  color: var(--color-primary);
}
.cta-rounded.dark .btn-accent:hover {
  background: #f0f0f0;
}
.cta-rounded.light .cta-text { color: var(--color-primary); }

/* ===== SERVICES GRID (cards with images + link buttons) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
}
.service-card p { font-size: 0.88rem; color: #666; line-height: 1.55; margin-bottom: 0.75rem; }
.service-card h3 { flex-grow: 1; }
.service-card-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-pill);
  transition: all 0.25s;
  margin-top: auto;
}
.service-card-link:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ===== SERVICES DETAIL ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.service-detail.img-left .service-image { order: -1; }
.service-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.service-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: 700;
}
.service-info p { line-height: 1.7; color: #4a4a4a; }
.service-price {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.3rem;
}

/* ===== GUARANTEE (simple text block) ===== */
.section-guarantee {
  background: var(--color-primary);
  padding: 3.5rem 0;
}
.section-guarantee .container {
  max-width: 800px;
  text-align: center;
}
.guarantee-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.guarantee-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.05rem;
}
.guarantee-text p {
  margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.testimonial-quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.4;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
}
.testimonial-stars { margin-bottom: 0.75rem; }
.testimonial-card blockquote {
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: #444;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-card cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-card cite strong { display: block; font-size: 0.9rem; color: var(--color-primary); }
.testimonial-card cite span { font-size: 0.82rem; color: #555; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  transition: background 0.2s;
}
.faq-item summary:hover { background: #fafafa; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
}
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #555;
  line-height: 1.75;
}

/* ===== TEAM (image left + content right) ===== */
.section-team { padding: 3rem 0; }
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.team-image-col img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  max-height: 450px;
}
.team-content-full { grid-column: 1 / -1; }
.team-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.team-body {
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.team-body p { margin-bottom: 0.75rem; }
.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-list li {
  padding: 0.6rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.6;
}
.team-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}
.team-list li strong {
  color: var(--color-primary);
}
.team-role-inline {
  color: var(--color-accent);
  font-weight: 500;
}
.team-list li p {
  margin-top: 0.25rem;
  color: #555;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .team-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-image-col img { max-height: 300px; }
}

/* ===== MAP ===== */
.section-map { padding: 3rem 0 1.5rem; }
.section-map .map-body { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 2.5rem; max-width: 800px; }
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: start;
}
.map-info {
  padding: 2rem 0;
}
.map-logo {
  max-height: 70px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}
.map-business-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.map-address {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}
.map-hours {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}
.map-contact {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.map-contact a { color: var(--color-primary); text-decoration: none; font-weight: 500; }
.map-contact a:hover { text-decoration: underline; }
.map-embed { aspect-ratio: 3/2; }
.map-embed iframe { border-radius: var(--radius-md); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); width: 100%; height: 100%; }

/* ===== AUTO CONTRAST (dark background sections) ===== */
.section-dark-bg,
.section-dark-bg h2,
.section-dark-bg h3,
.section-dark-bg p,
.section-dark-bg blockquote,
.section-dark-bg cite,
.section-dark-bg strong,
.section-dark-bg li,
.section-dark-bg span,
.section-dark-bg .section-title,
.section-dark-bg .guarantee-title,
.section-dark-bg .guarantee-text,
.section-dark-bg .team-title,
.section-dark-bg .team-body,
.section-dark-bg .team-list li {
  color: #fff !important;
}
.section-dark-bg .team-list li::before,
.section-dark-bg .star {
  filter: brightness(1.2);
}
.section-dark-bg .btn-outline-dark {
  border-color: #fff;
  color: #fff;
}
.section-dark-bg .btn-outline-dark:hover {
  background: #fff;
  color: #333;
}
.section-dark-bg .section-title::after {
  background: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
  background: color-mix(in srgb, var(--color-primary), #000 30%);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  align-items: start;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-address { font-size: 0.9rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.footer-contact-item a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color 0.25s; }
.footer-contact-item a:hover { color: var(--color-accent); }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.social-links a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-bottom a:hover { color: var(--color-accent); }
.footer-nav { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 1.5rem; }
.footer-nav li { margin-bottom: 0.4rem; break-inside: avoid; }
.footer-nav a { color: rgba(255,255,255,0.85); font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--color-accent); }
.footer-nav-title { font-weight: 600; margin-bottom: 0.8rem; font-size: 0.95rem; color: #fff; }

/* ===== INLINE EDITING ===== */
[data-editable]:focus { outline: none !important; }
[contenteditable="true"] { outline: 2px solid rgba(200,169,126,1) !important; outline-offset: 3px !important; }
[contenteditable="true"]:focus { outline: 2px solid rgba(200,169,126,1) !important; outline-offset: 3px !important; }

/* ===== RESPONSIVE ===== */
html, body { overflow-x: hidden; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .reviews-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews-count-col { padding: 1.5rem; }
}

@media (max-width: 768px) {
  .hero-two-col,
  .two-col,
  .why-us-two-col,
  .service-detail,
  .map-layout { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.img-left .col-image,
  .service-detail.img-left .service-image { order: 0; }
  .section { padding: 2.5rem 0; }
  .section-hero { padding: 2rem 0; }
  .hero-text-col h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-title { font-size: 1.6rem; margin-bottom: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-count { font-size: 3.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-rounded { padding: 2rem 1.5rem; }
  .hero-img-placeholder { aspect-ratio: 4/3; }
  .col-image img, .hero-img, .why-us-img, .service-image img { width: 100%; height: auto; }
  .col-text h2, .why-us-text-col h2, .service-info h3 { font-size: 1.4rem; }
  .map-embed { aspect-ratio: 3/2; }
  .map-embed iframe { height: 100%; }
  .section-map { padding: 3rem 0 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.4rem; margin-bottom: 1.5rem; }
  .reviews-count { font-size: 2.5rem; }
  .reviews-label { font-size: 1.3rem; }
  .cta-rounded { padding: 1.5rem 1rem; }
  .cta-text { font-size: 1.1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .header-inner { flex-wrap: wrap; gap: 0.5rem; }
  .logo { max-height: 38px; }
  .logo-text { font-size: 0.95rem; }
  .header-cta { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
  .faq-item summary { padding: 1rem 1.25rem; font-size: 0.95rem; }
}

/* ===== IMAGE PLACEHOLDERS (editor only) ===== */
.img-placeholder {
  display: none;
}
body.is-editor .img-placeholder {
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s;
}
body.is-editor .img-placeholder:hover {
  background: #d1d5db;
}

/* Hide service card image container when no real image (non-editor) */
.service-card-img:not(:has(img)):not(:has(.img-placeholder)) { display: none; }
.service-card-img:has(.img-placeholder) { display: none; }
body.is-editor .service-card-img:has(.img-placeholder) { display: block; }

/* When no image and not in editor, collapse to single column */
.hero-image-col:not(:has(img)) { display: none; }
.hero-two-col:has(.hero-image-col:not(:has(img))) { grid-template-columns: 1fr; }
.col-image:not(:has(img)) { display: none; }
.two-col:has(.col-image:not(:has(img))) { grid-template-columns: 1fr; }
.why-us-image-col:not(:has(img)) { display: none; }
.why-us-two-col:has(.why-us-image-col:not(:has(img))) { grid-template-columns: 1fr; }
.service-image:not(:has(img)) { display: none; }
.service-detail:has(.service-image:not(:has(img))) { grid-template-columns: 1fr; }

/* In editor mode, always show image columns */
body.is-editor .hero-image-col:not(:has(img)),
body.is-editor .col-image:not(:has(img)),
body.is-editor .why-us-image-col:not(:has(img)),
body.is-editor .service-image:not(:has(img)) { display: flex; }
@media (min-width: 769px) {
  body.is-editor .hero-two-col,
  body.is-editor .two-col,
  body.is-editor .why-us-two-col { grid-template-columns: 1fr 1fr; }
  body.is-editor .service-detail { grid-template-columns: 1fr 1fr; }
}

/* ===== CITY ABOUT SECTION ===== */
.section-city-about { padding: 5rem 0; }
.city-about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.city-about-left { display: flex; flex-direction: column; }
.city-about-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.city-about-right { display: flex; flex-direction: column; gap: 1.5rem; }
.city-about-title { font-size: 2rem; line-height: 1.2; color: var(--color-primary); margin: 0; }
.city-about-divider { display: block; width: 60px; height: 3px; background: var(--color-accent); border-radius: 2px; }
.city-about-body { font-size: 1rem; line-height: 1.8; color: var(--color-text); }
.city-about-body p { margin-bottom: 1.2rem; }
.city-about-placeholder { min-height: 150px; aspect-ratio: 4/3; }

/* ===== CITY GUARANTEE SECTION ===== */
.city-guarantee-two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}
.city-guarantee-text-col { display: flex; flex-direction: column; gap: 1rem; }
.city-guarantee-text { font-size: 0.95rem; line-height: 1.7; color: var(--color-text); }
.city-guarantee-text p { margin-bottom: 0.75rem; }
.city-guarantee-badge-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-guarantee-badge { display: flex; justify-content: center; }
.guarantee-seal {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a3a5c, #0f2840);
  border: 5px solid #c8a44e;
  box-shadow: 0 0 0 3px #1a3a5c, 0 0 0 6px #c8a44e, 0 6px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-seal-inner {
  text-align: center;
  color: #fff;
}
.guarantee-seal-stars {
  color: #c8a44e;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 0.25rem;
}
.guarantee-seal-percent {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.guarantee-seal-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #c8a44e;
  line-height: 1.3;
}

/* ===== CITY REVIEWS SECTION ===== */
.city-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.city-reviews-subtitle h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
  margin: 0;
}
.city-reviews-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.city-reviews-score-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f4a623;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.city-reviews-score-details { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }
.city-reviews-count { font-size: 0.85rem; color: #666; }
.city-reviews-stars .star { color: #f4a623; font-size: 1rem; }
.city-reviews-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.city-review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}
.city-review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.city-review-card-stars .star { color: #f4a623; font-size: 0.9rem; }
.city-review-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.city-review-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}
.city-review-card-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.city-review-card-author { font-size: 0.85rem; font-weight: 500; color: var(--color-text); }
.city-review-google-icon { margin-left: auto; flex-shrink: 0; }
.city-reviews-cta { text-align: center; margin-top: 1rem; }

@media (max-width: 768px) {
  .section-city-about { padding: 3rem 0; }
  .city-about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .city-about-img { aspect-ratio: 16/10; }
  .city-about-title { font-size: 1.6rem; }
  .city-guarantee-two-col { grid-template-columns: 1fr; }
  .city-guarantee-badge-col { order: -1; }
  .city-guarantee-badge { max-width: 160px; margin: 0 auto; }
  .city-reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .city-reviews-cards { grid-template-columns: 1fr; }
}
