/* ============================================================
   RANGER SEAT COVER — styles.css
   Miami's Premier Auto Upholstery Shop Since 1991
   ============================================================ */

/* ---- 1. CSS Variables ---- */
:root {
  --navy:    #0A1F5C;
  --red:     #CC0000;
  --gold:    #F5A800;
  --dark:    #0D0D0D;
  --white:   #FFFFFF;
  --gray-bg: #F4F4F4;
  --gray-mid:#888888;
  --cream:   #FAF8F4;
  --shadow:  0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.18);
  --radius:  8px;
  --radius-lg:16px;
  --transition: 0.3s ease;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w:   1200px;
}

/* ---- 2. Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- 3. Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- 4. Utilities ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--gray-mid); max-width: 600px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 8px auto 0; }

/* ---- 5. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-red:hover { background: #aa0000; border-color: #aa0000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,0.35); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: #0d2870; }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: #d48f00; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ---- 6. Navigation ---- */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.announcement-bar span { display: flex; align-items: center; gap: 6px; }
.announcement-bar .check { color: var(--gold); font-size: 0.9rem; }
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; }
.site-logo {
  height: 64px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo .logo-fallback {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo .logo-fallback span { display: block; font-size: 0.65rem; color: var(--red); letter-spacing: 0.2em; font-family: var(--font-body); font-weight: 700; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta .phone-small {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- 7. Hero Sections ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,92,0.88) 0%, rgba(13,13,13,0.75) 60%, rgba(204,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 60px 20px;
}
.hero-content h1 { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero-content .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 8px 16px;
}
.trust-badge .icon { color: var(--gold); font-size: 1rem; }

/* Sub-page hero (shorter) */
.page-hero {
  position: relative;
  padding: 100px 0 60px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 6px; height: 100%;
  background: var(--red);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 320px; height: 320px;
  border: 40px solid rgba(245,168,0,0.08);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a { color: var(--gold); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ---- 8. Quick Contact Bar ---- */
.quick-contact {
  background: var(--red);
  padding: 16px 20px;
}
.quick-contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity var(--transition);
}
.quick-contact a:hover { opacity: 0.85; }
.quick-contact .icon-circle {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ---- 9. Services Grid ---- */
.services-section {
  background: var(--navy);
  padding: 80px 0;
}
.services-section .section-title { color: var(--white); }
.services-section .section-sub { color: rgba(255,255,255,0.65); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 20px; }
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.service-card-body p { font-size: 0.88rem; color: #555; line-height: 1.6; }
.services-cta { text-align: center; margin-top: 44px; }

/* Individual service rows (services page) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.service-row:last-of-type { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.service-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-text .eyebrow { color: var(--red); }
.service-row-text h2 { color: var(--navy); margin-bottom: 16px; }
.service-row-text p { color: #555; font-size: 0.97rem; }
.service-row-text .keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-row-text .keywords span {
  background: var(--gray-bg);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* ---- 10. Gallery ---- */
.gallery-section { padding: 80px 0; background: var(--gray-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '🔍 View';
  position: absolute;
  inset: 0;
  background: rgba(10,31,92,0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ---- 11. Why Choose Us ---- */
.why-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,168,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-section h2 { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
  transition: background var(--transition), border-color var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,168,0,0.25);
}
.why-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(245,168,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h3 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.why-item p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ---- 12. Materials Section ---- */
.materials-section { padding: 80px 0; background: var(--cream); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.material-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.material-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.material-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.material-card p { font-size: 0.82rem; color: #666; }

/* ---- 13. CTA Banner ---- */
.cta-banner {
  background: var(--red);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::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='%23ffffff' 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");
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- 14. Reviews / Testimonials ---- */
.reviews-section { padding: 80px 0; background: var(--white); }
.stars-row { display: flex; gap: 4px; color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  color: rgba(245,168,0,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card blockquote {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span { font-size: 0.8rem; color: var(--gray-mid); }
.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 12px;
}
.google-g { color: #4285f4; font-weight: 900; }

/* ---- 15. Stats Bar ---- */
.stats-bar {
  background: var(--red);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
}

/* ---- 16. Map Section ---- */
.map-section { padding: 0; }
.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
}
.map-iframe-wrap { min-height: 380px; }
.map-iframe-wrap iframe { width: 100%; height: 100%; min-height: 380px; display: block; border: 0; }
.map-info {
  background: var(--navy);
  padding: 48px 40px;
  color: var(--white);
}
.map-info h3 { color: var(--white); margin-bottom: 24px; }
.map-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.map-detail .icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.map-detail a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.map-detail a:hover { color: var(--gold); }
.hours-table { width: 100%; font-size: 0.88rem; margin-top: 6px; }
.hours-table td { padding: 3px 0; color: rgba(255,255,255,0.8); }
.hours-table td:first-child { font-weight: 600; color: var(--white); width: 120px; }

/* ---- 17. Footer ---- */
footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { height: 80px; width: auto; max-width: 300px; filter: none; margin-bottom: 20px; flex-shrink: 0; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--red); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-col .contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-col .contact-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col .contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---- 18. Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9000;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.4);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- 19. Mobile Sticky Call Bar ---- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8999;
  background: var(--red);
  padding: 0;
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-call-bar .phone-icon { font-size: 1.2rem; }

/* ---- 20. FAQ Accordion ---- */
.faq-section { padding: 80px 0; background: var(--gray-bg); }
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  background: none;
  cursor: pointer;
  transition: background var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--gray-bg); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  transition: all var(--transition);
}
.faq-question.open .faq-icon { background: rgba(255,255,255,0.2); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 16px 24px 20px; }

/* ---- 21. Before/After Slider ---- */
.ba-section { padding: 80px 0; background: var(--dark); }
.ba-section h2 { color: var(--white); }
.ba-section .section-sub { color: rgba(255,255,255,0.6); }
.ba-wrapper {
  max-width: 780px;
  margin: 48px auto 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
  cursor: col-resize;
}
.ba-before, .ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-container {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.ba-after { clip-path: inset(0 50% 0 0); transition: none; }
.ba-divider {
  position: absolute;
  top: 0; left: 50%;
  width: 3px; height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  pointer-events: none;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}
.ba-labels {
  position: absolute;
  top: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 12;
  pointer-events: none;
}
.ba-label {
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ba-label.after { background: rgba(10,31,92,0.8); }

/* ---- 22. Service Area Tags ---- */
.service-area-section { padding: 60px 0; background: var(--white); }
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.city-tag {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  transition: background var(--transition);
  cursor: default;
}
.city-tag:hover { background: var(--red); }

/* ---- 23. Blog ---- */
.blog-section { padding: 80px 0; background: var(--gray-bg); }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.blog-cat {
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-read { font-size: 0.78rem; color: var(--gray-mid); }
.blog-date { font-size: 0.78rem; color: var(--gray-mid); }
.blog-card-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--red); }
.blog-card-body p { font-size: 0.85rem; color: #666; margin-bottom: 16px; }
.read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 10px; }

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sidebar-widget h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
  font-size: 0.88rem;
  color: #444;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget ul li a::before { content: '→'; color: var(--red); font-weight: 900; }
.sidebar-widget ul li a:hover { color: var(--red); }
.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 18px; }

/* ---- 24. Contact Page ---- */
.contact-section { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap p { color: #666; margin-bottom: 32px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--gray-mid); margin-top: 10px; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.info-icon {
  width: 40px; height: 40px;
  background: rgba(245,168,0,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-row a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.info-row a:hover { color: var(--gold); }
.info-row strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-size: 0.88rem; }
.hours-grid .day { font-weight: 600; color: var(--white); }
.hours-grid .time { color: rgba(255,255,255,0.7); }
.map-mini { border-radius: var(--radius); overflow: hidden; margin-top: 20px; }
.map-mini iframe { display: block; width: 100%; height: 200px; border: 0; }
.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-links a {
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--dark); }

/* Financing section */
.financing-section {
  background: var(--navy);
  padding: 70px 20px;
  text-align: center;
}
.financing-section h2 { color: var(--white); margin-bottom: 14px; }
.financing-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }

/* Full-width map */
.map-full { padding: 0; }
.map-full iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---- 25. About Page ---- */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.about-hero .overlay { position: absolute; inset: 0; background: rgba(10,31,92,0.82); }
.about-hero-content { position: relative; z-index: 2; text-align: center; padding: 60px 20px; }
.about-hero .since-text {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  display: block;
  line-height: 1;
}
.about-hero h1 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: 16px; }
.story-section { padding: 80px 0; }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.story-text .eyebrow { color: var(--red); }
.story-text h2 { color: var(--navy); margin-bottom: 24px; }
.story-text p { color: #555; font-size: 0.97rem; line-height: 1.8; }
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.story-img img { width: 100%; height: 460px; object-fit: cover; }
.story-img .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}
.team-section { padding: 80px 0; background: var(--gray-bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 380px);
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-6px); }
.team-card-img {
  height: 280px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.team-card-body { padding: 28px; }
.team-card-body h3 { color: var(--navy); margin-bottom: 4px; }
.team-card-body .role { color: var(--red); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
.team-card-body p { font-size: 0.88rem; color: #666; }
.trust-section { padding: 70px 0; background: var(--white); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.partner-card {
  text-align: center;
  padding: 28px;
  border: 2px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.partner-card:hover { border-color: var(--navy); transform: translateY(-4px); }
.partner-icon { font-size: 2.5rem; margin-bottom: 12px; }
.partner-card h4 { color: var(--navy); margin-bottom: 8px; }
.partner-card p { font-size: 0.85rem; color: #666; }

/* ---- 26. Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- 27. Media Queries ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { min-height: 80vh; background-attachment: scroll; }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row.reverse { direction: ltr; }
  .service-row-img { height: 260px; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-info { padding: 32px 24px; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-img { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-logo { height: 48px; max-width: 180px; }
  .footer-brand .site-logo { height: 64px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-cta .phone-small { display: block; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-top: 2px solid var(--gray-bg);
  }
  .nav-links.mobile-open a { font-size: 1rem; }
  .announcement-bar { gap: 12px; font-size: 0.75rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .partners-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-call-bar { display: block; }
  .whatsapp-float { bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .quick-contact-inner { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 10px; }
  .trust-badge { font-size: 0.78rem; padding: 6px 12px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .blog-meta { flex-wrap: wrap; }
}

/* ---- 28. Form Success State ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: #e8f5e9;
  border-radius: var(--radius-lg);
  border: 2px solid #4caf50;
}
.form-success h3 { color: #2e7d32; margin-bottom: 10px; }
.form-success p { color: #388e3c; }

/* ---- 29. Misc ---- */
.divider-red {
  height: 4px;
  background: var(--red);
  width: 60px;
  margin: 14px 0 24px;
}
.divider-gold {
  height: 4px;
  background: var(--gold);
  width: 60px;
  margin: 14px 0 24px;
}
.center .divider-red, .center .divider-gold { margin-left: auto; margin-right: auto; }
.tag-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
