/* ============================================================
   RODEO SHINE WINDOW CLEANING — styles.css
   Mobile-first responsive stylesheet
   Colors: Black / White / Gold (#c9a84c)
   Fonts: Montserrat (headings) / Inter (body)
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --black:        #0d0d0d;
  --black-soft:   #1a1a1a;
  --white:        #ffffff;
  --off-white:    #f8f8f6;
  --gold:         #c9a84c;
  --gold-light:   #dfc878;
  --gold-dark:    #a88930;
  --text-dark:    #1a1a1a;
  --text-body:    #4a4a47;
  --text-muted:   #888880;
  --border:       #e5e5e0;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow:       0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);

  --transition:   0.22s ease;
  --radius:       4px;
  --radius-lg:    10px;

  --container:    1140px;
  --section-pad:  clamp(4rem, 8vw, 7rem);
  --nav-h:        68px;
  --mobile-bar-h: 64px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Bottom padding prevents mobile CTA bar from covering content */
  padding-bottom: var(--mobile-bar-h);
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
/* 16px minimum prevents iOS from auto-zooming inputs */
input, textarea, select {
  font-family: inherit;
  font-size: max(16px, 1rem);
}
figure { margin: 0; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

/* ---- Accessibility ---- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}
.section { padding-block: var(--section-pad); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  min-height: 48px; /* Accessible tap target */
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 2px 12px rgba(201,168,76,0.35);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-light);
  box-shadow: 0 4px 22px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.btn-gold:active { transform: none; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- Section Typography ---- */
.section-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.section-title--white { color: var(--white); }

.section-desc {
  color: var(--text-body);
  font-size: 1.025rem;
  max-width: 540px;
}
.section-desc--dim { color: rgba(255,255,255,0.6); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .section-desc { margin-inline: auto; }
.section-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  border-radius: 2px;
  opacity: 0.7;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible       { opacity: 1; transform: none; }
.reveal-right            { transform: translateX(28px); }
.reveal-right.is-visible { transform: none; }


/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.88; }
.logo-icon { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name  { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.975rem; color: var(--white); }
.logo-sub   { font-size: 0.62rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* Phone number in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: color var(--transition);
  white-space: nowrap;
  min-height: 44px;
  padding-inline: 0.25rem;
}
.nav-phone:hover { color: var(--gold-light); }
.nav-phone svg   { width: 18px; height: 18px; flex-shrink: 0; }
.nav-phone span  { display: none; } /* text hidden on mobile — icon only */

@media (min-width: 768px) {
  .nav-phone span { display: inline; }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  color: var(--white);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav menu — mobile dropdown */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--black-soft);
  padding: 1.25rem clamp(1rem, 5vw, 2rem) 1.75rem;
  gap: 0.15rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-menu.is-open { display: flex; }

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  margin-top: 0.6rem;
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  justify-content: center;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 0.1rem;
    border: none;
    box-shadow: none;
    align-items: center;
  }
  .nav-cta { margin-top: 0; padding: 0.6rem 1.25rem; }
  .nav-link { padding: 0.5rem 0.6rem; min-height: auto; }
}


/* ============================================================
   HERO — crossfade carousel
   ============================================================ */

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Carousel container holds all slides stacked */
.hero-carousel {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.76) 0%,
    rgba(0,0,0,0.56) 55%,
    rgba(0,0,0,0.32) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.hero-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 1.25rem;
  font-weight: 800;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
  max-width: 460px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Trust bar */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.68);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust-item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 1;
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll svg   { width: 30px; height: 30px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   ABOUT
   ============================================================ */

.about { background: var(--white); }

.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-text .section-title { margin-bottom: 1.25rem; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.72;
}
.about-text p { color: var(--text-body); margin-bottom: 1.75rem; }

.about-values { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.about-values li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}
.about-values li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.about-image:hover img { transform: scale(1.04); }


/* ============================================================
   SERVICES
   ============================================================ */

.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 560px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-icon { width: 50px; height: 50px; margin-bottom: 1.25rem; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1rem; margin-bottom: 0.65rem; }
.service-card p  { font-size: 0.9rem; color: var(--text-body); line-height: 1.68; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */

.howitworks { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 860px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
}

.step { text-align: center; padding-inline: 1rem; }

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.step p   { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }

/* Arrow connector between steps */
.step-connector {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem; /* aligns roughly with step content */
  color: var(--gold);
  opacity: 0.4;
}
.step-connector svg { width: 48px; height: 24px; }
@media (min-width: 768px) {
  .step-connector { display: flex; }
}


/* ============================================================
   GALLERY
   ============================================================ */

.gallery { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--featured { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--featured { grid-column: span 2; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--black-soft);
}
.gallery-item--featured { aspect-ratio: 16 / 9; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06);
}

/* Captions — visible on hover (desktop), always subtle on mobile */
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 0.9rem 0.65rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; }

/* Always show on touch devices (no hover) */
@media (hover: none) {
  .gallery-item figcaption { opacity: 0.8; }
}


/* ============================================================
   VIDEOS
   ============================================================ */

.videos { background: var(--black-soft); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 860px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

.video-wrapper {
  position: relative;
  aspect-ratio: 267 / 476;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
}

.why-item { text-align: center; }
.why-icon {
  width: 58px; height: 58px;
  margin: 0 auto 1.1rem;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition);
}
.why-item:hover .why-icon { background: #f0e8d0; }
.why-icon svg { width: 28px; height: 28px; }
.why-item h3  { font-size: 0.95rem; margin-bottom: 0.45rem; }
.why-item p   { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; }


/* ============================================================
   REVIEWS
   ============================================================ */

.reviews { background: var(--off-white); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.review-stars {
  font-size: 1.1rem;
  color: #f5a623;
  letter-spacing: 0.05em;
}

.review-text {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
}
.review-meta strong { font-size: 0.9rem; color: var(--text-dark); }
.review-meta span   { font-size: 0.78rem; color: var(--text-muted); }

.review-google { width: 20px; height: 20px; flex-shrink: 0; margin-left: auto; }

.reviews-footer {
  text-align: center;
}


/* ============================================================
   SERVICE AREAS
   ============================================================ */

.areas { background: var(--black-soft); }

.areas-inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .areas-inner { grid-template-columns: 1fr 1fr; } }

.areas-text .section-title { margin-bottom: 1rem; }
.areas-text p { color: rgba(255,255,255,0.72); line-height: 1.72; margin-bottom: 2rem; }

.areas-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; align-content: flex-start; }

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition);
}
.area-tag svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.area-tag:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }

.areas-note {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}
.areas-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.areas-note a:hover { color: var(--gold-light); }


/* ============================================================
   QUOTE FORM
   ============================================================ */

.quote { background: var(--white); }

.quote-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 768px) { .quote-grid { grid-template-columns: 1fr 1.45fr; } }

.quote-intro .section-title { margin-bottom: 1rem; }
.quote-intro > p { color: var(--text-body); margin-bottom: 1.75rem; }

.quote-perks { display: flex; flex-direction: column; gap: 0.65rem; }
.quote-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  color: var(--text-body);
}
.quote-perks li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.quote-perks li a { color: var(--gold); font-weight: 600; }

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.form-row { display: grid; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.825rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  min-height: 48px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #d94f4f;
  box-shadow: 0 0 0 3px rgba(217,79,79,0.14);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  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='%23888880' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: var(--gold); font-weight: 600; }

.quote-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem) 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.success-icon { width: 64px; height: 64px; margin: 0 auto 1.25rem; color: var(--gold); }
.success-icon svg { width: 100%; height: 100%; }
.quote-success h3 { font-size: 1.6rem; margin-bottom: 0.85rem; }
.quote-success p  { color: var(--text-body); line-height: 1.65; }
.quote-success a  { color: var(--gold); font-weight: 600; }


/* ============================================================
   CONTACT
   ============================================================ */

.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.contact-item { text-align: center; }
.contact-icon { width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--gold); }
.contact-icon svg { width: 100%; height: 100%; }
.contact-item h3 {
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.55rem;
}
.contact-item a {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  transition: color var(--transition);
  word-break: break-word;
}
.contact-item a:hover { color: var(--gold); }
.contact-item p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.5; }


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.75rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 0.8; }
.footer-logo .logo-icon { width: 28px; height: 28px; color: var(--gold); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.48); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }

.footer-seo {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 680px;
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  word-break: break-word;
}
.footer-copy a { color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer-copy a:hover { color: var(--gold); }


/* ============================================================
   MOBILE STICKY CTA BAR
   Fixed bottom bar — visible only on mobile / small tablets
   ============================================================ */

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  height: var(--mobile-bar-h);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}

.mobile-cta-call,
.mobile-cta-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.mobile-cta-call {
  color: var(--gold);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta-call:hover { background: rgba(255,255,255,0.04); }
.mobile-cta-call svg { width: 16px; height: 16px; }

.mobile-cta-quote {
  background: var(--gold);
  color: var(--black);
}
.mobile-cta-quote:hover { background: var(--gold-light); }
