/* ===================================================
   London Renovation Experts — styles.css
   Design: Clean white, PT Sans, red accent #ed1e3b
   =================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --red:        #ed1e3b;
  --red-dark:   #c41230;
  --red-light:  rgba(237,30,59,.10);
  --black:      #1a1a1a;
  --dark-grey:  #303030;
  --mid-grey:   #666666;
  --light-grey: #f7f7f7;
  --white:      #ffffff;
  --border:     #e0e0e0;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --radius:     4px;
  --max-w:      1200px;
  --section-y:  72px;
  --font:       'PT Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark-grey); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img  { display: block; width: 100%; height: auto; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

h1,h2,h3,h4 { font-family: var(--font); font-weight: 700; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(1.8rem, 3.5vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p  { margin-bottom: 1rem; color: var(--dark-grey); }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-y) 0; }
.section--grey { background: var(--light-grey); }
.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-red  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn-full { display: block; width: 100%; text-align: center; }

/* ---- Top Bar ---- */
.topbar {
  background: var(--red);
  color: var(--white);
  padding: 8px 0;
  font-size: .82rem;
  font-weight: 700;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__phone a  { color: var(--white); font-weight: 700; }
.topbar__phone a:hover { text-decoration: underline; }
.topbar__trust    { color: rgba(255,255,255,.9); font-weight: 400; font-size: .78rem; }

/* ---- Site Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

/* Logo */
.logo {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--red); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark-grey);
  border-radius: var(--radius);
  transition: color .18s, background .18s;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: var(--font);
}
.nav__link:hover, .nav__link.active { color: var(--red); background: var(--red-light); }
.nav__arrow { font-size: .6rem; opacity: .6; transition: transform .2s; }
.nav__item:hover .nav__arrow { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 910;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--dark-grey);
  transition: background .14s, color .14s;
}
.nav__dropdown a:hover { background: var(--red-light); color: var(--red); }

/* Header phone CTA */
.nav__cta { flex-shrink: 0; }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--red-light);
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  transition: background .15s;
  white-space: nowrap;
}
.nav__phone:hover { background: var(--red); color: var(--white); }
.nav__phone a { color: var(--red); font-weight: 700; }
.nav__phone:hover a { color: var(--white); }

/* Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:first-child  { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:last-child   { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 800;
  flex-direction: column;
  padding: 80px 28px 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: var(--dark-grey);
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .btn { margin-top: 24px; }

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark-grey);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -3px 16px rgba(0,0,0,.25);
}
.mobile-call-bar a {
  flex: 1; text-align: center;
  padding: 13px 10px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  white-space: nowrap;
}
.mobile-call-bar__call  { background: var(--red); color: var(--white); }
.mobile-call-bar__quote { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .55;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.75) 40%, rgba(0,0,0,.25) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.hero__inner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.hero__sub {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.trust-badge__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--red);
}
.trust-badge__text strong {
  display: block;
  font-size: .92rem;
  color: var(--black);
  font-weight: 700;
}
.trust-badge__text span { font-size: .78rem; color: var(--mid-grey); }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card__img { height: 240px; overflow: hidden; }
.service-card__img img { height: 100%; transition: transform .55s ease; }
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__body { padding: 24px; }
.service-card__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card__body p  { font-size: .9rem; margin-bottom: 16px; }
.service-card__link {
  display: inline-block;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: var(--radius);
  transition: background .2s;
}
.service-card__link:hover { background: var(--red-dark); }

/* ---- Section headings ---- */
.section-heading { margin-bottom: 40px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p  { font-size: 1rem; max-width: 640px; }
.section-heading--center { text-align: center; }
.section-heading--center p { margin-left: auto; margin-right: auto; }
.heading-rule {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--red);
  margin-bottom: 14px;
  border-radius: 2px;
}

/* ---- About / Text Sections ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p  { font-size: .97rem; margin-bottom: 1rem; }

/* ---- Location SEO ---- */
.location-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.location-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.location-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--red); }
.location-card p  { font-size: .9rem; margin-bottom: 0; }

/* ---- Testimonials ---- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform .45s ease;
}
.testimonial-slide { min-width: 100%; padding: 0 8px; }
.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}
.stars { color: var(--red); font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark-grey);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-card .author { font-weight: 700; font-size: .95rem; color: var(--black); }
.testimonial-card .loc    { font-size: .8rem; color: var(--mid-grey); }

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  transition: background .2s, transform .2s;
}
.slider-dot.active { background: var(--red); transform: scale(1.3); }

.slider-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.slider-btn {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  color: var(--dark-grey);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ---- Contact Form ---- */
.contact-section { background: var(--light-grey); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info p  { font-size: .97rem; margin-bottom: 1rem; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
}
.contact-info-item h4 { margin-bottom: 2px; font-size: .95rem; }
.contact-info-item p  { margin-bottom: 0; font-size: .88rem; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--red);
}
.form-card h3 { margin-bottom: 6px; }
.form-card .sub { font-size: .82rem; color: var(--mid-grey); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark-grey);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark-grey);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,30,59,.10);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .72rem; color: var(--mid-grey); margin-top: 10px; text-align: center; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.cta-banner p  { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 540px; margin: 0 auto 26px; }
.cta-banner .phone-big { font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.cta-banner .phone-big a { color: var(--white); }
.cta-banner .phone-big a:hover { text-decoration: underline; }

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 52px 0 0;
  font-size: .88rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer__brand .logo { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; display: block; }
.footer__brand p { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer__col h4 { color: var(--white); font-size: .9rem; margin-bottom: 14px; letter-spacing: .04em; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { color: rgba(255,255,255,.55); transition: color .16s; }
.footer__col ul li a:hover { color: var(--red); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { color: rgba(255,255,255,.35); }
.footer__bottom a:hover { color: var(--red); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .5;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.65) 40%, rgba(0,0,0,.2) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 48px 24px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero__content h1 { color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.page-hero__content p  { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 560px; margin-bottom: 0; }

/* ---- About page ---- */
.feature-list { list-style: none; margin: 16px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .95rem;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--border);
}
.feature-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.value-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-item .icon { font-size: 2rem; margin-bottom: 10px; }
.value-item h4 { margin-bottom: 6px; font-size: .95rem; }
.value-item p  { font-size: .85rem; margin-bottom: 0; }

/* ---- Prose (content pages) ---- */
.prose h2 { margin: 2rem 0 .75rem; }
.prose h3 { margin: 1.6rem 0 .55rem; color: var(--dark-grey); }
.prose p  { font-size: .97rem; }
.prose ul { margin: .7rem 0 1.1rem 1.4rem; list-style: disc; }
.prose ul li { margin-bottom: .38rem; color: var(--dark-grey); }

/* ---- Breadcrumb ---- */
.breadcrumb { padding: 10px 0; font-size: .78rem; border-bottom: 1px solid var(--border); background: var(--light-grey); }
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--mid-grey); padding: 0 5px; }

/* ---- Service Sub-nav ---- */
.service-subnav { background: var(--light-grey); border-bottom: 1px solid var(--border); padding: 10px 0; overflow-x: auto; }
.service-subnav .container { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- Link Chips ---- */
.link-chip { display: inline-block; padding: 6px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; font-size: .8rem; color: var(--dark-grey); white-space: nowrap; transition: background .18s, color .18s, border-color .18s; }
.link-chip:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.link-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ---- Page Layout (content + sidebar) ---- */
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .page-layout { grid-template-columns: 1fr; } }

/* ---- Sidebar Lead Form Card ---- */
.form-sidebar { position: sticky; top: 90px; }
.lead-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.lead-form-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.lead-form-card .sub { font-size: .82rem; color: var(--mid-grey); margin-bottom: 18px; }
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-form .form-group label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: 4px; color: var(--dark-grey); }
.lead-form .form-group input,
.lead-form .form-group select,
.lead-form .form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font); font-size: .9rem; color: var(--dark-grey); background: var(--white); }
.lead-form .form-group textarea { min-height: 80px; resize: vertical; }
.lead-form .form-group input:focus,
.lead-form .form-group select:focus,
.lead-form .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-success { display: none; color: green; font-weight: 700; margin-top: 10px; }
.section-label { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }

/* ---- Button Aliases (compatibility) ---- */
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--dark-grey); border-color: var(--dark-grey); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---- CSS var compatibility ---- */
:root { --gold: var(--red); --gold-dark: var(--red-dark); --gold-light: var(--red-light); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid   { gap: 32px; }
}

@media (max-width: 900px) {
  :root { --section-y: 52px; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .location-cards { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr 1fr; }
  .nav            { display: none; }
  .nav__cta       { display: none; }
  .hamburger      { display: flex; }
  .mobile-call-bar{ display: flex; }
  body            { padding-bottom: 68px; }
}

@media (max-width: 640px) {
  .services-grid  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 12px; }
  .trust-badge    { flex: 1 1 45%; min-width: 140px; }
  .footer__grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .topbar__trust  { display: none; }
  .hero           { min-height: 100svh; }
  .hero__actions  { flex-direction: column; align-items: center; }
  .values-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .btn { width: 100%; text-align: center; }
  .form-card { padding: 22px 16px; }
}

/* ===== GOOGLE MAP SECTION ===== */
.map-section { margin-top: 0; }
.map-section__header {
  background: var(--dark, #1a1a1a);
  color: #fff;
  padding: 36px 0 28px;
  text-align: center;
}
.map-section__header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.map-section__header p {
  color: #ccc;
  margin: 0 auto;
  max-width: 560px;
  font-size: 0.95rem;
}
.map-section__embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}
@media (max-width: 640px) {
  .map-section__embed iframe { height: 280px; }
}

/* ===== FAQ SECTION ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 28px 28px 24px;
  border-left: 4px solid var(--red, #c0392b);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--dark, #1a1a1a);
}
.faq-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 20px 18px; }
}

/* ===== CONTENT GRID (Why Choose Us) ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.content-block {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 28px;
  border-top: 3px solid var(--red, #c0392b);
}
.content-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--dark, #1a1a1a);
}
.content-block p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-block { padding: 20px 18px; }
}
