/* =============================================
   BDX SMART HOMES — style.css
   Sections added in order:
   1. Variables + Reset
   2. Navigation
   3. Hero
   (more sections added below as we build)
   ============================================= */

/* =====================
   1. CSS VARIABLES + RESET
   ===================== */
:root {
  --color-primary:       #e53935;
  --color-primary-hover: #c62828;
  --color-gold:          #c08300;
  --color-dark:          #170000;
  --color-bg:            #fffaf3;
  --color-text:          rgba(0, 0, 0, 0.85);
  --color-text-muted:    rgba(0, 0, 0, 0.6);
  --color-border:        #e4e4e4;
  --color-white:         #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-ui:      'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-btn:    8px;
  --radius-card:   18px;
  --nav-height:    70px;
  --container-max: 1280px;
}

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

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 0.35s ease forwards;
}

body.page-leaving {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

section[id] { scroll-margin-top: 60px; }

/* Shared button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover  { background: var(--color-primary-hover); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary .btn-arrow,
.hero-cta .btn-arrow {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex-shrink: 0;
}

/* =====================
   2. NAVIGATION
   ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 39px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover  { background: #ebebeb; }
.nav-links a.active { color: var(--color-primary); background: #ffe4e4; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-phone svg { width: 14px; height: 14px; color: var(--color-text-muted); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 30px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn-primary { margin-top: 16px; justify-content: center; }

/* =====================
   3. HERO
   ===================== */
.hero {
  background: var(--color-bg);
  min-height: 680px;
  padding: 60px 80px;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 560px;
}

.hero-content {
  flex: 1 1 auto;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.hero-top { display: flex; flex-direction: column; gap: 20px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(205,205,205,0.2);
  border: 1px solid #d7d7d7;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10f300;
  flex-shrink: 0;
}
.hero-tag span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: #696969;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
  line-height: 74px;
  color: var(--color-dark);
}
.hero-heading .gold {
  color: var(--color-gold);
  letter-spacing: -1px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: rgba(0,0,0,0.9);
  max-width: 740px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 20px 32px;
  border: none;
  border-radius: var(--radius-btn);
  width: fit-content;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.hero-cta:hover  { background: var(--color-primary-hover); }
.hero-cta:active { transform: scale(0.98); }
.hero-cta .btn-arrow { width: 24px; height: 24px; stroke-width: 2; flex-shrink: 0; }

.hero-feat-wrap {
  flex: 0 0 auto;
  width: 440px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-feat-card {
  width: 100%;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  position: relative;
}
.hero-feat-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-feat-slide.active { opacity: 1; }
.hero-feat-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
}
.hero-feat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-feat-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hero-feat-meta {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-feat-meta .feat-sep { opacity: 0.5; }
.hero-feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 14px;
  border-radius: 6px;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s;
}
.hero-feat-link:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.hero-feat-link svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2; flex-shrink: 0; }
.hero-feat-dots { display: flex; align-items: center; gap: 8px; }
.hero-feat-dot {
  height: 4px;
  width: 12px;
  border-radius: 9999px;
  background: rgba(17,17,17,0.2);
  transition: all 0.3s;
}
.hero-feat-dot.active { background: var(--color-primary); width: 30px; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .hero           { padding: 60px 40px; }
  .hero-heading   { font-size: 46px; line-height: 56px; }
  .hero-feat-wrap { width: 360px; }
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }
  .hero-content   { max-width: 100%; }
  .hero-heading   { font-size: 40px; line-height: 50px; }
  .hero-feat-wrap { width: 100%; max-width: 420px; align-self: center; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone            { display: none; }
  .nav-hamburger        { display: flex; }
  .nav-right .btn-primary { display: none; }

  .hero-heading { font-size: 32px; line-height: 40px; }
  .hero-sub     { font-size: 17px; line-height: 28px; }
  .hero-cta     { font-size: 14px; padding: 16px 24px; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 30px; line-height: 38px; }
}

@media (max-width: 425px) {
  .hero-content  { text-align: center; align-items: center; }
  .hero-top      { align-items: center; }
  .hero-tag      { align-self: center; }
  .hero-cta      { align-self: center; }
  .hero-feat-wrap { display: none; }
  .hero          { min-height: unset; padding-top: 20px; padding-bottom: 40px; }
  .hero-inner    { min-height: unset; }
}

/* =====================
   4. STATS
   ===================== */
.stats {
  background: var(--color-bg);
  padding: 0 80px;
}

.stats-card {
  background: #170000;
  border-radius: var(--radius-card);
  padding: 60px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

.stats-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #fffaf3;
  text-align: center;
  white-space: nowrap;
}

.stats-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 30px;
  flex: 1 1 0;
}

.stat-sep {
  border-left: 1px dashed rgba(241, 241, 241, 0.4);
}

.stat-number {
  font-family: var(--font-ui);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: var(--color-primary);
  text-align: center;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
}

.stat-detail {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 210px;
}

@media (max-width: 900px) {
  .stats { padding: 0 30px 60px; }
  .stats-grid { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; padding: 24px 20px; }
  .stat-sep { border-left: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px dashed rgba(241, 241, 241, 0.4); }
  .stat:nth-child(4) { border-left: 1px dashed rgba(241, 241, 241, 0.4); }
  .stat-number { font-size: 40px; }
}

@media (max-width: 480px) {
  .stats { padding: 0 20px 40px; }
  .stat { flex: 1 1 100%; }
  .stat-sep,
  .stat:nth-child(4) { border-left: none; }
  .stat:nth-child(n+2) { border-top: 1px dashed rgba(241, 241, 241, 0.4); }
}

/* =====================
   5. SERVICES
   ===================== */

/* Reusable section header utilities */
.section-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.section-heading {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  color: #111;
  margin: 0 0 10px;
}
.section-sub {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #555;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services {
  background: var(--color-bg);
  padding: 72px 80px 60px;
}

.services-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
}

.services-grid {
  display: flex;
  gap: 23px;
}

.svc-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 20px 30px;
  border-radius: var(--radius-card);
  border: 1px solid #ddd;
}

.svc-card--pink   { background: #fff0f0; }
.svc-card--blue   { background: linear-gradient(to bottom, rgba(217,221,255,0.3), #f0f1ff); }
.svc-card--green  { background: linear-gradient(to bottom, transparent, #f0fff8); }
.svc-card--purple { background: #f9f0ff; }

.svc-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.svc-title {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #111;
  margin: 0;
}

.svc-desc {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  opacity: 0.8;
  margin: 0;
}

.svc-spacer { flex: 1; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.svc-link:hover {
  color: var(--color-primary);
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.svc-link i { width: 16px; height: 16px; }
.svc-link svg { stroke-width: 1.5; }

@media (max-width: 1100px) {
  .services { padding: 80px 30px 60px; }
  .services-grid { flex-wrap: wrap; }
  .svc-card { flex: 1 1 calc(50% - 12px); }
  .section-heading { font-size: 36px; }
}

@media (max-width: 600px) {
  .services { padding: 60px 20px 40px; }
  .svc-card { flex: 1 1 100%; }
  .section-heading { font-size: 30px; }
  .section-sub { font-size: 16px; }
}

/* =====================
   6. PORTFOLIO
   ===================== */
.portfolio {
  background: var(--color-bg);
  padding: 72px 80px 0;
}

.portfolio-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.portfolio-header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}

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

.portfolio-cta {
  display: flex;
  justify-content: center;
}

.proj-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.proj-card:hover .proj-img { transform: scale(1.04); }

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: background 0.3s ease;
}
.proj-card:hover .proj-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.88) 100%);
}

.proj-info { display: flex; flex-direction: column; gap: 5px; }

.proj-name {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.proj-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.proj-location svg { width: 16px; height: 16px; stroke-width: 1.5; flex-shrink: 0; }

.proj-hover-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 10px));
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 17px 24px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.proj-hover-btn .btn-arrow {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex-shrink: 0;
  pointer-events: none;
}
.proj-card:hover .proj-hover-btn {
  opacity: 1;
  transform: translate(-50%, calc(-50% - 10px)) scale(1.03);
  pointer-events: auto;
  cursor: pointer;
}
.proj-hover-btn:hover  { background: var(--color-primary-hover); }
.proj-hover-btn:active { transform: translate(-50%, calc(-50% - 10px)) scale(0.98); }

.proj-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #000;
  white-space: nowrap;
}
.proj-chip--done    { background: #2cffc7; }
.proj-chip--ongoing { background: #ffc139; }
.proj-chip--design  { background: #e3ff2c; }

@media (max-width: 1000px) {
  .portfolio { padding: 80px 30px 60px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .portfolio { padding: 60px 20px 40px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* =====================
   PROJECT PAGES
   ===================== */
.proj-page {
  background: var(--color-bg);
  min-height: 100vh;
}

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px 0 0;
}
.breadcrumb-link { color: var(--color-text-muted); text-decoration: none; }
.breadcrumb-link:hover { color: var(--color-dark); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--color-dark); font-weight: 600; }

@media (max-width: 1000px) { .breadcrumb { padding: 20px 30px 0; } }
@media (max-width: 600px)  { .breadcrumb { padding: 16px 20px 0; } }

/* =====================
   ALL PROJECTS PAGE
   ===================== */
.all-proj-header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.all-proj-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.1;
}

.all-proj-sub {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0 0 16px;
  max-width: 900px;
}

.all-proj-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Shared dropdown component */
.proj-dropdown {
  position: relative;
}

.proj-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.proj-dropdown-btn:hover,
.proj-dropdown.open .proj-dropdown-btn {
  border-color: var(--color-dark);
  color: var(--color-dark);
}
.proj-dropdown.filtered .proj-dropdown-btn {
  border-color: var(--color-dark);
  color: var(--color-dark);
  background: rgba(0, 0, 0, 0.05);
}

.dropdown-chevron,
.dropdown-clear {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.dropdown-chevron {
  transition: transform 0.2s;
}
.proj-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}
.dropdown-clear {
  display: none;
}
.proj-dropdown.filtered .dropdown-clear {
  display: block;
}
.proj-dropdown.filtered .dropdown-chevron {
  display: none;
}

.proj-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  list-style: none;
  margin: 0;
  padding: 6px;
  z-index: 100;
}
.proj-dropdown.open .proj-dropdown-menu {
  display: block;
}
.proj-dropdown:last-child .proj-dropdown-menu {
  left: auto;
  right: 0;
}

.proj-option {
  padding: 9px 14px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.proj-option:hover {
  background: var(--color-bg);
  color: var(--color-dark);
}
.proj-option.active {
  background: var(--color-dark);
  color: #fff;
}

.all-proj-grid-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 0 80px;
}

/* Infinite scroll card states */
.proj-card.proj-hidden {
  display: none;
}
.proj-card.proj-visible {
  display: block;
  animation: proj-card-in 0.4s ease both;
}
@keyframes proj-card-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Loader spinner */
.proj-loader {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}
.proj-loader[hidden] { display: none; }
.proj-loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e5e5;
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: proj-spin 0.8s linear infinite;
}
@keyframes proj-spin { to { transform: rotate(360deg); } }

.proj-empty {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--color-text-muted);
  padding: 60px 0;
}
.proj-empty[hidden] { display: none; }

@media (max-width: 1000px) {
  .all-proj-header { padding: 40px 30px 32px; }
  .all-proj-grid-wrap { padding: 0 30px 60px; }
  .all-proj-title { font-size: 38px; }
}
@media (max-width: 600px) {
  .all-proj-header { padding: 32px 20px 24px; }
  .all-proj-grid-wrap { padding: 0 20px 48px; }
  .all-proj-title { font-size: 30px; }
  .all-proj-filters { flex-direction: column; gap: 10px; }
  .proj-dropdown { width: 100%; }
  .proj-dropdown-btn { width: 100%; justify-content: space-between; }
  .proj-dropdown-menu { width: 100%; left: 0; right: 0; }
}

/* Back link */
.proj-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 32px 80px 0;
  transition: color 0.2s;
}
.proj-back:hover { color: var(--color-primary); }
.proj-back svg { width: 16px; height: 16px; stroke-width: 2; }

/* Hero */
.proj-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 0 64px;
  align-items: start;
}

.proj-hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-card);
  display: block;
}

.proj-hero-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.proj-status-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #000;
  width: fit-content;
  white-space: nowrap;
}
.proj-status-chip.done    { background: #2cffc7; }
.proj-status-chip.ongoing { background: #ffc139; }
.proj-status-chip.design  { background: #e3ff2c; }

.proj-hero-name {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 -12px;
  line-height: 1.15;
}

.proj-hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
}
.proj-hero-location svg { width: 15px; height: 15px; stroke-width: 1.5; flex-shrink: 0; }

/* Stats strip */
.proj-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 4px 0;
}

.proj-stat-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proj-stat-box span {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}
.proj-stat-box label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Timeline row */
.proj-timeline-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-text-muted);
}
.proj-timeline-row svg { width: 15px; height: 15px; stroke-width: 1.5; flex-shrink: 0; color: var(--color-primary); }
.proj-timeline-row strong { color: var(--color-dark); font-weight: 600; }

/* Features */
.proj-features-heading {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}
.proj-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
}
.proj-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--color-text);
}
.proj-features-list svg { width: 16px; height: 16px; stroke: #1ab266; stroke-width: 2; flex-shrink: 0; }

/* CTA */
.proj-cta-btn {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 16px;
  padding: 16px 32px;
}

/* Divider */
.proj-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 80px 48px;
}

/* Footer */
.proj-footer {
  background: var(--color-dark);
  text-align: center;
  padding: 28px 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.proj-footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.proj-footer a:hover { color: #fff; }

@media (max-width: 900px) {
  .proj-back { padding: 24px 24px 0; }
  .proj-hero { grid-template-columns: 1fr; gap: 28px; padding: 24px 24px 48px; }
  .proj-divider { margin: 0 24px 40px; }
}
@media (max-width: 600px) {
  .proj-hero-name { font-size: 30px; }
  .proj-stats-strip { grid-template-columns: 1fr 1fr; }
  .proj-features-list { grid-template-columns: 1fr; }
}

/* =============================================
   PROJECT DETAIL SECTIONS
   ============================================= */

/* Shared section heading */
.proj-section-heading { font-size: 32px; margin: 6px 0 24px; }

/* ── 1. Overview ── */
.proj-overview {
  padding: 64px 80px;
  background: #fff;
}
.proj-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.proj-overview-desc p {
  font-family: var(--font-ui);
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 14px;
}
.proj-overview-desc p:last-child { margin: 0; }
.proj-specs-table {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.proj-spec-row {
  display: flex;
  align-items: baseline;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
}
.proj-spec-row:last-child { border-bottom: none; }
.proj-spec-row:nth-child(even) { background: #fafafa; }
.proj-spec-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  width: 140px;
  flex-shrink: 0;
}
.proj-spec-value {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
}

/* ── 2. Gallery ── */
.proj-gallery {
  background: #f9f6f2;
  padding: 64px 80px;
}
.proj-gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.proj-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.proj-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  display: block;
}
.proj-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.proj-gallery-item:hover img { transform: scale(1.05); }
.proj-gallery-grid--single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

/* Lightbox */
.proj-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.proj-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.proj-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}
.proj-lb-close,
.proj-lb-prev,
.proj-lb-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.proj-lb-close:hover,
.proj-lb-prev:hover,
.proj-lb-next:hover { background: rgba(255,255,255,0.28); }
.proj-lb-close { top: 24px; right: 24px; }
.proj-lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.proj-lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.proj-lb-close svg,
.proj-lb-prev svg,
.proj-lb-next svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2; }

/* ── 3. Highlights ── */
.proj-highlights {
  padding: 64px 80px;
  background: #fff;
}
.proj-highlights-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.proj-highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.proj-highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  background: #fff;
}
.proj-highlight-chip svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── 4. Build Process ── */
.proj-process {
  background: #fffaf3;
  padding: 64px 80px;
}
.proj-process-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.proj-process-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 48px;
  position: relative;
}
.proj-process-track::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
.proj-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.proj-step-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.proj-step-node svg { width: 14px; height: 14px; stroke: var(--color-border); stroke-width: 2.5; }
.proj-process-step[data-done="true"] .proj-step-node {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.proj-process-step[data-done="true"] .proj-step-node svg { stroke: #fff; }
.proj-step-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}
.proj-process-step[data-done="true"] .proj-step-label { color: var(--color-dark); }

/* ── 5. Testimonial ── */
.proj-testimonial {
  background: #170000;
  padding: 64px 80px;
}
.proj-testimonial-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.proj-testimonial .section-heading { color: #fff; }
.proj-testimonial .section-sub { color: #888; }
.proj-testi-card {
  display: flex;
  gap: 50px;
  background: #fff;
  border-radius: 10px;
  padding: 50px 60px;
  align-items: stretch;
}

/* ── 6. Related Projects ── */
.proj-related {
  padding: 64px 80px 80px;
  background: #f9f6f2;
}
.proj-related-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.proj-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* ── Detail sections responsive ── */
@media (max-width: 960px) {
  .proj-overview,
  .proj-gallery,
  .proj-highlights,
  .proj-process,
  .proj-testimonial,
  .proj-related { padding: 48px 40px; }
  .proj-overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .proj-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-related-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-testi-card { flex-direction: column; gap: 28px; padding: 32px; }
}
@media (max-width: 600px) {
  .proj-overview,
  .proj-gallery,
  .proj-highlights,
  .proj-process,
  .proj-testimonial,
  .proj-related { padding: 40px 20px; }
  .proj-gallery-grid { grid-template-columns: 1fr; }
  .proj-related-grid { grid-template-columns: 1fr; }
  .proj-step-label { font-size: 9px; letter-spacing: 0; }
  .proj-section-heading { font-size: 26px; }
}

/* =====================
   7G PROMISE
   ===================== */
.promise {
  padding: 72px 80px 80px;
  background: var(--color-bg);
}
.promise-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.promise-header {
  text-align: center;
  max-width: 808px;
}
.promise-header .section-sub {
  text-align: center;
}

.promise-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.promise-row--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 75%;
  margin: 0 auto;
}

.g-card {
  background: #fff;
  border: 1px solid #f9ebd7;
  border-radius: 16px;
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 440px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.g-card.g-visible {
  opacity: 1;
  transform: translateY(0);
}

.g-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.g-icon {
  width: 42px;
  height: 42px;
  object-fit: cover;
  display: block;
}

.g-title {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: #120000;
  line-height: 1.4;
  margin: 0;
}

.g-divider {
  height: 1px;
  background: #dedede;
  flex-shrink: 0;
}

.g-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.g-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
.g-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.g-spacer { flex: 1; }

.g-number {
  font-family: Impact, 'Arial Narrow', sans-serif;
  font-size: 90px;
  line-height: 1;
  opacity: 0.2;
  background: linear-gradient(to bottom, var(--nc, #e53935), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

@media (max-width: 1100px) {
  .promise { padding: 80px 40px; }
  .promise-row { grid-template-columns: repeat(2, 1fr); }
  .promise-row--3 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}
@media (max-width: 600px) {
  .promise { padding: 60px 20px; }
  .promise-row,
  .promise-row--3 { grid-template-columns: 1fr; max-width: 100%; }
}

/* =====================
   FOUNDERS
   ===================== */
.founders {
  background: #fffaf3;
  padding: 100px 80px;
}
.founders-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.founders-header {
  text-align: center;
  max-width: 808px;
}
.founders-eyebrow { color: var(--color-primary); }
.founders-heading { color: var(--color-dark); }
.founders-sub     { color: #555; text-align: center; }

.founders-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.founder-card {
  position: relative;
  width: 412px;
  height: 412px;
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.founder-card:hover .founder-img { transform: scale(1.04); }

.founder-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  padding: 30px;
}

.founder-name {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.founder-role {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0;
}

@media (max-width: 900px) {
  .founders { padding: 80px 40px; }
  .founder-card { width: 100%; max-width: 412px; height: 360px; }
}
@media (max-width: 600px) {
  .founders { padding: 60px 20px; }
  .founder-card { height: 320px; }
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  background: #170000;
  padding: 72px 80px;
  overflow: hidden;
}
.testimonials .section-heading { color: #fff; }
.testimonials .section-sub { color: #888; }
.testi-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.testi-header {
  text-align: center;
  max-width: 808px;
}

/* Slider */
.testi-slider-wrap {
  width: 100%;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Card */
.testi-card {
  display: flex;
  gap: 50px;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  padding: 50px 60px;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: hidden;
}

.testi-photo {
  width: 280px;
  flex-shrink: 0;
  min-height: 320px;
  border-radius: 4px;
  overflow: hidden;
}
.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.testi-content {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testi-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  max-width: 100%;
}

.testi-stars {
  display: flex;
  gap: 4px;
}
.star-icon {
  width: 17px;
  height: 17px;
  stroke: #f59e0b;
  fill: #f59e0b;
  stroke-width: 1.5;
}

.testi-quote {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: #111;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  quotes: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-author-info strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.testi-author-info span {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
.testi-project {
  color: var(--color-primary) !important;
}

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 16px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.testi-dot.active {
  background: rgba(255,255,255,0.2);
  width: 40px;
  position: relative;
  overflow: hidden;
}
.testi-dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--color-primary);
  border-radius: inherit;
  animation: dot-progress 6s linear forwards;
}
@keyframes dot-progress {
  from { width: 0; }
  to { width: 100%; }
}

.testi-nav {
  display: flex;
  gap: 12px;
}
.testi-prev,
.testi-next {
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.testi-prev {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.testi-prev:hover { background: rgba(255,255,255,0.1); }
.testi-next {
  background: var(--color-primary);
  color: #fff;
}
.testi-next:hover { background: var(--color-primary-hover); }
.testi-prev svg,
.testi-next svg { width: 18px; height: 18px; stroke-width: 2; }

@media (max-width: 900px) {
  .testimonials { padding: 80px 24px; }
  .testi-card { flex-direction: column; height: auto; gap: 24px; padding: 32px; }
  .testi-photo { width: 100%; height: 200px; }
}
@media (max-width: 600px) {
  .testimonials { padding: 60px 16px; }
  .testi-card { padding: 24px; }
}

/* =====================
   FAQ
   ===================== */
.faq {
  background: #f9ebd7;
  padding: 72px 80px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-accordion {
  max-width: 1080px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid #dedede;
}

.faq-item:last-child {
  border-bottom: 1px solid #dedede;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
}

.faq-q {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  flex-shrink: 0;
  width: 36px;
}

.faq-text {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: #120000;
  flex: 1;
  line-height: 1.45;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #111;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  padding: 0 30px 24px 51px;
}

@media (max-width: 900px) {
  .faq { padding: 80px 24px; }
  .faq-text { font-size: 16px; }
}
@media (max-width: 600px) {
  .faq { padding: 60px 16px; }
  .faq-q { font-size: 18px; }
  .faq-text { font-size: 15px; }
  .faq-answer p { padding-left: 42px; }
}

/* =====================
   CTA
   ===================== */
.cta {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.88) 55%, #000 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 24px;
  max-width: 800px;
  width: 100%;
}

.cta-eyebrow {
  color: var(--color-primary);
  margin-bottom: 16px;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
}

.cta-sub {
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0 0 36px;
  max-width: 550px;
}

.cta-btn {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.cta-trust {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  width: 100%;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: #ffc139;
}

.cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cta-heading { font-size: 48px; }
  .cta-trust { gap: 24px; }
}
@media (max-width: 600px) {
  .cta-heading { font-size: 36px; }
  .cta-trust { flex-direction: column; gap: 14px; }
}

/* =====================
   CONTACT
   ===================== */
.contact {
  background: var(--color-bg);
  padding: 72px 80px;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 110px;
  align-items: flex-start;
}

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

.contact-heading {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 600;
  line-height: 0.91;
  color: #111;
  margin: 0;
}

.contact-heading-accent {
  font-size: 80px;
  color: var(--color-primary);
  display: block;
}

.contact-sub {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #555;
  margin: 24px 0 0;
  text-align: left;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: #f9ebd7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.contact-icon-box svg { width: 18px; height: 18px; }

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.contact-detail-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail-value {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: #111;
  line-height: 1.45;
}

.contact-link { color: #3366e5; text-decoration: underline; }

/* Form card */
.contact-form-card {
  width: 500px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 12px;
  box-shadow: 0 0 21px rgba(0,0,0,0.14);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-title {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin: 0;
  text-align: center;
  padding-right: 40px;
  padding-left: 40px;
}

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

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.form-required { color: var(--color-primary); font-weight: 700; font-size: 12px; }

.form-field input,
.form-field select {
  width: 100%;
  height: 48px;
  background: #f9f9f7;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 14px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: #111;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}

.form-field input::placeholder { color: #888; }
.form-field input:focus,
.form-field select:focus {
  border: 1.5px solid #f4a0a0;
  background: #fff;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f7;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 14px;
  height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.phone-input-wrap:focus-within {
  border: 1.5px solid #f4a0a0;
  background: #fff;
}

.phone-prefix {
  font-family: var(--font-ui);
  font-size: 15px;
  color: #888;
  flex-shrink: 0;
}

.phone-divider { width: 1px; height: 20px; background: #e5e7eb; flex-shrink: 0; }

.phone-input-wrap input {
  border: none;
  background: transparent;
  padding: 0;
  height: auto;
  flex: 1;
  border-radius: 0;
}

.phone-input-wrap input:focus { border-color: transparent; }

.select-wrap {
  position: relative;
}

.select-wrap select { padding-right: 36px; cursor: pointer; }

.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #555;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
  height: 56px;
  font-size: 16px;
  margin-top: 4px;
}

.input-error {
  border-color: var(--color-primary) !important;
}

.form-error {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--color-primary);
  margin-top: 2px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 0;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  color: #22c55e;
  stroke-width: 1.5;
}

.form-success h4 {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.form-success p {
  font-family: var(--font-ui);
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.form-privacy {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #555;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .contact-inner { gap: 60px; }
  .contact-heading { font-size: 44px; }
  .contact-heading-accent { font-size: 60px; }
}
@media (max-width: 900px) {
  .contact { padding: 80px 24px; }
  .contact-inner { flex-direction: column; gap: 48px; }
  .contact-form-card { width: 100%; }
}
@media (max-width: 600px) {
  .contact { padding: 60px 16px; }
  .contact-heading { font-size: 36px; }
  .contact-heading-accent { font-size: 48px; }
}
@media (max-width: 480px) {
  .contact-heading        { font-size: 28px; }
  .contact-heading-accent { font-size: 36px; }
  .contact-form-card      { padding: 24px 16px; }
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #0d0d0d;
  padding-top: 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
}

.footer-logo-link { display: inline-block; }
.footer-logo { height: 40px; width: auto; object-fit: contain; }

.footer-tagline {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.footer-social:hover { border-color: rgba(255,255,255,0.3); }
.footer-social img { width: 16px; height: 16px; object-fit: contain; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 160px;
}

.footer-col-heading {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0 104px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

.footer-credit {
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.3px;
}

@media (max-width: 1100px) {
  .footer-inner { padding: 0 40px 48px; gap: 32px; }
}
@media (max-width: 900px) {
  .footer-inner { flex-wrap: wrap; padding: 0 24px 40px; }
  .footer-brand { max-width: 100%; flex-basis: 100%; }
  .footer-bottom { padding: 0 24px; }
}
@media (max-width: 600px) {
  .footer-col { min-width: calc(50% - 24px); flex-basis: calc(50% - 24px); }
  .footer-bottom { flex-direction: column; height: auto; gap: 8px; padding: 16px 24px; text-align: center; }
}

/* =====================
   CONTACT MODAL
   ===================== */
.cf-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cf-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.cf-modal-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.cf-modal-backdrop.open .cf-modal-card {
  transform: translateY(0);
}

.cf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.2s;
}

.cf-modal-close:hover { background: #e8e8e8; }
.cf-modal-close svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
  .cf-modal-card { padding: 28px 20px; }
}

/* =====================
   SEO BLOCK
   ===================== */
.seo-block {
  background: #000;
  padding: 40px 104px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-heading {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: #b8b8b8;
  margin: 0;
  line-height: 1.5;
}

.seo-divider {
  border: none;
  border-top: 1px solid #383838;
  margin: 0;
}

.seo-text {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.83;
  margin: 0;
}

@media (max-width: 900px) { .seo-block { padding: 32px 24px; } }
@media (max-width: 600px) { .seo-block { padding: 24px 16px; } }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ===== CAREERS PAGE ===== */
.careers-header {
  padding: 48px 0 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.careers-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.careers-sub {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 800px;
  line-height: 1.7;
}

.careers-section {
  padding: 0 0 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.careers-panels {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.careers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.careers-list-item {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.careers-list-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.careers-list-chevron {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s;
  display: none;
}
.careers-list-item.active .careers-list-chevron { transform: rotate(180deg); }
.careers-list-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.careers-list-item.active {
  background: var(--color-dark);
  border-color: var(--color-dark);
}
.careers-list-item.active .careers-list-title { color: #fff; }
.careers-list-item.active .career-chip {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
.careers-list-title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
}
.career-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.career-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: #f5f5f5;
  border-radius: 20px;
  padding: 3px 10px;
}
.career-chip svg { width: 12px; height: 12px; }
.careers-detail-pane {
  display: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
}
.careers-detail-pane.active { display: block; }
.careers-detail-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.career-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
}
.career-list {
  padding: 12px 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.career-list li {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.career-req {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .careers-header { padding: 40px 30px 32px; }
  .careers-section { padding: 0 30px 60px; }
  .careers-title { font-size: 40px; }
}
@media (max-width: 768px) {
  .careers-header  { padding: 32px 20px 28px; }
  .careers-section { padding: 0 20px 48px; }
  .careers-panels  { display: flex; flex-direction: column; gap: 0; }
  .careers-list    { position: static; gap: 0; width: 100%; }
  .careers-list-item {
    width: 100%;
    border-radius: 0;
    border-bottom: none;
  }
  .careers-list-item:first-child { border-radius: 10px 10px 0 0; }
  .careers-list-item:last-child  { border-bottom: 1px solid var(--color-border); border-radius: 0 0 10px 10px; }
  .careers-list-item.active      { border-radius: 10px 10px 0 0; border-bottom: none; }
  .careers-list-chevron          { display: block; }
  .careers-list-item.active .careers-list-title { color: #fff; }
  .careers-detail { display: none; }
  .careers-detail-pane {
    width: 100%;
    border-radius: 0 0 10px 10px;
    border-top: none;
    padding: 24px;
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .careers-header { padding: 28px 20px 24px; }
  .careers-section { padding: 0 20px 48px; }
  .careers-title { font-size: 32px; }
}

/* ===== CAREERS APPLY SECTION ===== */
.careers-apply-section {
  background: #f9f6f2;
  padding: 80px 0;
}
.careers-apply-banner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.careers-apply-hook {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.careers-apply-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}
.careers-apply-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 32px;
}
.careers-apply-cta { display: inline-flex; }
@media (max-width: 600px) {
  .careers-apply-section { padding: 48px 0; }
  .careers-apply-heading { font-size: 28px; }
}

/* ── File upload field ── */
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px dashed var(--color-border);
  border-radius: 10px;
  padding: 20px 16px;
  cursor: pointer;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.file-upload-label:hover { border-color: var(--color-primary); background: #f9f6f2; }
.file-upload-label.has-file { border-color: var(--color-primary); background: #f9f6f2; }
.file-upload-icon { width: 22px; height: 22px; stroke: var(--color-primary); stroke-width: 2; }
.file-upload-text { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--color-dark); }
.file-upload-hint { font-family: var(--font-ui); font-size: 11px; color: var(--color-text-muted); }

/* ── Service inner pages ── */
.svc-page-hero {
  background: var(--color-bg);
  padding: 48px 0 52px;
}
.svc-page-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
.svc-page-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 10px;
}
.svc-page-hero-heading {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 640px;
}
.svc-page-hero-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 28px;
}

/* Includes section */
.svc-includes {
  padding: 72px 0;
  background: #fff;
}
.svc-includes-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.svc-includes-left h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.svc-includes-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: #f9f6f2;
  border-radius: 12px;
}
.svc-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-feature-icon svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2; }
.svc-feature-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 3px;
}
.svc-feature-text span {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Process section */
.svc-process {
  padding: 72px 0;
  background: #f9f6f2;
}
.svc-process-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.svc-process-header { text-align: center; margin-bottom: 52px; }
.svc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  position: relative;
}
.svc-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}
.svc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.svc-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(163,120,60,0.25);
}
.svc-step-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.svc-step-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Project showcase */
.svc-projects {
  padding: 72px 0;
  background: #fff;
}
.svc-projects-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.svc-projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-includes-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-page-hero-heading { font-size: 34px; }
  .svc-steps::before { display: none; }
  .svc-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .svc-page-hero-heading { font-size: 28px; }
  .svc-page-hero-sub { font-size: 15px; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: 1fr; gap: 20px; }
  .svc-includes { padding: 48px 0; }
  .svc-process { padding: 48px 0; }
  .svc-projects { padding: 48px 0; }
}

/* =====================
   GLOBAL MOBILE (≤390px)
   ===================== */
@media (max-width: 390px) {
  .services    { padding-left: 12px; padding-right: 12px; }
  .portfolio   { padding-left: 12px; padding-right: 12px; }
  .promise     { padding-left: 12px; padding-right: 12px; }
  .faq         { padding-left: 12px; padding-right: 12px; }
  .contact     { padding-left: 12px; padding-right: 12px; }
  .founders    { padding-left: 12px; padding-right: 12px; }
  .testimonials { padding-left: 12px; padding-right: 12px; }
  .hero-inner  { padding-left: 16px; padding-right: 16px; }
}
