/* ── ROOT VARIABLES ── */
:root {
  --sun: #F5A800;
  --dark: #1A1A2E;
  --navy: #0F2A4A;
  --sky: #29B6F6;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  margin:0;
  padding:0;
  
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* ── PAGE SYSTEM ── */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* =========================
   NAVBAR
========================= */

#navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    padding:18px 35px;

    background:transparent;

    transition:
        padding .45s ease,
        transform .45s ease,
        background .45s ease;
}


/* Floating navbar */

.nav-inner{

    max-width:1300px;

    margin:auto;

    padding:14px 26px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:rgba(26,26,46,.45);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    transition:all .45s ease;

    box-shadow:
        0 10px 35px rgba(0,0,0,.15);
}



/* AFTER SCROLL */

#navbar.scrolled{

    padding:0;

}

#navbar.scrolled .nav-inner{

    max-width:100%;

    width:100%;

    border-radius:0;

    border:none;

    padding:16px 45px;

    background:#1A1A2E;

    backdrop-filter:none;

    -webkit-backdrop-filter:none;

    box-shadow:

        0 8px 30px rgba(0,0,0,.35);

}


/* =========================
   LINKS
========================= */

.nav-link{

    font-family:'Inter',sans-serif;

    font-size:.78rem;

    font-weight:600;

    letter-spacing:.08em;

    text-transform:uppercase;

    color:rgba(255,255,255,.75);

    padding:8px 12px;

    border-radius:8px;

    transition:.3s;

    cursor:pointer;

    white-space:nowrap;

}

.nav-link:hover{

    color:#F5A800;

    background:rgba(245,168,0,.12);

}

.nav-link.active{

    color:#F5A800;

    background:rgba(245,168,0,.18);

}


/* =========================
   BUTTON
========================= */

.btn-gold{

    background:#F5A800;

    color:#1A1A2E;

    padding:13px 22px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;

}

.btn-gold:hover{

    transform:translateY(-2px);

    box-shadow:

        0 12px 25px rgba(245,168,0,.35);

}


/* =========================
   MOBILE
========================= */
#mobileMenu{
    margin-top: 90px;
}

@media(max-width:1024px){

#navbar{

padding:12px;

}

.nav-inner{

padding:12px 18px;

}

#navbar.scrolled .nav-inner{

padding:12px 18px;

}

}

/* Why Choose Section */
.why-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: #fff;
}

.why-wave-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12rem;
  background: linear-gradient(to bottom, transparent, #FFF8E7 60%);
  z-index: 0;
}

.why-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}


.why-content {
  position: relative;
  z-index: 10;
}

.why-feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #EFF6FF;
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.why-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-feature-icon.gold  { background: #FACC15; }
.why-feature-icon.blue  { background: #0EA5E9; }
.why-feature-icon.green { background: #10B981; }

.why-feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #1f2937;
}

.why-feature-desc {
  font-size: 0.75rem;
  color: #9ca3af;
}

.why-image-wrap {
  position: relative;
}

.why-image-wrap img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-badge-exp {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid #f3f4f6;
}

.why-badge-exp .badge-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  color: #EAB308;
}

.why-badge-exp .badge-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.why-badge-projects {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #FACC15;
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.why-badge-projects .badge-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: #1A1A2E;
}

.why-badge-projects .badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(26,26,46,0.7);
}

/* ── SERVICES SECTION BACKGROUND ── */
.services-section {
  position: relative;
  overflow: hidden;
  background: #fffdf5;
  padding: 5rem 0 4rem;
}

/* Dot grid - left side */
.services-section::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #F5A800 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.35;
  z-index: 0;
}

/* Dot grid - right side */
.services-section::after {
  content: '';
  position: absolute;
  bottom: 100px;
  right: 40px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #F5A800 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.25;
  z-index: 0;
}

/* Large faded circle - top left */
.services-bg-circle-tl {
  position: absolute;
  top: -40px;
  left: 60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,0.18) 0%, transparent 70%);
  z-index: 0;
}

/* Large faded circle - bottom right */
.services-bg-circle-br {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,0.15) 0%, transparent 70%);
  z-index: 0;
}

/* Small faded circle - top right area */
.services-bg-circle-tr {
  position: absolute;
  top: 30px;
  right: 120px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,0.12) 0%, transparent 70%);
  z-index: 0;
}

/* Plus/sparkle decorations */
.services-sparkle {
  position: absolute;
  z-index: 0;
  color: #F5A800;
  font-size: 1.2rem;
  opacity: 0.5;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.services-sparkle-1 { top: 60px;  left: 280px; }
.services-sparkle-2 { top: 120px; right: 200px; }
.services-sparkle-3 { bottom: 120px; left: 180px; }
.services-sparkle-4 { bottom: 60px; right: 340px; }

/* Bottom wave */
.services-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  line-height: 0;
}

/* All content above decorations */
.services-content {
  position: relative;
  z-index: 1;
}

/* ── PROCESS SECTION ── */
.process-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 5rem 0;
}

/* Dot grid - left */
.process-section::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 30px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, #F5A800 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  opacity: 0.3;
  z-index: 0;
}

/* Dot grid - right */
.process-section::after {
  content: '';
  position: absolute;
  bottom: 80px;
  right: 30px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, #F5A800 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  opacity: 0.25;
  z-index: 0;
}

.process-content {
  position: relative;
  z-index: 1;
}

/* Floating rounded squares */
.process-geo {
  position: absolute;
  border-radius: 18px;
  background: rgba(245, 168, 0, 0.35);
  z-index: 0;
  pointer-events: none;
}

.process-geo-1 {
  width: z0px;
  height: 80px;
  top: 30px;
  left: 80px;
  transform: rotate(20deg);
  opacity: 0.8;
}

.process-geo-2 {
  width: 55px;
  height: 55px;
  top: 60px;
  right: 80px;
  transform: rotate(35deg);
  opacity: 0.75;
}

.process-geo-3 {
  width: 65px;
  height: 65px;
  bottom: 40px;
  left: 200px;
  transform: rotate(-15deg);
  opacity: 0.7;
}

.process-geo-4 {
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 160px;
  transform: rotate(25deg);
  opacity: 0.7;
}

.process-geo-5 {
  width: 45px;
  height: 45px;
  top: 140px;
  right: 280px;
  transform: rotate(45deg);
  opacity: 0.65;
}

.process-geo-6 {
  width: 50px;
  height: 50px;
  top: 100px;
  left: 340px;
  transform: rotate(-30deg);
  opacity: 0.6;
}

.projects-preview-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 5rem 0;
}

.projects-preview-content {
    position: relative;
    z-index: 2;
}

/* Background wave */
.projects-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.projects-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.btn-gold {
  background: #F5A800;
  color: #1A1A2E;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-gold:hover {
  background: #d99200;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 168, 0, .4);
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline-w:hover {
  background: #fff;
  color: var(--dark);
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #F5A800;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1A1A2E;
}

.section-title-w {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.gold-bar {
  width: 44px;
  height: 4px;
  background: #F5A800;
  border-radius: 2px;
}

.card-shadow {
  box-shadow: 0 4px 20px rgba(15, 42, 74, .1);
}

.card-shadow-hover {
  transition: transform .25s, box-shadow .25s;
}

.card-shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(15, 42, 74, .16);
}

/* ── HERO BG ── */
.hero-overlay {
  background: linear-gradient(105deg, rgba(10, 18, 40, .96) 0%, rgba(15, 30, 60, .88) 45%, rgba(15, 30, 60, .6) 100%);
}
.hero-bg { background-size: cover; background-position: center;background: auto; }
/* ── BREADCRUMB ── */
.breadcrumb {
  background: rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.breadcrumb a,
.breadcrumb span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
}

.breadcrumb a:hover {
  color: #F5A800;
  cursor: pointer;
}

.breadcrumb .cur {
  color: #F5A800;
}

/* ── STAT CARD ── */
.stat-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
}

/* =========================================
   PROCESS SECTION — timeline row above cards
========================================= */

/* The horizontal connecting line — sits behind the circles */
.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(to right, #F5A800, #FFD54F);
  opacity: .7;
  z-index: 0;
}

/* Small endpoint dots at both ends */
.process-endpoint {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F5A800;
  flex-shrink: 0;
  opacity: .8;
}

/* Number circles */
.process-circle {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A800, #FFD54F);
  border: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #1A1A2E;
  box-shadow: 0 8px 28px rgba(245, 168, 0, .4);
  flex-shrink: 0;
}

/* ── CARDS ── */
.process-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid #edf2f7;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
  transition: .35s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, .12);
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FFF7DF, #FFF2C5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 12px 30px rgba(245, 168, 0, .15);
  transition: .3s;
}

.process-card:hover .process-icon {
  transform: scale(1.08) rotate(4deg);
}

.process-label {
  color: #F5A800;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 10px;
}

.process-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #1A1A2E;
  margin-bottom: 14px;
}

.process-card p {
  color: #6B7280;
  line-height: 1.8;
  font-size: .95rem;
}

@media (max-width: 1024px) {
  .process-card {
    padding: 28px 22px;
  }
}

/* ── SERVICE CARD ── */
.service-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(21, 101, 192, .1);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 42, 74, .16);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 168, 0, .15), rgba(41, 182, 246, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* ── REVIEW CARD ── */
.review-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(21, 101, 192, .1);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 4px;
  right: 16px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(245, 168, 0, .12);
  font-weight: 900;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 42, 74, .12);
}

.stars {
  color: #F5A800;
  font-size: .95rem;
  letter-spacing: 2px;
}

/* ── WHO WE ARE SECTION BACKGROUND ── */
.who-we-are-bg {
  position: relative;
  overflow: hidden;
}

.who-we-are-bg::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,0.22) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.who-we-are-dots-tr {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 170px;
  height: 110px;
  background-image: radial-gradient(circle, #F5A800 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.who-we-are-dots-bl {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, #F5A800 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

/* Light blue circle blobs */
.who-we-are-blob-1 {
  position: absolute;
  top: 480px;
  right: 60px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(190, 210, 245, 0.35);
  z-index: 0;
  pointer-events: none;
}

.who-we-are-blob-2 {
  position: absolute;
  top: 460px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(190, 210, 245, 0.4);
  z-index: 0;
  pointer-events: none;
}

.who-we-are-blob-3 {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(190, 210, 245, 0.35);
  z-index: 0;
  pointer-events: none;
}

/* Small floating dot accent near heading */
.who-we-are-accent-dot {
  position: absolute;
  top: 130px;
  left: 660px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(245,168,0,0.4);
  z-index: 0;
  pointer-events: none;
}

/* Faint swirling line arcs */
.who-we-are-swirls {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.who-we-are-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .who-we-are-bg::before {
    width: 300px;
    height: 300px;
    top: -90px;
    left: -100px;
  }
  .who-we-are-dots-tr {
    width: 100px;
    height: 70px;
  }
  .who-we-are-dots-bl {
    width: 140px;
    height: 140px;
  }
  .who-we-are-blob-1,
  .who-we-are-blob-2,
  .who-we-are-blob-3 {
    display: none;
  }
  .who-we-are-accent-dot {
    display: none;
  }
}


/* ── Team Section ────────────────────────────────────────── */
.team-section {
  font-family: inherit;
  box-sizing: border-box;
  margin-bottom: 0;
}

/* Header */
.team-header {
  text-align: center;
  margin-bottom: 32px;
}
.team-eyebrow {
  color: #E8A020;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.team-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #0F1B2D;
  margin: 0 0 10px;
  line-height: 1.15;
}
.team-gold-bar {
  width: 36px;
  height: 3px;
  background: #E8A020;
  margin: 0 auto 14px;
  border-radius: 2px;
}
.team-subtitle {
  color: #5A6070;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Cards row — 3 equal columns to match the reference */
.team-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

/* Individual member card — photo bleeds to the card edge */
.team-member-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 230px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0ede8;
}

.team-avatar-wrap {
  flex: 0 0 42%;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  display: block;
}

.team-avatar-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px 20px;
}

.team-member-role {
  color: #E8A020;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.team-member-divider-wrap {
  margin: 4px 0;
}
.team-member-divider {
  width: 24px;
  height: 2px;
  background: #E8A020;
  border-radius: 1px;
}
.team-member-name {
  font-size: 17px;
  font-weight: 700;
  color: #0F1B2D;
  margin: 0 0 4px;
}
.team-member-desc {
  font-size: 13px;
  color: #5A6070;
  line-height: 1.55;
  margin: 0;
}

/* Blurb card (3rd card) — cream bg, icon circle instead of photo */
.team-blurb-card {
  background: #FDF4E3;
  border: 1px solid #f5e2bb;
  align-items: center;
  padding: 22px 20px;
  gap: 16px;
}
.team-blurb-card .team-member-info {
  padding: 0;
}
.team-blurb-icon-wrap {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E8A020;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-blurb-icon {
  width: 28px;
  height: 28px;
}
.team-blurb-heading {
  font-size: 16px;
  font-weight: 800;
  color: #0F1B2D;
  margin: 0 0 4px;
  line-height: 1.25;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  min-height: 220px;
  max-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.showcase-row.reverse .showcase-text {
  order: 2;
}

.showcase-row.reverse .showcase-media {
  order: 1;
}

.showcase-text {
  padding: 26px 32px;
}

.showcase-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a2b4c;
  margin: 0 0 10px;
}

.showcase-text p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 420px;
}

.showcase-text .btn-gold {
  font-size: 13px;
  padding: 10px 18px;
}

.showcase-media {
  height: 220px;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-media-light {
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.showcase-media-light img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 120px;
  object-fit: contain;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

  .showcase-list {
    gap: 18px;
  }

  .showcase-row {
    grid-template-columns: 120px 1fr;
    min-height: 120px;
    max-height: none;
    border-radius: 14px;
  }

  .showcase-row.reverse .showcase-text,
  .showcase-row.reverse .showcase-media {
    order: initial;
  }

  .showcase-media {
    height: 120px;
  }

  .showcase-media-light {
    padding: 12px;
  }

  .showcase-media-light img {
    max-width: 80%;
    max-height: 70px;
  }

  .showcase-text {
    padding: 14px 16px;
  }

  .showcase-text h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .showcase-text p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .showcase-text .btn-gold {
    font-size: 11px;
    padding: 7px 14px;
  }

}

/*SERVICES CSS*/
/* ── SERVICES SHOWCASE CARDS ── */
/* ── SERVICES SHOWCASE CARDS ── */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-cards-grid {
    display: none;
  }
  .svc-desktop-wrap {
    display: none;
  }
}

/* ── SERVICES MOBILE CAROUSEL ── */
.services-cards-carousel {
  display: none;
  margin-bottom: 4rem;
}

@media (max-width: 640px) {
  .services-cards-carousel {
    display: block;
  }
}

.services-cards-track-wrap {
  overflow: hidden;
  width: 100%;
}

.services-cards-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.services-cards-slide {
  min-width: 100%;
  width: 100%;
  padding: 0 1rem;
  flex-shrink: 0;
  box-sizing: border-box;
}

.services-cards-slide .svc-card {
  width: 100%;
  box-sizing: border-box;
}

.services-cards-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.25rem;
}

.services-cards-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.services-cards-dot.active {
  background: #F5A800;
  transform: scale(1.25);
}

.services-cards-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.82rem;
}

.services-cards-swipe-hint svg {
  opacity: 0.5;
}

.svc-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 24px rgba(15, 42, 74, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(15, 42, 74, 0.13);
}

.svc-card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: visible;
  flex-shrink: 0;
}

.svc-card-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.svc-card-icon {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff8e7;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(245, 168, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.svc-card-body {
  padding: 48px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.svc-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A2E;
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-card-desc {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #F5A800;
  background: none;
  border: none;
  border-bottom: 2px solid #F5A800;
  padding-bottom: 2px;
  cursor: pointer;
  transition: color .2s, gap .2s;
  width: fit-content;
  margin: 0 auto;
}

.svc-card-link:hover {
  color: #d99200;
  gap: 8px;
}


/* ── SERVICE DETAIL POPUP MODAL (Learn More) ── */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 46, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* extra top padding keeps the card clear of the fixed navbar */
  padding: calc(88px + 1rem) 1.5rem 1.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}

.svc-modal-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}

.svc-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(15, 42, 74, 0.25);
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 88px - 2.5rem);
  overflow: hidden; /* clips the inner scroll area so the corners stay rounded */
  transform: scale(0.95) translateY(12px);
  transition: transform .3s ease;
}

.svc-modal-overlay.open .svc-modal {
  transform: scale(1) translateY(0);
}

/* Actual scrolling happens in here, not on .svc-modal, so the native
   scrollbar (and its up/down arrow buttons on Windows/Chrome/Edge)
   never overlaps the rounded corner. */
.svc-modal-scroll {
  padding: 1.75rem 2rem;
  max-height: calc(100vh - 88px - 2.5rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

.svc-modal-scroll::-webkit-scrollbar {
  width: 8px;
}

.svc-modal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.svc-modal-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 8px;
}

.svc-modal-scroll::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.svc-detail-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}

.svc-detail-close:hover {
  background: #e5e7eb;
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 700px) {
  .svc-modal {
    border-radius: 20px;
  }
  .svc-modal-scroll {
    padding: 1.5rem 1.25rem;
  }
  .svc-detail-grid {
    grid-template-columns: 1fr;
  }
}

.svc-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.svc-detail-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #fff8e7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-detail-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #1A1A2E;
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

@media (max-width: 700px) {
  .svc-detail-title {
    font-size: 1.1rem;
  }
}

.svc-detail-subtitle {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.45;
}

.svc-detail-bar {
  width: 36px;
  height: 3px;
  background: #F5A800;
  border-radius: 2px;
  margin: 0.6rem 0 0.85rem;
}

.svc-detail-desc {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.svc-detail-included-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1A1A2E;
  margin-bottom: 0.6rem;
}

.svc-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.svc-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.3;
}

.svc-detail-list li svg {
  flex-shrink: 0;
}

.svc-detail-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}

.svc-detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .svc-detail-img-wrap {
    height: 200px;
  }
}

.svc-detail-cta {
  margin-top: 1.25rem;
  background: #fff8e7;
  border-radius: 14px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.svc-detail-cta-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.svc-detail-cta-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(245, 168, 0, 0.2);
}

.svc-detail-cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1A1A2E;
}

.svc-detail-cta-sub {
  font-size: 0.8rem;
  color: #6b7280;
}

@media (max-width: 700px) {
  .svc-detail-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .svc-detail-cta-left {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .svc-detail-cta .btn-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/*WHY GO SOLAR*/
/* ── WHY GO SOLAR REDESIGN ── */
.solar-benefits-section {
  background: #f0f4fb;
  padding: 3.5rem 0; /* removed side padding — parent already handles it */
  overflow: hidden;  /* prevents any child from bleeding out */
  border-radius: 24px; /* optional: rounds the blue-gray block nicely */
  margin-bottom: 4rem;
}

.solar-benefits-header {
  text-align: center;
  margin-bottom: 2rem;
}

.solar-benefits-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1A1A2E;
  margin-bottom: 0.5rem;
}

.solar-benefits-header .gold-bar {
  margin: 0 auto 1rem;
}

.solar-benefits-header p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

.solar-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .solar-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solar-benefits-grid {
    display: none;
  }
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf5;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(15, 42, 74, 0.06);
  transition: transform .25s, box-shadow .25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 42, 74, 0.11);
}

.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff8ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1A1A2E;
  margin-bottom: 0.4rem;
}

.benefit-bar {
  width: 24px;
  height: 3px;
  background: #F5A800;
  border-radius: 2px;
  margin-bottom: 0.65rem;
}

.benefit-desc {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* ── MOBILE CAROUSEL ── */
.solar-benefits-carousel {
  display: none;
}

@media (max-width: 640px) {
  .solar-benefits-carousel {
    display: block;
  }
}

.solar-benefits-track-wrap {
  overflow: hidden;
  width: 100%; /* removes the padding that was breaking the width calc */
}

.solar-benefits-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.solar-benefits-slide {
  min-width: 100%;
  width: 100%;
  padding: 0 1rem; /* padding moved here, inside the slide not the wrapper */
  flex-shrink: 0;
  box-sizing: border-box;
}

.solar-benefits-slide .benefit-card {
  width: 100%;
  box-sizing: border-box;
}

.solar-benefits-slide .benefit-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.solar-benefits-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.solar-benefits-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.solar-benefits-dot.active {
  background: #F5A800;
  transform: scale(1.25);
}

.solar-benefits-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  color: #9ca3af;
  font-size: 0.82rem;
}

.solar-benefits-swipe-hint svg {
  opacity: 0.5;
}
/*WHY GO SOLAR*/

/* ── Banner ───────────────────────────────────────────────── */
.team-banner {
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0ede8;
  margin-top: 4px;
  align-items: stretch; /* fine to keep — content side still fills the row */
}

.team-banner-photo {
  height: 320px;      /* fixed height instead of min-height + height:100% */
  max-height: 320px;
  overflow: hidden;
}

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

.team-banner-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-banner-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  display: block;
}
.team-banner-title {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: #0F1B2D;
  margin: 0 0 8px;
}
.team-banner-bar {
  width: 32px;
  height: 3px;
  background: #E8A020;
  border-radius: 2px;
  margin-bottom: 10px;
}
.team-banner-text {
  font-size: 13px;
  color: #5A6070;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Pillars */
.team-pillars {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.team-pillar {
  flex: 1;
  text-align: center;
  padding: 0 6px;
}
.team-pillar-divider {
  width: 1px;
  height: 64px;
  background: #E3E0D8;
  margin-top: 4px;
  flex-shrink: 0;
}
.pillar-icon {
  width: 22px;
  height: 22px;
  margin: 0 auto 4px;
  display: block;
}
.pillar-label {
  font-size: 12px;
  font-weight: 700;
  color: #0F1B2D;
  margin: 0 0 3px;
}
.pillar-desc {
  font-size: 11px;
  color: #5A6070;
  line-height: 1.4;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .team-cards-row {
    grid-template-columns: 1fr;
  }
  .team-member-card:not(.team-blurb-card) {
    flex-direction: column;
  }
  .team-avatar-wrap {
    flex: 0 0 200px;
  }
  .team-banner {
    grid-template-columns: 1fr;
  }
  .team-banner-photo {
    height: 200px;
  }
  .team-banner-content {
    padding: 22px 20px;
  }
}

/* ── PROJECT CARD ── */
.project-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21, 101, 192, .08);
  box-shadow: 0 4px 20px rgba(15, 42, 74, .07);
  transition: transform .25s, box-shadow .25s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 42, 74, .14);
}

.project-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.project-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.project-card:hover .project-card-img {
  transform: scale(1.04);
}

/* Gold badge — top-left of image */
.project-kw-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #F5A800;
  color: #1A1A2E;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 5px 14px;
  border-radius: 8px;
}

.project-card-body {
  padding: 22px 22px 24px;
}

.project-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.project-card-location {
  font-size: .82rem;
  color: #6B7280;
  margin-bottom: 0;
}

.project-card-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 16px 0;
}

/* Spec list */
.project-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-card-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: #374151;
}

.spec-icon {
  font-size: 1rem;
  color: #F5A800;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.project-card-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: #F5A800;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s, color .2s;
}

.project-card-link:hover {
  color: #d99200;
  gap: 10px;
}

/* Keep old .project-badge for other pages that still use it */
.project-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(245, 168, 0, .15), rgba(41, 182, 246, .1));
  color: #1565C0;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(21, 101, 192, .15);
}

/* ── TIMELINE ── */
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F5A800;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(245, 168, 0, .3);
  flex-shrink: 0;
}

.timeline-line {
  width: 2px;
  background: linear-gradient(to bottom, #F5A800, rgba(245, 168, 0, .2));
  flex-shrink: 0;
}

/* ── TEAM ── */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(21, 101, 192, .1);
  transition: transform .2s, box-shadow .2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 42, 74, .14);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #F5A800 0%, #FFB830 50%, #F5A800 100%);
}

.cta-inner {
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .cta-inner {
    padding: 4rem 1.5rem;
  }
}

.cta-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-mobile-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-sun-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cta-mobile-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #1A1A2E;
  margin: 0 0 2px;
}

.cta-mobile-sub {
  font-size: 0.82rem;
  color: rgba(26, 26, 46, 0.7);
  margin: 0;
}

.cta-mobile-btn {
  width: 100%;
  background: #1A1A2E;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.cta-mobile-btn:hover {
  background: #0F2A4A;
}

/* ── MOBILE FOOTER ── */
.footer-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 1rem;
}

.footer-mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-mobile-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.footer-mobile-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.75rem 0;
}

.footer-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-mobile-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-mobile-contact-item svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-mobile-socials {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  padding: 0.25rem 0;
}

.footer-mobile-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.footer-mobile-social-btn:hover {
  background: #F5A800;
  color: #1A1A2E;
}

.footer-mobile-copy {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  padding-top: 0.25rem;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  transform: translateX(100%);
  transition: transform .35s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── FORM ── */
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: #1A1A2E;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-input:focus {
  border-color: #F5A800;
  box-shadow: 0 0 0 3px rgba(245, 168, 0, .15);
}

.form-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
  margin-bottom: 5px;
}

/* ── WHY-CARD STRIP ── */
.why-strip {
  background: linear-gradient(135deg, #0F2A4A 0%, #1A1A2E 100%);
  border-top: 3px solid #F5A800;
}

.why-item {
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 22px;
}

.why-item:last-child {
  border-right: none;
}
/**/
/**/
/* ── FILTER TABS ── */
.filter-tab {
  padding: 7px 18px;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  cursor: pointer;
  transition: all .2s;
  border: 1.5px solid #e5e7eb;
  color: #6b7280;
}

.filter-tab.active,
.filter-tab:hover {
  background: #F5A800;
  color: #1A1A2E;
  border-color: #F5A800;
}

/* ── CONTACT MAP PLACEHOLDER ── */
.map-placeholder {
  background: linear-gradient(135deg, #e8f4ff, #dbeafe);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.map-pin {
  background: #F5A800;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 168, 0, .5);
}

.map-pin::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
}

/* ── WARRANTY SUPPORT ── */
.support-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(21, 101, 192, .1);
  padding: 22px;
  text-align: center;
  transition: transform .22s, box-shadow .22s;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 42, 74, .12);
}

/* ── PRODUCT CARD ── */
.product-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(21, 101, 192, .1);
  padding: 20px;
  transition: transform .22s, box-shadow .22s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 42, 74, .14);
}

/* ── VALUES ── */
.value-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: background .22s, border-color .22s;
}

.value-card:hover {
  background: rgba(245, 168, 0, .07);
  border-color: rgba(245, 168, 0, .3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .why-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .why-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .btn-gold,
  .btn-outline-w {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   MOBILE LAYOUTS
══════════════════════════════════════ */

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Mobile service card — horizontal layout like the reference */
.service-card-mobile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(21, 101, 192, .1);
  padding: 1rem;
  transition: transform .25s, box-shadow .25s;
}

.service-card-mobile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 42, 74, .12);
}

.service-card-mobile-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,168,0,.15), rgba(41,182,246,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.service-card-mobile-text {
  flex: 1;
}

.service-card-mobile-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1A1A2E;
  margin-bottom: 4px;
}

.service-card-mobile-desc {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  /* On desktop revert to vertical card layout */
  .service-card-mobile {
    flex-direction: column;
    gap: 0;
  }

  .service-card-mobile-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .service-card-mobile-title {
    font-size: 0.875rem;
    margin-bottom: 6px;
  }
}

/* ── PROCESS MOBILE TIMELINE ── */
.process-mobile-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-left: 1rem;
}

.process-mobile-timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, #F5A800, rgba(245,168,0,.2));
  z-index: 0;
}

.process-mobile-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.process-mobile-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A800, #FFD54F);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1A1A2E;
  box-shadow: 0 6px 20px rgba(245,168,0,.4);
  flex-shrink: 0;
}

.process-mobile-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  padding: 1rem;
  flex: 1;
}

.process-mobile-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.process-mobile-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1A1A2E;
  margin: 4px 0 6px;
}

.process-mobile-desc {
  font-size: 0.78rem;
  color: #6B7280;
  line-height: 1.5;
}
/*PAST PROJECTS CAROUSEL*/
/* ── PROJECT CARD CAROUSEL ── */
.project-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px; /* explicit height needed since images are now absolutely positioned */
}

.project-carousel-imgs {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-carousel-imgs .project-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.45s ease, transform 0.5s ease;
  pointer-events: none;
}

.project-carousel-imgs .project-card-img.active {
  opacity: 1;
  pointer-events: auto;
}

.project-card:hover .project-carousel-imgs .project-card-img.active {
  transform: scale(1.04);
}

.project-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 6;
  transition: background 0.2s ease, transform 0.2s ease;
}

.project-carousel-arrow:hover {
  background: rgba(245, 168, 0, 0.9);
  transform: translateY(-50%) scale(1.08);
}

.project-carousel-arrow.left { left: 8px; }
.project-carousel-arrow.right { right: 8px; }

.project-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 6;
}

.project-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s ease;
}

.project-carousel-dot.active {
  background: #f5c518;
  width: 16px;
  border-radius: 3px;
}

.project-img-caption {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 6;
  letter-spacing: 0.02em;
}

/* keep the mobile wrap height in sync with your existing mobile image height */
@media (max-width: 768px) {
  .project-card-img-wrap {
    height: 160px;
  }
}

/*DESKTOP FULL VIEW */
/* ══════════════════════════════════════
   PROJECT DETAIL MODAL — DESKTOP SPLIT VIEW
══════════════════════════════════════ */
.proj-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(88px + 1rem) 1.5rem 1.5rem;
}

.proj-modal-desktop {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 95vw;
  max-width: 1280px;
  height: 82vh;
  max-height: 780px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

/* ── LEFT PANEL ── */
.proj-modal-left {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid #f0f0f0;
}

.proj-modal-left-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
  flex-shrink: 0;
}

.proj-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.proj-modal-close:hover {
  background: #e5e7eb;
}

.proj-modal-nav-btns {
  display: flex;
  gap: 8px;
}

.proj-modal-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #1a1a2e;
  transition: all 0.2s;
}

.proj-modal-nav-btn:hover {
  background: #f5a800;
  border-color: #f5a800;
  color: #fff;
}

.proj-modal-left-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

.proj-modal-left-body::-webkit-scrollbar {
  width: 6px;
}
.proj-modal-left-body::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 6px;
}

.proj-modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #1a1a2e;
  line-height: 1.25;
  margin: 0.85rem 0 0.4rem;
}

.proj-modal-loc {
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.proj-modal-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 1.1rem 0;
}

.proj-modal-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.proj-modal-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: #fff8e7;
}

.proj-modal-info-icon.green { background: #e8f8ee; }
.proj-modal-info-icon.blue  { background: #e8f2fd; }

.proj-modal-info-label {
  font-size: 0.74rem;
  color: #9ca3af;
  margin-bottom: 2px;
}

.proj-modal-info-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1a1a2e;
  line-height: 1.35;
}

.proj-modal-info-value.gold {
  color: #f5a800;
  font-size: 1.05rem;
}

.proj-modal-cta {
  background: #fff8e7;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-top: 0.5rem;
}

.proj-modal-cta-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.proj-modal-cta-sub {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.9rem;
}

.proj-modal-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 1.5rem;
  border-top: 1px solid #f0f0f0;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ── RIGHT PANEL (IMAGE) ── */
.proj-modal-right {
  flex: 1;
  position: relative;
  background: #111;
  overflow: hidden;
}

.proj-modal-imgs {
  position: relative;
  width: 100%;
  height: 100%;
}

.proj-modal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.proj-modal-img.active {
  opacity: 1;
  pointer-events: auto;
}

.proj-modal-expand {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: transform 0.2s;
}

.proj-modal-expand:hover {
  transform: scale(1.08);
}

.proj-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 6;
  transition: background 0.2s, transform 0.2s;
}

.proj-modal-arrow:hover {
  background: rgba(245, 168, 0, 0.9);
  transform: translateY(-50%) scale(1.08);
}

.proj-modal-arrow.left { left: 18px; }
.proj-modal-arrow.right { right: 18px; }

/* ── FULLSCREEN IMAGE VIEW ── */
.proj-modal-right.fullscreen {
  position: fixed;
  inset: 0;
  z-index: 10001; /* above the navbar (9999) so it's truly edge-to-edge */
  border-radius: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* In fullscreen, show the whole photo — no cropping */
.proj-modal-right.fullscreen .proj-modal-img {
  object-fit: contain;
}

.proj-modal-right.fullscreen .proj-modal-imgs {
  width: 100%;
  height: 100%;
}

/* Close button that appears only in fullscreen mode */
.proj-modal-fs-close {
  display: none;
  position: absolute;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10002;
  transition: transform 0.2s;
}

.proj-modal-fs-close:hover {
  transform: scale(1.08);
}

.proj-modal-right.fullscreen .proj-modal-fs-close {
  display: flex;
}

/* ── MOBILE: stack instead of split ── */
@media (max-width: 860px) {
  .proj-modal-overlay {
    padding: calc(88px + 0.75rem) 0.75rem 0.75rem;
  }

  .proj-modal-desktop {
    flex-direction: column;
    width: 94vw;
    height: 88vh;
    max-height: none;
  }

  .proj-modal-left {
    width: 100%;
    order: 2;
    border-right: none;
    border-top: 1px solid #f0f0f0;
  }

  .proj-modal-right {
    order: 1;
    height: 240px;
    flex-shrink: 0;
  }

  /* Fullscreen must override the 240px split-view height above,
     otherwise the fixed overlay only covers the top 240px and
     the rest of the modal shows through underneath it. */
  .proj-modal-right.fullscreen {
    height: 100vh;
    height: 100dvh;
  }

  .proj-modal-title {
    font-size: 1.2rem;
  }

  .proj-modal-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .proj-modal-nav-btns {
    display: none; /* project-to-project nav hidden on mobile to save space */
  }
}

/* ── MOBILE VIEW-DETAILS TOGGLE (Project Modal) ── */

/* Close button that sits directly on the photo — mobile only */
.proj-modal-mobile-close {
  display: none;
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 7;
  transition: transform 0.2s;
}
.proj-modal-mobile-close:hover { transform: scale(1.08); }

/* Dots under the modal image carousel */
.proj-modal-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 6;
}
.proj-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s ease;
}
.proj-modal-dot.active {
  background: #F5A800;
  width: 18px;
  border-radius: 4px;
}

/* "View Details" button (mobile only, hidden on desktop) */
.proj-modal-view-details-btn {
  margin-top: 1.1rem;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFF8E7;
  border: none;
  color: #F5A800;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
}
.proj-modal-view-details-btn:hover { background: #fdecc4; }
.proj-modal-view-details-btn .chevron { transition: transform .25s ease; }
.proj-modal-desktop.mobile-details .proj-modal-view-details-btn .chevron {
  transform: rotate(180deg);
}

/* "Project Details" screen — visible by default on desktop (no toggle needed there) */
.proj-modal-details-section { display: block; }

/* Back-arrow header for the details screen — mobile only */
.proj-modal-details-header {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.25rem;
}
.proj-modal-details-back {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.proj-modal-details-back:hover { background: #e5e7eb; }
.proj-modal-details-header-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a2e;
  flex: 1;
  text-align: center;
  margin-right: 34px; /* balances the back button so the title stays centered */
}

/* Extra icon-color variants used by the Details screen */
.proj-modal-info-icon.purple { background: #f2e9fd; }
.proj-modal-info-icon.peach  { background: #fdeee5; }

@media (max-width: 860px) {
  .proj-modal-mobile-close     { display: flex; }
  .proj-modal-left-header      { display: none; } /* replaced by the close btn on the photo */
  .proj-modal-view-details-btn { display: flex; }
  .proj-modal-counter          { display: none; }
  .proj-modal-details-section  { display: none; } /* hidden until "View Details" is tapped */

  .proj-modal-right.fullscreen .proj-modal-mobile-close { display: none; }

  /* Details state: hide the photo + summary, show only the details card */
  .proj-modal-desktop.mobile-details .proj-modal-right           { display: none; }
  .proj-modal-desktop.mobile-details .proj-modal-summary         { display: none; }
  .proj-modal-desktop.mobile-details .proj-modal-details-section { display: block; }
  .proj-modal-desktop.mobile-details .proj-modal-details-header  { display: flex; }
}

/*DESKTOP FULL VIEW*/
/*PAST PROJECTS CAROUSEL*/

/* ── PROJECTS GRID ── */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── WHY IMAGE COL — hide on mobile ── */
.why-image-col {
  display: none;
}

@media (min-width: 1024px) {
  .why-image-col {
    display: block;
  }
}

/* ── GENERAL MOBILE TWEAKS ── */
@media (max-width: 768px) {
  .why-section,
  .services-section,
  .process-section,
  .projects-preview-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-title,
  .section-title-w {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  .btn-gold,
  .btn-outline-w {
    width: 100%;
    justify-content: center;
  }

  .process-geo {
    display: none;
  }

  .services-sparkle,
  .services-bg-circle-tl,
  .services-bg-circle-br,
  .services-bg-circle-tr {
    display: none;
  }

  .project-card-img {
    height: 160px;
  }

  .project-card-body {
    padding: 12px 14px 14px;
  }

  .project-card-title {
    font-size: 0.88rem;
  }

  .project-card-specs li {
    font-size: 0.75rem;
  }
}

/* ── PROJECTS CAROUSEL (mobile) ── */
.projects-carousel {
  position: relative;
  overflow: hidden;
}

.projects-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.projects-carousel-slide {
  min-width: 100%;
  padding: 0 4px;
}

.projects-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: #F5A800;
  transform: scale(1.2);
}

/* ── PROJECTS DESKTOP GRID ── */
.projects-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}