/* =============================================
   S&K CONTRACTING LLC - Main Stylesheet
   Brand Colors: Red #E53935 | Black #2c2c2c | White #fff
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red: #E53935;
  --red-dark: #C62828;
  --red-light: #FFEBEE;
  --dark: #2c2c2c;
  --dark-soft: #444;
  --gray: #666;
  --gray-light: #f5f5f5;
  --border: #e8e8e8;
  --white: #fff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-light { background: #f9f9f9; }
.section-dark { background: #3a3a3a; color: #fff; }
.section-red { background: #E53935; color: #fff; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E53935;
  margin-bottom: 12px;
  display: block;
}
.section-dark .section-label,
.section-red .section-label { color: rgba(255,255,255,0.75); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-subtitle,
.section-red .section-subtitle { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #E53935;
  color: #fff;
  border-color: #E53935;
}
.btn-primary:hover { background: #C62828; border-color: #C62828; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(183,28,28,0.4); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: #fff; color: #2c2c2c; }

.btn-outline-dark {
  background: transparent;
  color: #2c2c2c;
  border-color: #2c2c2c;
}
.btn-outline-dark:hover { background: #2c2c2c; color: #fff; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid #E53935;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: #E53935;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.logo-text { color: #fff; }
.logo-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links a {
  color: #2c2c2c;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.navbar-links a:hover { color: #E53935; }

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: #2c2c2c;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-link:hover { color: #E53935; }
.phone-link svg { color: #E53935; }

.btn-nav {
  background: #E53935;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-nav:hover { background: #C62828; }

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #2c2c2c;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/gallery/exterior-1.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.82) 0%, rgba(30,30,30,0.60) 55%, rgba(229,57,53,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(183,28,28,0.25);
  border: 1px solid rgba(183,28,28,0.5);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #E53935;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: #E53935; }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
}
.trust-pill svg { color: #4CAF50; flex-shrink: 0; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.service-card:hover {
  border-color: #E53935;
  box-shadow: 0 8px 30px rgba(183,28,28,0.12);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: #E53935; }
.service-card:hover .service-icon span { filter: brightness(10); }

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: #E53935;
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.trust-item-icon {
  font-size: 28px;
}
.trust-item-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.trust-item-text span {
  font-size: 13px;
  opacity: 0.85;
}

/* =============================================
   GALLERY PREVIEW
   ============================================= */
.gallery-tabs {
  display: flex;
  gap: 12px;
  margin: 32px 0 28px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 22px;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active {
  background: #E53935;
  border-color: #E53935;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  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-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(183,28,28,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.gallery-cta {
  margin-top: 32px;
  text-align: center;
}

/* Full gallery page */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-full-item:hover img { transform: scale(1.04); }

/* =============================================
   ABOUT / WHY US
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #E53935;
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(183,28,28,0.3);
}
.about-badge strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.about-badge span {
  font-size: 13px;
  opacity: 0.9;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: #fff0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-feature-text strong { display: block; font-size: 16px; margin-bottom: 2px; }
.about-feature-text span { font-size: 14px; color: #666; }

/* =============================================
   SERVICE AREA
   ============================================= */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}
.area-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #E53935;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   CLEANING CROSSSELL
   ============================================= */
.crosssell {
  background: linear-gradient(135deg, #3d3d3d 0%, #2c2c2c 100%);
  padding: 60px 0;
  border-top: 4px solid #E53935;
}

.crosssell-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.crosssell-icon {
  font-size: 56px;
  flex-shrink: 0;
}

.crosssell-text { flex: 1; min-width: 260px; }
.crosssell-text .eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  display: block;
}
.crosssell-text h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}
.crosssell-text p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}

.contact-info { }
.contact-info h3 {
  font-size: 26px;
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #E53935;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text span { font-size: 15px; color: #444; }

.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.form-title {
  font-size: 22px;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #2c2c2c;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(183,28,28,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  justify-content: center;
}

.form-note {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 12px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .check {
  font-size: 56px;
  margin-bottom: 16px;
}
.form-success h3 { font-size: 24px; margin-bottom: 8px; }
.form-success p { color: #666; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #222;
  color: #fff;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text strong { font-size: 22px; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 16px 0 20px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badge {
  background: rgba(183,28,28,0.2);
  border: 1px solid rgba(183,28,28,0.35);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.9);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer-contact-item span:first-child { font-size: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #fff; }

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

/* =============================================
   MOBILE STICKY CTA BAR
   ============================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #2c2c2c;
  border-top: 2px solid #E53935;
  padding: 12px 16px;
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  padding: 13px;
  text-align: center;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-cta-bar .call-btn { background: #4CAF50; color: #fff; }
.mobile-cta-bar .quote-btn { background: #E53935; color: #fff; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* =============================================
   LOGOS
   ============================================= */
.navbar-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* Footer logo: invert dark logo to white for dark footer background */
footer .footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* =============================================
   PHONE CTA BUTTON (Hero)
   ============================================= */
.btn-phone {
  background: #2E7D32;
  color: #fff;
  border-color: #2E7D32;
  font-size: 18px;
}
.btn-phone:hover {
  background: #1B5E20;
  border-color: #1B5E20;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46,125,50,0.4);
}
.btn-phone svg { color: #fff; }

/* =============================================
   SERVICE CARD LINKS
   ============================================= */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card .service-desc {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
  line-height: 1.5;
}
.service-card:hover .service-desc { color: rgba(255,255,255,0.8); }

/* =============================================
   SMS BUTTON
   ============================================= */
.btn-sms {
  background: #0077cc;
  color: #fff;
  border-color: #0077cc;
  font-size: 18px;
}
.btn-sms:hover {
  background: #005fa3;
  border-color: #005fa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,119,204,0.4);
}
.btn-sms svg { color: #fff; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(229,57,53,0.4);
  transform: translateY(-4px);
}

.stars {
  color: #FFB300;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: #E53935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   FAQ
   ============================================= */
.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #2c2c2c;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  gap: 16px;
}
.faq-question:hover { color: #E53935; }
.faq-question.open { color: #E53935; }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  color: #E53935;
  transition: transform 0.3s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid #f0f0f0;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  padding-top: 16px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us { background: #f8f8f8; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #ececec;
  border-top: 4px solid #E53935;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(229,57,53,0.12);
  border-top-color: #E53935;
}

.why-icon {
  font-size: 44px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #2c2c2c;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, #2c2c2c 0%, #2c2c2c 100%);
  padding: 130px 0 60px;
  border-bottom: 3px solid #E53935;
}
.page-header h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); }
.page-header p { color: rgba(255,255,255,0.7); font-size: 17px; margin-top: 12px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .navbar-links, .navbar-phone { display: none; }
  .hamburger { display: flex; }

  .nav-mobile-open .navbar-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 2px solid #E53935;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-mobile-open .navbar-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 130px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: fit-content; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }

  .crosssell-inner { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .navbar-logo-img { height: 38px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}
