/* ============================================================
   GetSolar Philippines — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --blue:        #1565c0;
  --blue-light:  #1e88e5;
  --blue-dark:   #0d47a1;
  --yellow:      #ffc107;
  --orange:      #ff8f00;
  --green:       #2e7d32;
  --green-light: #43a047;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --light:       #eef2f7;
  --dark:        #0f1e35;
  --dark-2:      #1a2e4a;
  --gray:        #64748b;
  --gray-light:  #cbd5e1;
  --shadow:      0 4px 24px rgba(21, 101, 192, 0.10);
  --shadow-lg:   0 8px 48px rgba(21, 101, 192, 0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
  --font:        'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }
input, select, textarea { font-family: var(--font); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--gray); font-size: 1rem; }

/* ---------- Utility Classes ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green-light); }
.bg-dark     { background: var(--dark); }
.bg-blue     { background: var(--blue); }
.bg-light    { background: var(--off-white); }
.bg-gradient { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.badge {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.badge-green { background: rgba(67,160,71,0.12); color: var(--green-light); }
.badge-blue  { background: rgba(30,136,229,0.12); color: var(--blue-light); }

.section-header { margin-bottom: 56px; }
.section-header p { max-width: 620px; margin: 12px auto 0; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,143,0,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,0.35);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(15, 30, 53, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo .logo-img {
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--yellow);
  background: rgba(255,255,255,0.08);
}
.nav-cta { margin-left: 8px; }

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

/* ---------- Hero (shared) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-2);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity 1s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,71,161,0.85) 0%, rgba(15,30,53,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-content .badge { margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-float.b1 { bottom: -20px; left: -20px; }
.hero-badge-float.b2 { top: 24px; right: -20px; }
.hero-badge-float .icon { font-size: 1.6rem; }
.hero-badge-float strong { display: block; font-size: 1.1rem; color: var(--dark); }
.hero-badge-float span { font-size: 0.78rem; color: var(--gray); }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px; }
.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ---------- Icon Box ---------- */
.icon-box {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-box-blue   { background: rgba(30,136,229,0.12); color: var(--blue-light); }
.icon-box-yellow { background: rgba(255,193,7,0.15);  color: var(--orange); }
.icon-box-green  { background: rgba(67,160,71,0.12);  color: var(--green-light); }
.icon-box-white  { background: rgba(255,255,255,0.15); color: var(--white); }

/* ---------- Grid Layouts ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.items-center { align-items: center; }

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---------- Why Solar Section ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-bottom: 4px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--yellow);
  box-shadow: var(--shadow-lg);
}
.why-card h3 { font-size: 1.1rem; margin: 12px 0 8px; }

/* ---------- Steps Section ---------- */
.steps-wrap { position: relative; }
.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-line {
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.step-body h3 { margin-bottom: 6px; }
.step-body p  { font-size: 0.95rem; }

/* ---------- Solutions Grid ---------- */
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.solution-card img { width: 100%; height: 200px; object-fit: cover; }
.solution-card-body { padding: 24px; }
.solution-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.solution-card-body p  { font-size: 0.92rem; margin-bottom: 16px; }
.tag {
  display: inline-block;
  background: rgba(30,136,229,0.1);
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* ---------- Calculator Section ---------- */
.calc-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
}
.calc-wrap h2 { color: var(--dark); margin-bottom: 8px; }
.calc-wrap > p { margin-bottom: 32px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border var(--transition);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(30,136,229,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.calc-result {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 28px;
  display: none;
}
.calc-result.show { display: block; }
.calc-result h3 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.result-item {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.result-item .val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
}
.result-item .key {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.range-wrap {
  position: relative;
}
.range-wrap input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(21,101,192,0.3);
}
.range-val {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 6px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote {
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-card p { color: var(--dark); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.testimonial-author span  { font-size: 0.82rem; color: var(--gray); }
.stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 6px; }

/* ---------- Projects Grid ---------- */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  background: var(--white);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card img { width: 100%; height: 240px; object-fit: cover; }
.project-card-body { padding: 24px; }
.project-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}
.project-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.project-card-body p  { font-size: 0.9rem; margin-bottom: 16px; }
.project-stat {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--light);
}
.project-stat span { font-size: 0.85rem; color: var(--gray); }
.project-stat span strong { color: var(--green-light); }

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.blog-meta .cat {
  background: rgba(30,136,229,0.1);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.blog-meta .date { font-size: 0.8rem; color: var(--gray); }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p  { font-size: 0.9rem; margin-bottom: 16px; }
.read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 10px; }

/* ---------- CTA Banner ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 60%, #00acc1 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  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");
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Features List ---------- */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.feature-list li .check {
  width: 26px; height: 26px;
  background: rgba(67,160,71,0.12);
  color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--dark);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
}
.stat-item .lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ---------- Image Gallery ---------- */
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.img-mosaic .span-col { grid-column: span 1; grid-row: span 2; height: 412px; }

/* ---------- Team / Profile Card ---------- */
.profile-card { text-align: center; }
.profile-card img {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 4px solid var(--yellow);
}
.profile-card h4 { margin-bottom: 4px; }
.profile-card span { font-size: 0.85rem; color: var(--gray); }

/* ---------- Contact Form ---------- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item .ci-icon {
  width: 48px; height: 48px;
  background: rgba(30,136,229,0.12);
  color: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item p  { font-size: 0.9rem; }

.service-area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.service-area-badges span {
  background: rgba(30,136,229,0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ---------- Quote Form ---------- */
.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-step-indicators {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.form-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gray-light);
  margin: 0 10px;
}
.form-step.done::after { background: var(--blue); }
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-step.active .step-circle { background: var(--blue); color: var(--white); }
.form-step.done  .step-circle { background: var(--green-light); color: var(--white); }
.step-lbl { font-size: 0.8rem; font-weight: 600; color: var(--gray); white-space: nowrap; }
.form-step.active .step-lbl { color: var(--blue); }

.quote-benefits {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}
.quote-benefits h3 { color: var(--white); margin-bottom: 24px; }
.qb-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.qb-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.qb-item h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.qb-item p  { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { color: var(--blue-dark); font-weight: 600; }

/* ---------- Progress Bar ---------- */
.progress-bar-wrap { margin-bottom: 16px; }
.progress-bar-wrap label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.progress-bar {
  height: 8px;
  background: var(--light);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 4px;
  transition: width 1.2s ease;
}

/* ---------- Newsletter ---------- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: var(--yellow); }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-logo .logo-img {
  height: 42px;
  width: auto;
}
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--yellow); color: var(--dark); }
.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--yellow); margin-top: 3px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--yellow); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb i { font-size: 0.7rem; }

/* ---------- Scroll To Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ---------- Animate on Scroll ---------- */
.aos { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero p { font-size: 1rem; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  .hero-badge-float { display: none; }
  .calc-wrap { padding: 28px 20px; }
  .quote-form-wrap { padding: 28px 20px; }
  .newsletter-form { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateX(-100%);
    transition: transform var(--transition);
    height: 100vh;
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-cta { margin-left: 0; margin-top: 12px; }
  .img-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .img-mosaic .span-col { height: 240px; }
  .hero-image-wrap { margin-top: 40px; }
  .form-step-indicators { flex-wrap: wrap; gap: 12px; }
  .form-step::after { display: none; }
}
@media (max-width: 480px) {
  .btn { padding: 12px 24px; }
  .btn-lg { padding: 14px 32px; font-size: 0.95rem; }
  .hero-btns { flex-direction: column; }
  h1 { font-size: 1.8rem; }
}
