/* ═══════════════════════════════════════════════════════════════════
   SERAC PRO ROOFING — Main Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

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

/* Ensure [hidden] always wins over any display property in this sheet */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ── Typography ────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 900;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

/* ── Container ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 0.85em 2em; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(232, 80, 10, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white);
  color: var(--dark-blue);
}

.btn-dark {
  background: var(--dark-blue);
  color: var(--white);
  border: 2px solid var(--dark-blue);
}
.btn-dark:hover, .btn-dark:focus-visible {
  background: #060f22;
  border-color: #060f22;
  box-shadow: 0 6px 20px rgba(13, 27, 62, 0.4);
}

/* ── Section Shared ─────────────────────────────────────────────────── */
.section-pad { padding-block: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  max-width: 580px;
  margin-inline: auto;
  margin-top: 0.75rem;
  color: var(--gray-600);
  font-size: 1.05rem;
}
.section-header--light h2,
.section-header--light p { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.75); }

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-label--white { color: rgba(255,255,255,0.85); }

/* ── Header / Nav ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark-blue);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
}
.nav-links a {
  position: relative;
  color: var(--white);
  opacity: 0.8;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  transition: color var(--transition), opacity var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  opacity: 1;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: border-color var(--transition), color var(--transition);
}
.lang-toggle:hover { border-color: var(--white); color: var(--white); }
.lang-opt { cursor: pointer; transition: color var(--transition); }
.lang-opt.active { color: var(--orange); }
.lang-divider { opacity: 0.3; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.nav-hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-open .nav-hamburger .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger .bar:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 900;
}
.nav-open .nav-overlay { display: block; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Gradient fallback shown when no video file is present */
  background: linear-gradient(135deg, #0a1428 0%, var(--dark-blue-2) 50%, #1a3060 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Video background — place hero-video.mp4 in assets/images/ to activate */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 27, 62, 0.55) 0%,
    rgba(13, 27, 62, 0.70) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-badges .badge {
  background: rgba(232, 80, 10, 0.2);
  border: 1px solid rgba(232, 80, 10, 0.45);
  color: rgba(255,255,255,0.9);
  padding: 0.3em 0.9em;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-inline: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: color var(--transition), border-color var(--transition);
}
.hero-scroll-cue:hover { color: var(--white); border-color: var(--white); }
.hero-scroll-cue svg { width: 24px; height: 24px; fill: currentColor; }

/* ── Services ───────────────────────────────────────────────────────── */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--dark-blue);
  transition: color var(--transition);
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  color: var(--dark-blue);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Gallery ────────────────────────────────────────────────────────── */
.gallery-section { background: var(--dark-blue); }
.gallery-section .section-header h2,
.gallery-section .section-label { color: var(--white); }
.gallery-section .section-header p { color: rgba(255,255,255,0.65); }
.gallery-section .section-label { color: var(--orange); }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 4/3;
  outline: none;
}
.gallery-item:focus-visible {
  box-shadow: 0 0 0 3px var(--orange);
}
.gallery-item--featured {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}
.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Placeholder gradient colors — replace with background-image: url() in production */
.gp-1 { background: linear-gradient(135deg, #1a2e58 0%, #2c4a80 100%); }
.gp-2 { background: linear-gradient(135deg, #2d4a20 0%, #3d6628 100%); }
.gp-3 { background: linear-gradient(135deg, #4a2020 0%, #803030 100%); }
.gp-4 { background: linear-gradient(135deg, #3a2a10 0%, #6a4e20 100%); }
.gp-5 { background: linear-gradient(135deg, #2a3a4a 0%, #3a5060 100%); }
.gp-6 { background: linear-gradient(135deg, #3a1a4a 0%, #5a2870 100%); }
.gp-7 { background: linear-gradient(135deg, #1a3a3a 0%, #285858 100%); }
.gp-8 { background: linear-gradient(135deg, #3a3a1a 0%, #585828 100%); }
.gp-9 { background: linear-gradient(135deg, #1a1a3a 0%, #282858 100%); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  gap: 4px;
}
.gallery-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.gallery-caption {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
}
.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  fill: var(--white);
  opacity: 0.85;
}
.gallery-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(0,0,0,0.92);
}
.lightbox-content {
  position: relative;
  z-index: 2001;
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.lightbox-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-blue);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap .gallery-placeholder {
  width: 100%;
  min-height: 480px;
}
.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2002;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}
.lightbox-close svg { width: 24px; height: 24px; fill: currentColor; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2002;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; fill: currentColor; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ── Testimonials ───────────────────────────────────────────────────── */
.testimonials-section { background: var(--gray-50); }

.testimonials-wrap {
  max-width: 780px;
  margin-inline: auto;
}

.testimonial-slide blockquote p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--black);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}
.testimonial-slide blockquote p::before {
  content: '\201C';
  position: absolute;
  left: -0.5rem;
  top: -0.3rem;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #FFA800;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.author-name {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--dark-blue);
}
.author-city {
  color: var(--gray-600);
  font-size: 0.88rem;
}
.author-city::before { content: '— '; }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testi-prev, .testi-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  transition: background var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.testi-prev:hover, .testi-next:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
}
.testi-prev svg, .testi-next svg { width: 20px; height: 20px; fill: currentColor; }

.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background var(--transition), transform var(--transition);
}
.testi-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ── Financing ──────────────────────────────────────────────────────── */
.financing-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
}

.financing-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.financing-text h2 { color: var(--white); margin-bottom: 1rem; }
.financing-text p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.financing-text .section-label {
  color: rgba(255,255,255,0.75);
}

.financing-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.financing-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(4px);
}
.feat-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  color: var(--white);
}
.feat-icon svg { width: 100%; height: 100%; }
.feat-body { display: flex; flex-direction: column; gap: 2px; }
.feat-body strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
}
.feat-body span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
}

/* ── Contact ────────────────────────────────────────────────────────── */
.contact-section { background: var(--dark-blue); }

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.65em 0.9em;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: var(--dark-blue); color: var(--white); }

#contact-submit {
  margin-top: 0.5rem;
  gap: 0.75rem;
}

.form-message {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-message.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}
.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(232, 80, 10, 0.15);
  border: 1px solid rgba(232, 80, 10, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 20px; height: 20px;
  fill: var(--orange);
}
.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.contact-info-item a,
.contact-info-item span {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.4;
}
.contact-info-item a:hover { color: var(--orange); }

.contact-badge {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.contact-badge span {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding-block: 4rem 2rem;
}
.footer-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.3rem;
}
.footer-area {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-list { gap: 0.75rem !important; }
.footer-contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact-list svg {
  width: 16px; height: 16px;
  fill: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mt-license {
    margin-top: 30px;
}
.mt-license h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.65rem;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
}

.footer-social a svg {
    width: 26px;
    height: 28px;
    fill: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover svg {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    fill: var(--orange);
}


  .hero-social {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.75s;
    margin-top: 25px;
  }

  @keyframes heroFadeUp {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-social a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    overflow: hidden; /* esto evita escapes raros */
}

.hero-social a svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0; /* evita que flex lo deforme */
    fill: #ffffff;
}

  .hero-social a:hover svg {
      opacity: 1;
      transform: translateY(-2px) scale(1.08);
      fill: #ff5a1f; 
  }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .financing-inner { gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-pad: var(--section-pad-m);
  }

  /* Mobile nav */
  .nav-hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100svh;
    background: var(--dark-blue);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
    z-index: 1000;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  }
  .nav-open .nav-menu { right: 0; }
  .nav-links { flex-direction: column; gap: 1.25rem; }
  .nav-links a { font-size: 1.1rem; color: rgba(255,255,255,0.8); opacity: 1; }
  .nav-links a:hover,
  .nav-links a.active { color: var(--white); opacity: 1; }
  .lang-toggle { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
  .lang-toggle:hover { border-color: var(--white); color: var(--white); }
  .nav-actions { flex-direction: column; align-items: flex-start; }
  .nav-cta { width: 100%; justify-content: center; }

  /* Hero */
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--featured { grid-row: span 1; aspect-ratio: 4/3; }

  /* Financing */
  .financing-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   MATERIALS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.materials-section { background: var(--gray-50); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.material-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.material-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.material-card-header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem 1.25rem;
  min-height: 180px;
  overflow: hidden;
}

/* ── Material texture CSS art — swap background-image for real photos when available ── */

.mch-concrete {
  background-image: url('../images/concrete_tile.png');
  background-size: cover;
  background-position: center;
}

.mch-clay {
  background-image: url('../images/clay_tile.png');
  background-size: cover;
  background-position: center;
}

.mch-asphalt {
  background-image: url('../images/asphalt_shingles.png');
  background-size: cover;
  background-position: center;
}

.mch-metal {
  background-image: url('../images/metal_roofing.png');
  background-size: cover;
  background-position: center;
}

.mch-tpo {
  background-image: url('../images/flat_roof_tpo.png');
  background-size: cover;
  background-position: center;
}

.mch-bitumen {
  background-image: url('../images/modified_bitumen.png');
  background-size: cover;
  background-position: center;
}

/* Bottom-to-top fade for readability of the badge */
.mat-header-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
}

.mat-lifespan {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}
.mat-lifespan span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.95);
}

.material-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.material-card-body h3 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.material-card-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mat-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--dark-blue);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}

/* ═══════════════════════════════════════════════════════════════════
   COUNTIES SECTION
   ═══════════════════════════════════════════════════════════════════ */

.counties-section { background: var(--dark-blue); }

.counties-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── Map ── */
.counties-map-col {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}

.serac-leaflet-map {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Leaflet attribution — match dark theme */
.serac-leaflet-map .leaflet-control-attribution {
  background: rgba(6,15,34,0.85) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 10px !important;
  backdrop-filter: blur(4px);
}
.serac-leaflet-map .leaflet-control-attribution a {
  color: rgba(232,80,10,0.7) !important;
}

/* Zoom controls */
.serac-leaflet-map .leaflet-control-zoom a {
  background: rgba(13,27,62,0.9) !important;
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.12) !important;
}
.serac-leaflet-map .leaflet-control-zoom a:hover {
  background: rgba(232,80,10,0.8) !important;
  color: var(--white) !important;
}

/* City name tooltips */
.serac-city-tip {
  background: rgba(6,15,34,0.88) !important;
  border: 1px solid rgba(232,80,10,0.4) !important;
  border-radius: 4px !important;
  color: rgba(255,255,255,0.75) !important;
  font-size: 11px !important;
  font-family: 'Inter', Arial, sans-serif !important;
  padding: 2px 7px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
  white-space: nowrap !important;
}
.serac-city-tip::before {
  border-right-color: rgba(232,80,10,0.4) !important;
}

.map-hint {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ── County Panels ── */
.counties-info-col {
  position: relative;
  min-height: 400px;
}

.county-panel {
  display: none;
  animation: panel-in 0.35s ease both;
}
.county-panel.active { display: flex; flex-direction: column; gap: 1.5rem; }

@keyframes panel-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.county-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.county-pin {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232,80,10,0.15);
  border: 1px solid rgba(232,80,10,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.county-pin svg { width: 22px; height: 22px; }

.county-panel-header h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.2rem;
}
.county-projects {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.county-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  line-height: 1.75;
}

.county-cities strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.city-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 12px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}
.city-tag:hover {
  background: rgba(232,80,10,0.2);
  color: var(--white);
  border-color: rgba(232,80,10,0.4);
}

/* County mini gallery */
.county-gallery-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.county-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.county-gal-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.county-gal-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: unset;
  transition: transform 0.4s ease;
}
.county-gal-item .gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.county-gal-item:hover .gallery-placeholder {
  transform: scale(1.06);
}

.county-cta { align-self: flex-start; margin-top: 0.25rem; }

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .counties-inner { grid-template-columns: 260px 1fr; gap: 2.5rem; }
  .counties-map-col { position: static; }
}

@media (max-width: 768px) {
  .materials-grid { grid-template-columns: 1fr; }
  .counties-inner { grid-template-columns: 1fr; gap: 2rem; }
  .serac-leaflet-map { height: 320px; }
  .county-gallery-row { grid-template-columns: repeat(3, 1fr); }
  .county-cta { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   ROOF TYPES SECTION (Residential / Commercial)
   ═══════════════════════════════════════════════════════════════════ */

.roof-types-section {
  display: flex;
  flex-direction: column;
}

.rtp-intro {
  background: var(--dark-blue);
  padding-block: 4rem 3rem;
  text-align: center;
}
.rtp-intro .section-header {
  margin-bottom: 0;
}

.rtp-panels {
  display: flex;
  min-height: 620px;
}

.roof-type-panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 620px;
}

.rtp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.roof-type-panel:hover .rtp-bg { transform: scale(1.03); }

/* Residential: dark blue with subtle tile grid */
.panel-residential {
  border-right: 2px solid rgba(232, 80, 10, 0.45);
}
.panel-residential .rtp-bg {
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 38px, rgba(255,255,255,0.03) 38px, rgba(255,255,255,0.03) 41px),
    repeating-linear-gradient(90deg, transparent 0, transparent 66px, rgba(255,255,255,0.025) 66px, rgba(255,255,255,0.025) 69px),
    linear-gradient(145deg, #08112a 0%, #0D1B3E 55%, #152550 100%);
}

/* Commercial: darker with flat-roof seam pattern */
.panel-commercial .rtp-bg {
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 54px, rgba(255,255,255,0.025) 54px, rgba(255,255,255,0.025) 57px),
    repeating-linear-gradient(90deg, transparent 0, transparent 30px, rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 32px),
    linear-gradient(145deg, #060b16 0%, #0f1828 55%, #08101e 100%);
}

.rtp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.panel-residential .rtp-overlay {
  background: linear-gradient(155deg, rgba(13,27,62,0.38) 0%, rgba(13,27,62,0.12) 100%);
}
.panel-commercial .rtp-overlay {
  background: linear-gradient(155deg, rgba(4,8,18,0.45) 0%, rgba(12,18,30,0.15) 100%);
}

.rtp-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3.5rem;
  max-width: 520px;
  color: var(--white);
}

.rtp-icon {
  width: 64px;
  height: 64px;
  padding: 13px;
  background: rgba(232, 80, 10, 0.16);
  border: 1.5px solid rgba(232, 80, 10, 0.42);
  border-radius: 50%;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtp-icon svg { width: 36px; height: 36px; }

.rtp-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.55rem;
}

.rtp-heading {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.rtp-content > p {
  color: rgba(255,255,255,0.76);
  font-size: 0.96rem;
  line-height: 1.72;
  margin-bottom: 1.6rem;
  max-width: 400px;
}

.rtp-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.rtp-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.91rem;
  font-weight: 500;
}
.rtp-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.rtp-cta { margin-top: 0.25rem; }

/* ── Roof Types Responsive ── */
@media (max-width: 960px) {
  .rtp-panels { flex-direction: column; min-height: unset; }
  .roof-type-panel { min-height: 540px; justify-content: flex-start; }
  .panel-residential { border-right: none; border-bottom: 2px solid rgba(232,80,10,0.45); }
  .rtp-content { padding: 3rem 2rem; max-width: 100%; }
  .rtp-content > p { max-width: 100%; }
}

@media (max-width: 480px) {
  .roof-type-panel { min-height: 500px; }
  .rtp-content { padding: 2.5rem 1.5rem; }
  .rtp-icon { width: 54px; height: 54px; padding: 11px; }
  .rtp-icon svg { width: 30px; height: 30px; }
  .rtp-list li { font-size: 0.88rem; }
}

/* ── FAQ Section ────────────────────────────────────────────────── */
.faq-section { background: var(--gray-50); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  transition: color var(--transition);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--orange); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon { position: relative; }
.faq-icon::before {
  width: 10px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item[open] .faq-icon { background: var(--orange); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--white); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  padding-bottom: 1.25rem;
  color: var(--gray-600);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 680px;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.faq-cta p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ── FAQ Responsive ── */
@media (max-width: 640px) {
  .faq-question { font-size: 0.95rem; padding: 1rem 0; }
  .faq-answer { font-size: 0.92rem; }
}

/* ── About Section ──────────────────────────────────────────────────── */
.about-section { background: var(--gray-50); }

/* Stats bar */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 3rem 0 2.5rem;
  box-shadow: var(--shadow-lg);
}
.about-stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.about-stat:last-child { border-right: none; }
.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.about-stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
}

/* Trust badges */
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-blue);
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
}

/* Founders grid */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--dark-blue);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.founder-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at bottom right, rgba(232, 80, 10, 0.06), transparent 70%);
  pointer-events: none;
}
.founder-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--dark-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.founder-icon svg {
  width: 24px;
  height: 24px;
}
.founder-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 0.2rem;
}
.founder-role {
  display: block;
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  font-family: var(--font-body);
}
.founder-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* Core values block */
.values-block {
  background: var(--dark-blue);
  border-radius: var(--radius-lg);
  padding: 3.25rem 3rem;
  margin-top: 1.5rem;
}
.values-block .section-label { color: var(--orange); }
.values-block h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  margin: 0.5rem 0 2.25rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.value-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 0.25rem;
}
.value-icon svg {
  width: 40px;
  height: 40px;
}
.value-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-heading);
}
.value-tagline {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}
.value-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* Founders' commitment quote */
.about-commitment {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}
.commitment-quote {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1.75rem;
}
.commitment-quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  color: var(--orange);
  opacity: 0.7;
  flex-shrink: 0;
}
.commitment-quote blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
}
.commitment-founders {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.commitment-founder {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}
.commitment-founder span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.3px;
}

/* ── About Responsive ── */
@media (max-width: 960px) {
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .about-stat:nth-child(2n) { border-right: none; }
  .about-stat:nth-child(3),
  .about-stat:nth-child(4) { border-bottom: none; }
}
@media (max-width: 640px) {
  .founders-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .values-block { padding: 2.5rem 1.5rem; }
  .about-badges { gap: 0.5rem; }
  .commitment-founders { flex-direction: column; }
  .commitment-founder { border-radius: 12px; }
}

/* ══ Quote Wizard Section ═══════════════════════════════════════════════ */

.quote-section { background: var(--gray-50); }

/* ── Section hero header ── */
.quote-section-hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-2) 100%);
  padding: 4rem 0 5.5rem;
  text-align: center;
  position: relative;
}
.quote-section-hero .section-label { color: var(--orange); margin-bottom: 0.75rem; }
.quote-section-hero h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.quote-section-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
}

/* ── Wizard card ── */
.quote-wizard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem 3rem;
  max-width: 820px;
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

/* ── Progress bar ── */
.qw-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 0;
}
.qw-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  flex-shrink: 0;
}
.qw-dot-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.qw-dot-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: color var(--transition);
}
.qw-step-dot.active .qw-dot-num  { background: var(--orange); color: var(--white); }
.qw-step-dot.active .qw-dot-label { color: var(--orange); }
.qw-step-dot.done   .qw-dot-num  { background: var(--dark-blue); color: var(--white); }
.qw-step-dot.done   .qw-dot-label { color: var(--dark-blue); }

.qw-step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 6px;
  margin-bottom: 22px;
  border-radius: 2px;
  transition: background var(--transition);
  min-width: 20px;
}
.qw-step-line.done { background: var(--dark-blue); }

/* ── Panels ── */
.qw-panel { display: none; }
.qw-panel.active { display: block; animation: qwFadeIn 0.3s ease; }

@keyframes qwFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.qw-panel h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--dark-blue);
  margin-bottom: 1.75rem;
}

/* ── Address input ── */
.qw-address-wrap { position: relative; margin-bottom: 1.5rem; }
.qw-address-input-row {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: visible;
  background: var(--white);
  transition: border-color var(--transition);
}
.qw-address-input-row:focus-within { border-color: var(--orange); }
.qw-pin-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 14px;
  color: var(--orange);
}
.qw-address-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1rem 1rem 0.625rem;
  font-size: 1rem;
  color: var(--black);
  background: transparent;
  font-family: var(--font-body);
}
.qw-address-input.qw-input-error { color: #c00; }
.qw-address-input-row:has(.qw-input-error) { border-color: #e53; }

/* Suggestions dropdown */
.qw-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  list-style: none;
  overflow: hidden;
}
.qw-sugg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--black);
  transition: background var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.qw-sugg-item:last-child { border-bottom: none; }
.qw-sugg-item:hover { background: var(--gray-50); }
.qw-sugg-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }

/* Satellite image */
.qw-satellite-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background: var(--dark-blue);
  min-height: 160px;
  display: flex;
  flex-direction: column;
}
.qw-satellite-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(13,27,62,0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.qw-satellite-badge svg { width: 14px; height: 14px; color: var(--orange); }
.qw-satellite-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.qw-satellite-wrap.loaded .qw-satellite-img { opacity: 1; }

/* ── Cards ── */
.qw-field-group { margin-bottom: 1.75rem; }
.qw-field-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.qw-cards {
  display: grid;
  gap: 0.75rem;
  transition: outline var(--transition);
}
.qw-cards--2 { grid-template-columns: repeat(2, 1fr); }
.qw-cards--4 { grid-template-columns: repeat(4, 1fr); }
.qw-cards--5 { grid-template-columns: repeat(5, 1fr); }
.qw-cards-error { outline: 2px solid #e53; outline-offset: 6px; border-radius: var(--radius); }

.qw-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 0.75rem 0.9rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  font-family: var(--font-body);
}
.qw-card:hover {
  border-color: var(--orange);
  background: rgba(232,80,10,0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.qw-card.selected {
  border-color: var(--orange);
  background: rgba(232,80,10,0.06);
  box-shadow: 0 0 0 3px rgba(232,80,10,0.15);
}
.qw-card-icon {
  width: 40px;
  height: 40px;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qw-card.selected .qw-card-icon { color: var(--orange); }
.qw-card-icon svg { width: 40px; height: 40px; }
.qw-card-icon--sm svg { width: 36px; height: 36px; }
.qw-card > span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-blue);
  font-family: var(--font-heading);
}
.qw-card.selected > span { color: var(--orange); }
.qw-card > small {
  font-size: 0.72rem;
  color: var(--gray-400);
  line-height: 1.3;
}

/* ── Contact form ── */
.qw-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.qw-form-field--full { grid-column: 1 / -1; }
.qw-form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}
.qw-form-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.qw-form-field input:focus { border-color: var(--orange); }
.qw-form-field input.qw-input-error { border-color: #e53; }

.qw-privacy {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

/* ── Actions row ── */
.qw-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-100);
  margin-top: 1.25rem;
}
.qw-actions .btn-outline {
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: transparent;
}
.qw-actions .btn-outline:hover { border-color: var(--dark-blue); color: var(--dark-blue); }

/* ── Results ── */
.qw-result-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.qw-result-check {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qw-result-check svg { width: 26px; height: 26px; }
.qw-result-header h3 { font-size: 1.3rem; color: var(--dark-blue); margin-bottom: 0.2rem; }
.qw-result-header p  { font-size: 0.9rem; color: var(--gray-600); }

.qw-result-satellite {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: block;
}

.qw-result-details {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.qw-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  gap: 1rem;
}
.qw-result-row:last-child { border-bottom: none; }
.qw-rl { font-size: 0.85rem; color: var(--gray-600); flex-shrink: 0; }
.qw-rv { font-size: 0.9rem; font-weight: 600; color: var(--dark-blue); text-align: right; }

.qw-price-box {
  background: var(--dark-blue);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.qw-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.qw-price-range {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.qw-price-monthly {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.qw-result-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.qw-result-actions .btn { flex: 1; justify-content: center; min-width: 160px; }
.qw-result-actions .btn-outline { border: 2px solid var(--gray-200); color: var(--dark-blue); }
.qw-result-actions .btn-outline:hover { border-color: var(--dark-blue); background: var(--dark-blue); color: var(--white); }

.qw-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.65;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

/* ── Quote Wizard Responsive ── */
@media (max-width: 860px) {
  .quote-wizard { padding: 2rem 1.75rem; }
  .qw-cards--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .quote-section-hero { padding: 3rem 0 4.5rem; }
  .quote-wizard { padding: 1.5rem 1.25rem; margin-top: -2.5rem; }
  .qw-dot-label { display: none; }
  .qw-step-dot { gap: 0; }
  .qw-step-line { min-width: 12px; }
  .qw-dot-num  { width: 30px; height: 30px; font-size: 0.8rem; }
  .qw-cards--2 { grid-template-columns: repeat(2, 1fr); }
  .qw-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .qw-cards--5 { grid-template-columns: repeat(2, 1fr); }
  .qw-form-grid { grid-template-columns: 1fr; }
  .qw-form-field--full { grid-column: 1; }
  .qw-actions { flex-direction: column-reverse; }
  .qw-actions .btn { width: 100%; justify-content: center; }
  .qw-satellite-img { height: 200px; }
}
