/* ==========================================================================
   SO CAL DREAM CONSTRUCTION — MAIN STYLESHEET
   Brand Colors: Dark Charcoal, White, Construction Orange, Steel Gray, Light Concrete Gray
   ========================================================================== */

:root {
  --charcoal: #1c1e22;
  --charcoal-light: #2a2d33;
  --white: #ffffff;
  --orange: #e8600c;
  --orange-dark: #c74f08;
  --orange-light: #ff8a3d;
  --steel-gray: #5b6470;
  --concrete-gray: #eceeef;
  --concrete-gray-dark: #d9dcdf;
  --text-body: #3a3d42;
  --shadow-soft: 0 10px 30px rgba(28, 30, 34, 0.08);
  --shadow-med: 0 15px 45px rgba(28, 30, 34, 0.15);
  --shadow-strong: 0 25px 60px rgba(28, 30, 34, 0.25);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 124px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}
.section-sm { padding: 64px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--steel-gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Skip link / accessibility
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 96, 12, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(232, 96, 12, 0.4);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--charcoal);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover {
  background: var(--orange);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 30, 34, 0.0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(28, 30, 34, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 3px 6px;
  border-radius: 10px;
  transition: var(--transition);
  flex-shrink: 0;
  overflow: hidden;
}
.site-header.scrolled .brand-logo {
  padding: 2px 5px;
}
.brand-logo img {
  height: 88px;
  width: auto;
  display: block;
  transform: scale(1.45);
  transition: var(--transition);
}
.site-header.scrolled .brand-logo img {
  height: 64px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.main-nav a {
  color: #f0f1f2;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: var(--orange-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.translate-select {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}
.translate-select:focus { outline: 2px solid var(--orange-light); }
.translate-select option { color: #1c1e22; }

.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.header-call i { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 1080px) {
  .header-call span.call-text { display: none; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 1100;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  overflow: hidden;
}
.mobile-brand-logo img {
  height: 54px;
  width: auto;
  display: block;
  transform: scale(1.45);
}
.mobile-menu-close {
  color: #fff;
  font-size: 1.8rem;
  padding: 8px;
}
.mobile-menu nav a {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.mobile-menu nav a:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 24px; }
.mobile-translate { margin-top: 24px; }
.mobile-translate label { color: #fff; display:block; margin-bottom: 8px; font-weight: 600;}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  animation: kenburns 16s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; z-index: 1; }
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,30,34,0.55) 0%, rgba(28,30,34,0.65) 50%, rgba(28,30,34,0.9) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 780px;
  padding-top: var(--header-height);
}
.hero-brand-subtitle {
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 38px;
  letter-spacing: 0.5px;
  margin-top: -10px;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease both;
}
.hero-brand-subtitle span { font-size: inherit; }
.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 24px;
  background: rgba(232, 96, 12, 0.18);
  border: 1px solid var(--orange);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 22px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero p.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #e6e7e9;
  margin-bottom: 36px;
  max-width: 620px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.hero-dots button.active { background: var(--orange); width: 30px; border-radius: 6px; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 40px;
  z-index: 3;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-scroll .scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(#fff, transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

@media (max-width: 680px) {
  .hero-scroll { display: none; }
}

/* Page header (non-home) */
.page-header {
  position: relative;
  padding: calc(var(--header-height) + 90px) 0 90px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #33363c 100%);
  color: #fff;
  overflow: hidden;
}
.page-header.page-header-compact {
  padding-top: calc(var(--header-height) + 45px);
  padding-bottom: 40px;
}
.page-header::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,96,12,0.25) 0%, transparent 70%);
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-header p { color: #d3d5d8; font-size: 1.1rem; max-width: 640px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  color: var(--orange-light);
  font-size: 0.9rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.breadcrumb a { color: #d3d5d8; }
.breadcrumb a:hover { color: var(--orange-light); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-med); transform: translateY(-6px); }

.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Service Cards */
.service-card {
  padding: 40px 30px;
  border: 1px solid var(--concrete-gray-dark);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-med);
  transform: translateY(-8px);
}
.service-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(232,96,12,0.3);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 14px; }
.service-card ul { display: grid; gap: 9px; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--steel-gray);
  font-size: 0.96rem;
}
.service-card ul li i { color: var(--orange); margin-top: 4px; font-size: 0.85rem; }

/* Icon feature cards (Why choose us) */
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--concrete-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-6px);
}
.feature-card:hover h3, .feature-card:hover p { color: #fff; }
.feature-card .feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--orange);
  font-size: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { color: var(--steel-gray); font-size: 0.9rem; }

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.about-media img { width: 100%; height: 560px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  text-align: center;
}
.about-badge .num { font-size: 2.2rem; font-weight: 800; font-family: 'Poppins',sans-serif; }
.about-badge .lbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
@media (max-width: 500px) { .value-list { grid-template-columns: 1fr; } }
.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.value-list li i {
  color: var(--orange);
  background: var(--concrete-gray);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.quote-block {
  border-left: 4px solid var(--orange);
  padding: 18px 26px;
  background: var(--concrete-gray);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-weight: 600;
  color: var(--charcoal);
  margin: 26px 0;
  font-size: 1.05rem;
}

/* ==========================================================================
   HOA Featured Section
   ========================================================================== */
.hoa-section {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hoa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hoa-clubhouse.jpg') center/cover;
  opacity: 0.18;
}
.hoa-section .container { position: relative; z-index: 2; }
.hoa-section h2 { color: #fff; }
.hoa-section .section-subtitle { color: #cfd2d6; }
.hoa-tags { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 36px; }
.hoa-tags span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 1100px) {
  .process-timeline { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 680px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
}
.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins',sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  transition: var(--transition);
  border: 3px solid var(--orange);
}
.process-step:hover .process-num { background: var(--orange); transform: scale(1.1); }
.process-step h4 { font-size: 0.95rem; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--steel-gray); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-slide {
  display: none;
  animation: fadeInUp 0.6s ease both;
}
.testimonial-slide.active { display: block; }
.stars { color: var(--orange); font-size: 1.3rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-quote {
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.5;
}
.testimonial-author { font-weight: 700; color: var(--orange); }
.testimonial-role { color: var(--steel-gray); font-size: 0.9rem; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--concrete-gray-dark);
}
.testimonial-dots button.active { background: var(--orange); }

/* ==========================================================================
   Gallery / Before-After
   ========================================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--concrete-gray);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff;
}
.gallery-caption span { font-size: 0.78rem; color: var(--orange-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 700;}
.gallery-caption h4 { color: #fff; font-size: 1.05rem; margin-top: 4px; }

/* Before/After Slider */
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  aspect-ratio: 4/3;
  user-select: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  width: 50%;
}
.ba-slider .ba-before-wrap img { width: var(--ba-img-width, 100%); max-width: none; height: 100%; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-handle::after {
  content: '\f337';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: #fff;
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(28,30,34,0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  z-index: 4;
}
.ba-label.before-label { left: 16px; }
.ba-label.after-label { right: 16px; }

/* ==========================================================================
   Service Area
   ========================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 768px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--concrete-gray);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}
.area-chip:hover { background: var(--orange); color: #fff; transform: translateX(4px); }
.area-chip i { color: var(--orange); }
.area-chip:hover i { color: #fff; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  border: 0;
  width: 100%;
  height: 460px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-category { margin-bottom: 20px; }
.faq-category-title {
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--concrete-gray-dark);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--charcoal);
  background: #fff;
  text-align: left;
  font-size: 1rem;
}
.faq-question i { color: var(--orange); transition: transform 0.3s; flex-shrink:0; margin-left: 14px;}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--concrete-gray);
}
.faq-answer-inner { padding: 4px 24px 22px; color: var(--steel-gray); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}
@media (max-width: 940px) { .contact-layout { grid-template-columns: 1fr; } }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-med);
  padding: 44px;
}
@media (max-width: 560px) { .form-card { padding: 26px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group .required { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--concrete-gray-dark);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--text-body);
  transition: var(--transition);
  background: var(--concrete-gray);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232,96,12,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.file-upload {
  border: 2px dashed var(--concrete-gray-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  color: var(--steel-gray);
  cursor: pointer;
  transition: var(--transition);
  background: var(--concrete-gray);
}
.file-upload:hover { border-color: var(--orange); color: var(--orange); }
.file-upload i { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.file-upload input { display: none; }
.file-names { margin-top: 10px; font-size: 0.85rem; color: var(--orange); font-weight: 600; }

.form-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: none;
}
.form-msg.success { display: block; background: #e5f6ea; color: #1c7a3c; }
.form-msg.error { display: block; background: #fdeaea; color: #c22; }

.contact-info-card {
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
}
.contact-info-card h3 { color: #fff; margin-bottom: 20px; }
.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-row i {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-row div span { display: block; color: #b8bcc2; font-size: 0.82rem; }
.contact-info-row div strong { font-size: 1.02rem; }

/* ==========================================================================
   Financing
   ========================================================================== */
.financing-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .financing-partners { grid-template-columns: repeat(2, 1fr); } }
.partner-card {
  background: var(--concrete-gray);
  border-radius: var(--radius-md);
  padding: 34px 20px;
  text-align: center;
  font-weight: 700;
  color: var(--steel-gray);
  font-size: 1.05rem;
  border: 1px solid var(--concrete-gray-dark);
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-med); transform: translateY(-6px); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 26px; }
.blog-tag {
  display: inline-block;
  background: rgba(232,96,12,0.1);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card p { color: var(--steel-gray); font-size: 0.92rem; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--steel-gray); border-top: 1px solid var(--concrete-gray); padding-top: 14px; }
.blog-read-link { color: var(--orange); font-weight: 700; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px; right: -60px;
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; font-size: 1.8rem; }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-banner-text { position: relative; z-index: 2; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: #c7cad0;
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}
.footer-brand-logo img {
  height: 48px;
  width: auto;
  display: block;
  transform: scale(1.45);
}
.footer-brand .brand-name { color: #fff; font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 1.1rem; }
.footer-brand .brand-tagline { color: var(--orange-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;}
.site-footer p { font-size: 0.92rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: #fff; }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.92rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-col .contact-line { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; align-items: flex-start; }
.footer-col .contact-line i { color: var(--orange); margin-top: 3px; }

.footer-translate { margin-top: 6px; }
.footer-translate label { display:block; font-size: 0.82rem; margin-bottom: 8px; color: #fff; font-weight: 600;}

.google-reviews-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-top: 16px;
}
.google-reviews-badge .stars-sm { color: var(--orange); font-size: 0.9rem; }

.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--orange-light); }
.footer-license { font-size: 0.8rem; color: #8b8f96; margin-top: 4px; }
.footer-bottom a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--orange-light); text-decoration-color: var(--orange-light); }

/* ==========================================================================
   Utility animations (scroll reveal)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--charcoal);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
}
.mobile-call-bar .call-btn { background: var(--orange); color: #fff; }
.mobile-call-bar .est-btn { background: #fff; color: var(--charcoal); }
@media (max-width: 780px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-med);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 800;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
@media (max-width: 780px) { .back-to-top { bottom: 84px; } }

/* Page section variants */
.bg-concrete { background: var(--concrete-gray); }
.bg-charcoal { background: var(--charcoal); color: #fff; }
.bg-charcoal h2, .bg-charcoal h3 { color: #fff; }

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 768px) { .stats-strip { grid-template-columns: repeat(2,1fr); } }
.stat-item .stat-num {
  font-family: 'Poppins',sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-item .stat-lbl { color: var(--steel-gray); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;}
.bg-charcoal .stat-item .stat-lbl { color: #c7cad0; }

/* Team photo section */
.team-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-med);
}
.team-photo-frame img { width: 100%; height: 420px; object-fit: cover; }

/* Generic image caption card */
.img-card { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); }
.img-card img { width: 100%; height: 260px; object-fit: cover; }

/* ==========================================================================
   Google Translate widget integration
   Hide Google's default UI (banner, toolbar, highlighting) while keeping
   the underlying translation engine active — our own .translate-select
   dropdowns in the header/footer/mobile-menu drive the language switch.
   ========================================================================== */
#google_translate_element { display: none !important; }
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
body { top: 0 !important; position: static !important; }
.goog-te-gadget { height: 0; overflow: hidden; line-height: 0; }
.goog-te-gadget img { display: none !important; }
iframe.goog-te-banner-frame { display: none !important; }
iframe.skiptranslate { display: none !important; }
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff;
  border: 1px solid var(--concrete-gray-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-med); transform: translateY(-6px); border-color: var(--orange); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 26px 24px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  display: inline-block;
  align-self: flex-start;
  background: rgba(232,96,12,0.1);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { color: var(--steel-gray); font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--steel-gray);
  margin-bottom: 14px;
}
.blog-meta i { color: var(--orange); margin-right: 4px; }
.blog-readmore {
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}
.blog-readmore i { transition: transform 0.25s ease; }
.blog-card:hover .blog-readmore i { transform: translateX(5px); }

.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.blog-featured img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.blog-featured-body { padding: 40px; }
.blog-featured-body h2 { color: #fff; }
.blog-featured-body p { color: #cfd2d6; }
@media (max-width: 860px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 30px; }
}

.newsletter-box {
  background: var(--concrete-gray);
  border-radius: var(--radius-lg);
  padding: 46px;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 22px auto 0;
}
@media (max-width: 560px) { .newsletter-form { flex-direction: column; } }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--concrete-gray-dark);
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter-form input[type="email"]:focus { outline: 2px solid var(--orange); }

/* ==========================================================================
   Legal pages (Privacy / Terms)
   ========================================================================== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.4rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--concrete-gray-dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: var(--text-body); }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-body); }
.legal-updated {
  color: var(--steel-gray);
  font-size: 0.9rem;
  margin-bottom: 34px;
  font-style: italic;
}

/* Table-like list for services detail */
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list span {
  background: var(--concrete-gray);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
