/* ============================================
   Leo's Seamless Gutters - Stylesheet
   ============================================ */

:root {
  --navy: #0e1a2d;
  --navy-light: #152238;
  --blue: #188bf6;
  --blue-dark: #2f65bc;
  --accent: #42b877;
  --accent-light: #9ae6b4;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #a0aec0;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --black: #000000;
  --font-heading: 'Work Sans', sans-serif;
  --font-body: 'Karla', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --transition: .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #38a169;
  border-color: #38a169;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66,184,119,.4);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 500;
}
.top-bar-phone:hover { color: var(--accent-light); }

.top-bar-links {
  display: flex;
  gap: 16px;
}
.top-bar-links a {
  color: var(--gray-300);
  display: flex;
  align-items: center;
}
.top-bar-links a:hover { color: var(--accent-light); }

/* ---- Header ---- */
.header {
  background: var(--navy-light);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(14, 26, 45, .97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo:hover { color: var(--white); }

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.nav {
  display: flex;
  gap: 4px;
}

.nav-link {
  color: var(--gray-300);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.header-cta {
  font-size: 13px;
  padding: 10px 20px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,26,45,.88), rgba(47,101,188,.55));
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content { max-width: 680px; }

.hero-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,.15);
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.hero-badge {
  display: inline-block;
  background: rgba(66,184,119,.2);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(66,184,119,.3);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-desc {
  color: var(--gray-200);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 100px 0 60px;
  text-align: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,26,45,.9), rgba(47,101,188,.7));
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--gray-200);
  font-size: 18px;
}

/* ---- Trust Badges ---- */
.trust-badges {
  padding: 60px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.badge-item {
  text-align: center;
  padding: 24px 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}
.badge-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.badge-item h3 {
  font-size: 18px;
  margin: 16px 0 8px;
}

.badge-item p {
  font-size: 14px;
  color: var(--gray-600);
}

/* ---- New Services ---- */
.new-services {
  padding: 60px 0;
  background: var(--white);
}

.section-label {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 32px;
}

.new-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.new-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  color: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.new-service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.new-service-card:hover {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.new-service-card svg { color: var(--accent); margin-bottom: 16px; }
.new-service-card h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.new-service-card p { color: var(--gray-300); font-size: 15px; margin-bottom: 16px; }
.card-arrow {
  font-size: 24px;
  color: var(--accent);
  transition: transform var(--transition);
}
.new-service-card:hover .card-arrow { transform: translateX(6px); }

/* ---- Section Titles ---- */
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 18px;
  margin-bottom: 48px;
}

/* ---- Services Overview (Home) ---- */
.services-overview {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(66,184,119,.1);
  border-radius: 50%;
  color: var(--accent);
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
}

/* ---- Stats Section ---- */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 60px 0;
  overflow: hidden;
}

.stats-overlay {
  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");
}

.stats-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-block {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  color: var(--gray-300);
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 80px 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.stars {
  color: #f6ad55;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray-400);
}

.testimonials-cta { text-align: center; }

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  padding: 80px 0;
  overflow: hidden;
}

.cta-overlay {
  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.03'%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-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner p {
  color: var(--gray-300);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Services List (Services Page) ---- */
.services-list {
  padding: 60px 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  margin-bottom: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.service-detail.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-detail:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-detail.alt {
  background: var(--white);
}

.service-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.service-detail h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-detail p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-checklist {
  margin-bottom: 20px;
}

.service-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--gray-700);
  font-size: 15px;
}

.service-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(66,184,119,.08);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Gallery ---- */
.gallery-section {
  padding: 60px 0;
}

.gallery-note {
  text-align: center;
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-placeholder {
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 80px 40px;
}

.gallery-placeholder-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.gallery-placeholder-inner h3 {
  font-size: 24px;
  margin: 20px 0 12px;
}

.gallery-placeholder-inner p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.gallery-social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Contact Page ---- */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,139,246,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 60px 20px;
}

.form-success h3 { font-size: 28px; color: var(--accent); }
.form-success p { color: var(--gray-600); font-size: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item:last-child { margin-bottom: 0; }

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  display: block;
  color: var(--gray-700);
  font-size: 15px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { font-size: 14px; }
.footer-logo .logo-text { color: var(--white); font-size: 13px; }

.footer-address { font-size: 14px; margin-bottom: 4px; }
.footer-service-area { font-size: 14px; margin-bottom: 16px; color: var(--gray-400); }

.footer-contact-links { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-links a { color: var(--accent-light); font-size: 14px; }
.footer-contact-links a:hover { color: var(--white); }

.footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--gray-300); font-size: 14px; }
.footer-nav a:hover { color: var(--accent-light); }

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours-list li.closed span:last-child { color: #fc8181; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--gray-300);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.bbb-badge {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--gray-300);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.bbb-badge:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
}

/* ---- Gallery Preview (Home) ---- */
.gallery-preview {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

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

.gallery-grid-full img {
  height: 320px;
}

.gallery-social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Financing Banner ---- */
.financing-banner {
  text-align: center;
  padding: 20px;
}

.financing-banner img {
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 10px 20px rgba(0,0,0,.3);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 14px 16px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .header-cta { display: none; }

  .hero { min-height: auto; }
  .hero-inner { padding: 60px 0; grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-video { margin-top: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 220px; }
  .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }

  .new-services-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .service-detail-icon {
    width: 80px;
    height: 80px;
    order: -1;
  }
  .service-detail-icon svg { width: 48px; height: 48px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .top-bar-links { gap: 10px; }
  .badges-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid-full { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid-full img { height: 250px; }
}
