/* ============================================================
   North Trust Roofing — Main Stylesheet
   Colors: Gold #F5BF04 | Dark #1f1f1f | Dark2 #2a2a2a
   Fonts: Bebas Neue (headings) | Poppins (body)
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  --gold: #F5BF04;
  --gold-dark: #d4a403;
  --dark: #1f1f1f;
  --dark-2: #2a2a2a;
  --dark-3: #333333;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text-muted: #777777;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.10);
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.20);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --container: 1200px;
  --section-pad: 90px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Section Base ===== */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark-2 { background: var(--dark-2); color: var(--white); }
.section-gray { background: var(--gray-light); }
.section-gold { background: var(--gold); color: var(--dark); }

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-dark .section-label,
.section-dark-2 .section-label { color: var(--gold); }
.section-gold .section-label { color: var(--dark-2); opacity: 0.7; }

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
  color: inherit;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-dark .section-subtitle,
.section-dark-2 .section-subtitle { color: rgba(255,255,255,0.65); }
.section-gold .section-subtitle { color: rgba(31,31,31,0.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 191, 4, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-call { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-call:hover { background: var(--dark-2); transform: translateY(-1px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(31, 31, 31, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
}
.navbar-logo .logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.navbar-logo .logo-text span { color: var(--gold); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition);
}
.navbar-phone:hover { border-color: var(--gold); color: var(--gold); }
.navbar-phone i { font-size: 13px; }
.navbar-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.navbar-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  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); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  display: block;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-menu .mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .mobile-menu-actions a {
  text-align: center;
  padding: 14px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1632778149955-e80f8ceca2e8?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,31,31,0.95) 0%, rgba(31,31,31,0.75) 60%, rgba(31,31,31,0.60) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 191, 4, 0.15);
  border: 1px solid rgba(245, 191, 4, 0.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 12px; }
.hero-title {
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.hero-trust-item i { color: var(--gold); font-size: 15px; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-form-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero-form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,191,4,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; border: none; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success i { font-size: 48px; color: #22c55e; margin-bottom: 12px; }
.form-success h4 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 14px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--dark);
  border-color: var(--gold);
  color: var(--white);
}
.service-card.featured::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(245,191,4,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}
.service-card.featured .service-icon { background: rgba(245,191,4,0.2); }
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: inherit;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
}
.why-icon {
  width: 72px; height: 72px;
  background: rgba(245,191,4,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.08);
}
.why-card h3 { font-size: 22px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ===== SERVICE AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.area-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}
.area-card:hover { border-color: var(--gold); }
.area-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.area-icon {
  width: 52px; height: 52px;
  background: rgba(245,191,4,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.area-card h3 { font-size: 32px; color: var(--white); }
.area-card h4 { font-size: 12px; color: var(--gold); font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-city {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}
.area-city i { color: var(--gold); font-size: 11px; }
.area-city:hover { background: rgba(245,191,4,0.15); color: var(--white); }
.area-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: gap var(--transition);
}
.area-cta:hover { gap: 12px; }

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(245,191,4,0.2));
}
.process-step { text-align: center; padding: 0 12px; }
.process-number {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--dark);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(245,191,4,0.15);
}
.process-step h3 { font-size: 22px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(245,191,4,0.4); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--dark);
  flex-shrink: 0;
}
.testimonial-info { flex: 1; }
.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.testimonial-location {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-mid);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  transition: color var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--dark-2); }
.faq-question.active { color: var(--dark); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--dark);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-question.active .faq-icon {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ===== FOOTER CTA ===== */
.footer-cta { padding: 100px 0; }
.footer-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.footer-cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}
.footer-cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}
.footer-cta .hero-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-cta .hero-form-card h3 { color: var(--white); }
.footer-cta .hero-form-card p { color: rgba(255,255,255,0.5); }
.footer-cta .form-group label { color: rgba(255,255,255,0.85); }
.footer-cta .form-group input,
.footer-cta .form-group select,
.footer-cta .form-group textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.footer-cta .form-group input::placeholder,
.footer-cta .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.footer-cta .form-group input:focus,
.footer-cta .form-group select:focus,
.footer-cta .form-group textarea:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}
.footer-cta .form-group select option { background: var(--dark); color: var(--white); }
.footer-cta .form-note { color: rgba(255,255,255,0.4); }

/* ===== FOOTER ===== */
.footer {
  background: #111111;
  padding: 60px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== FLOATING CALL BUTTON (mobile) ===== */
.float-call {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(245,191,4,0.5);
  transition: all var(--transition);
  animation: pulse-ring 2s ease-out infinite;
}
.float-call:hover {
  background: var(--gold-dark);
  transform: scale(1.08);
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(245,191,4,0.5), 0 6px 24px rgba(245,191,4,0.4); }
  70% { box-shadow: 0 0 0 14px rgba(245,191,4,0), 0 6px 24px rgba(245,191,4,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(245,191,4,0), 0 6px 24px rgba(245,191,4,0.4); }
}

/* ===== CITY PAGE HERO (smaller) ===== */
.hero-city {
  min-height: 72vh;
}
.hero-city .hero-title { font-size: clamp(44px, 6vw, 72px); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gold);
  padding: 20px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 8px 16px;
  border-right: 1px solid rgba(31,31,31,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(31,31,31,0.7);
}

/* ===== NAVBAR LOGO IMAGE ===== */
.navbar-logo-img {
  height: 90px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* white on dark navbar */
  transform: scale(2.2);
  transform-origin: left center;
}

/* ===== SERVICE CARDS WITH PHOTOS ===== */
.service-card-photo {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-mid);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.service-card-photo.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.service-card-photo .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card-photo:hover .card-img { transform: scale(1.04); }
.service-card-photo .card-img-wrap {
  overflow: hidden;
  position: relative;
}
.service-card-photo .card-img-wrap .card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-card-photo .card-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-photo .card-body h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-card-photo.featured .card-body { background: var(--dark); }
.service-card-photo.featured .card-body h3 { color: var(--white); }
.service-card-photo.featured .card-body p { color: rgba(255,255,255,0.65); }
.service-card-photo .card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ===== BEFORE / AFTER SECTION — Portrait photos ===== */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ba-pair {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}
.ba-pair:hover { border-color: rgba(245,191,4,0.4); }
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.ba-images::after {
  content: '↔';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--dark);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.ba-img-wrap { position: relative; overflow: hidden; }
.ba-img-wrap img {
  width: 100%;
  height: 320px;       /* taller for portrait photos */
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ba-label {
  position: absolute;
  bottom: 10px; left: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px;
}
.ba-label.before { background: rgba(0,0,0,0.75); color: rgba(255,255,255,0.9); }
.ba-label.after  { background: var(--gold); color: var(--dark); }
.ba-caption { padding: 14px 16px; }
.ba-caption h4 { font-size: 16px; color: var(--white); margin-bottom: 3px; }
.ba-caption p  { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== VIDEO SECTION — 3 vertical videos ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}
.video-card:hover { border-color: rgba(245,191,4,0.4); }
.video-card .video-wrap {
  position: relative;
  width: 100%;
  /* 9:16 portrait aspect ratio */
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
}
.video-card .video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card .video-caption {
  padding: 14px 16px;
}
.video-card .video-caption h4 {
  font-size: 16px; color: var(--white); margin-bottom: 3px;
}
.video-card .video-caption p {
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE — photo cards & new sections ===== */
@media (max-width: 991px) {
  .before-after-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .videos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 48px auto 0; }
  .ba-img-wrap img { height: 260px; }
}
@media (max-width: 767px) {
  .ba-img-wrap img { height: 200px; }
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--gray-mid); margin: 0; }

/* ===== AOS OVERRIDES ===== */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ===== RESPONSIVE ===== */

/* Tablet — 991px */
@media (max-width: 991px) {
  :root { --section-pad: 64px; }
  .navbar-nav, .navbar-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-form-card { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: 1fr; max-width: 600px; margin: 48px auto 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* Mobile landscape — 767px */
@media (max-width: 767px) {
  :root { --section-pad: 52px; }
  .float-call { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 48px 0 72px; }
  .hero-title { font-size: clamp(44px, 12vw, 64px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-cta-inner { gap: 32px; }
}

/* Mobile portrait — 479px */
@media (max-width: 479px) {
  .navbar-cta { display: none; }
  .hero-form-card { padding: 28px 20px; }
  .area-card { padding: 28px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
