/* ===== TOPCAL ROOFING - SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1e;
  --navy-mid: #141c35;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --orange: #e8520a;
  --orange-dark: #c44208;
  --white: #ffffff;
  --light: #f8f9fa;
  --gray: #e9ecef;
  --text: #333344;
  --text-light: #6c757d;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}
.ann-phone {
  background: white;
  color: var(--orange);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.ann-phone:hover { background: var(--navy); color: white; }

/* === NAVBAR === */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li { position: relative; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  display: block;
}
.nav-links a:hover { color: var(--gold); background: rgba(255,255,255,0.07); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 999;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 0;
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-phone {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-phone:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.55) 60%, rgba(10,15,30,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: white;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,82,10,0.4); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* === TRUST BAR === */
.trust-bar {
  background: var(--gold);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.trust-item .icon { font-size: 1.4rem; }
.trust-item strong { font-size: 1.1rem; font-weight: 800; display: block; line-height: 1; }
.trust-item span { font-size: 0.78rem; font-weight: 500; opacity: 0.8; }

/* === SECTION HEADINGS === */
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card-body p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 18px; line-height: 1.6; }
.service-card-body a {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card-body a:hover { color: var(--orange-dark); gap: 10px; }

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* === STATS COUNTERS === */
.stats-section { background: var(--navy); padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item { color: white; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars { color: #ffc107; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-size: 0.97rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.author-location { font-size: 0.8rem; color: var(--text-light); }

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 4px solid var(--gold);
}
.team-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.team-role { color: var(--gold); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.team-bio { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* === PARTNERS === */
.partners-section { background: var(--light); padding: 56px 0; }
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 36px;
}
.partner-logo img {
  height: 50px;
  width: auto;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: var(--transition);
}
.partner-logo img:hover { filter: none; opacity: 1; }

/* === LEAD FORM === */
.lead-form-section { background: var(--navy); padding: 80px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-info h2 { color: white; font-size: 2.2rem; margin-bottom: 16px; }
.form-info p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.form-feature { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.form-feature .fi-icon { font-size: 1.4rem; }
.form-feature span { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.lead-form {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.lead-form h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--navy); }
.lead-form .form-sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.87rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  transition: var(--transition);
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.form-privacy { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* === PROCESS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.process-step { text-align: center; }
.process-num {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', serif;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.process-step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* === CTA BAND === */
.cta-band {
  background: var(--orange);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: white; font-size: 2.2rem; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 32px; }
.cta-band .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { background: var(--light); }
.faq-question.active { background: var(--navy); color: white; }
.faq-question .faq-icon { font-size: 1.2rem; flex-shrink: 0; }
.faq-answer {
  display: none;
  padding: 20px 24px;
  background: var(--light);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* === HERO INNER (for sub pages) === */
.page-hero {
  background: var(--navy);
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }

/* === FOOTER === */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-title { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; align-items: flex-start; }
.contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 28px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--gold); }

/* === MOBILE STICKY BAR === */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  z-index: 999;
  padding: 10px 16px;
  gap: 10px;
}
.mobile-sticky a {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}
.mob-call { background: var(--orange); color: white; }
.mob-quote { background: var(--gold); color: var(--navy); }

/* === CHATBOT === */
.chatbot-toggle {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px; height: 60px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: var(--transition);
  animation: pulse-chat 2.5s infinite;
}
@keyframes pulse-chat {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
.chatbot-toggle:hover { background: var(--gold); border-color: var(--navy); transform: scale(1.08); }
.chatbot-window {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 340px;
  max-height: 520px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 997;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gray);
}
.chatbot-window.open { display: flex; }
.chat-header {
  background: var(--navy);
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-title { font-weight: 700; font-size: 0.95rem; }
.chat-status { font-size: 0.75rem; color: #4caf50; }
.chat-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.chat-msg.bot { background: var(--light); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--navy); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-input-area {
  border-top: 1px solid var(--gray);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}
.chat-input-area input {
  flex: 1;
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.chat-input-area input:focus { border-color: var(--gold); }
.chat-send {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}
.chat-send:hover { background: var(--orange-dark); }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.qr-btn {
  background: white;
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.qr-btn:hover { background: var(--gold); }

/* === SOCIAL PROOF TICKER === */
.social-proof {
  position: fixed;
  bottom: 90px;
  left: 20px;
  background: white;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 996;
  animation: slideInLeft 0.5s ease;
  border-left: 4px solid var(--green, #28a745);
}
@keyframes slideInLeft { from { transform: translateX(-110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.sp-dot { width: 10px; height: 10px; background: #28a745; border-radius: 50%; flex-shrink: 0; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.sp-text { font-size: 0.8rem; color: var(--text); font-weight: 500; line-height: 1.4; }

/* === FLOATING CALL BTN === */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(232,82,10,0.4);
  z-index: 995;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  animation: pulse-btn 2.5s infinite;
}
@keyframes pulse-btn {
  0%,100% { box-shadow: 0 6px 24px rgba(232,82,10,0.4); }
  50% { box-shadow: 0 6px 32px rgba(232,82,10,0.7); }
}
.floating-call:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* === VIDEO SECTION === */
.video-section { background: var(--light); padding: 80px 0; }
.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.video-wrapper video { width: 100%; display: block; }

/* === CITY CHIPS === */
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.city-chip {
  background: white;
  border: 2px solid var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.city-chip:hover { background: var(--gold); }

/* === PAGE BANNER === */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  padding: 72px 0 52px;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 { color: white; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.75); max-width: 600px; font-size: 1.05rem; }

/* === BEFORE/AFTER === */
.ba-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
}
.ba-after { width: 100%; display: block; }
.ba-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.ba-before { position: absolute; top: 0; left: 0; width: 200%; max-width: none; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  cursor: ew-resize;
  z-index: 3;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  cursor: ew-resize;
}
.ba-label {
  position: absolute;
  top: 14px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 24px; }
.blog-tag { color: var(--orange); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text-light); }

/* === FINANCING CALC === */
.calc-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
}
.calc-box h3 { margin-bottom: 28px; font-size: 1.4rem; }
.calc-range { width: 100%; accent-color: var(--gold); }
.calc-result {
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 24px 0;
}
.calc-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
}
.calc-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* === RESOURCES === */
.resource-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-icon { font-size: 2.5rem; margin-bottom: 16px; }
.resource-card h3 { margin-bottom: 10px; }
.resource-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: var(--navy); position: absolute; top: 72px; left: 0; right: 0; padding: 16px 0; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 12px 24px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.05); }
  .hamburger { display: block; }
  .nav-phone { display: none; }
  .hero { min-height: 75vh; }
  .hero-bg { background-attachment: scroll; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky { display: flex; }
  .floating-call { bottom: 80px; right: 16px; }
  .chatbot-toggle { bottom: 150px; }
  .chatbot-window { bottom: 220px; right: 10px; width: calc(100vw - 20px); }
  .social-proof { display: none; }
  .section-pad { padding: 56px 0; }
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band h2 { font-size: 1.6rem; }
  .announcement-bar { font-size: 0.78rem; gap: 10px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
