/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:    #1C3355;
  --navy-dk: #0D1E33;
  --orange:  #E07B1A;
  --orange-h:#F59030;
  --green:   #3E7A35;
  --cream:   #FFF8EC;
  --white:   #FFFFFF;
  --text:    #1C2B3A;
  --muted:   #5E6E82;
  --line:    #E5E9EF;
  --shadow:  0 4px 24px rgba(28,51,85,.10);
  --shadow-lg: 0 8px 40px rgba(28,51,85,.14);
  --ease:    cubic-bezier(.25,.8,.25,1);
  --r:       14px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAVBAR ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 76px;
  background: rgb(225, 210, 184);
  border-bottom: 1px solid var(--line);
  z-index: 200;
  transform-origin: top center;
  transition: transform .5s cubic-bezier(.4,0,.2,1),
              opacity .4s ease,
              box-shadow .3s ease;
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.site-nav.hide {
  transform: perspective(800px) rotateX(-90deg);
  opacity: 0;
  pointer-events: none;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav-logo-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: -.2px;
  line-height: 1.2;
}
.nav-logo-text span {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(28,51,85,.06);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  transition: background .2s, transform .2s;
}
.btn-nav-call:hover { background: var(--orange-h); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 10px 20px 16px;
  z-index: 199;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 2px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  transition: background .2s;
}
.mob-menu a:hover { background: var(--cream); }
.mob-menu .mob-cta {
  background: var(--orange);
  color: white !important;
  text-align: center;
  margin-top: 6px;
  font-weight: 700 !important;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s, background .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 6px 20px rgba(224,123,26,.35);
}
.btn-primary:hover {
  background: var(--orange-h);
  box-shadow: 0 10px 28px rgba(224,123,26,.45);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.8);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(28,51,85,.2);
}
.btn-outline-dark:hover { border-color: var(--navy); }
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { box-shadow: 0 10px 28px rgba(37,211,102,.4); }
.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 12px; }

/* ── SECTION UTILITY ── */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.sec-tag::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.sec-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.8px;
  margin-bottom: 14px;
}
.sec-heading.light { color: white; }

.sec-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}
.sec-body.light { color: rgba(255,255,255,.7); }

/* ── HERO HOME (Full Background) ── */
.hero-home {
  margin-top: 76px;
  min-height: calc(100vh - 76px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-visual-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-zoom 20s infinite alternate;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(13,30,51,0.95) 0%, rgba(13,30,51,0.7) 40%, rgba(13,30,51,0.4) 100%);
}
.hero-home-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-home-content {
  max-width: 1000px;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}

.hero-home-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224,123,26,.12);
  border: 1px solid rgba(224,123,26,.3);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange-h);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: dot-pulse 1.8s infinite;
}
@keyframes dot-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224,123,26,0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(224,123,26,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224,123,26,0); }
}

.hero-home-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.type-cursor {
  color: var(--orange);
  margin-left: 2px;
  animation: blink 0.8s infinite;
  font-weight: 400;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-home-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-home-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-hint 2.5s ease-in-out infinite;
  z-index: 3;
}
@keyframes bounce-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@media (max-width: 1024px) {
  .hero-home { min-height: 80vh; }
  .scroll-hint { display: none; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  margin-top: 76px;
  padding: 72px 0 64px;
  background: var(--navy);
  background-image: linear-gradient(rgba(28,51,85,0.88), rgba(28,51,85,0.88)), url('../images/hero-solar.png');
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 640px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  line-height: 1.7;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  /* border-bottom: 1px solid var(--line); */
}
.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: white;
  opacity: 0.8;
}
.m-dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ── FLIP CARDS ── */
.flip-section {
  background: white;
}
.flip-heading-wrap {
  text-align: center;
  padding-bottom: 40px;
}
.flip-heading-wrap .sec-tag { justify-content: center; }
.flip-heading-wrap .sec-tag::before { display: none; }

.cards-row {
  display: flex;
  flex-direction: row;
  height: clamp(600px, 80vh, 920px);
}
.card-slot { 
  flex: 1; 
  perspective: 2000px; 
}

.card-inner {
  width: 100%; height: 100%;
  position: relative;
}

.card-face {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  overflow: hidden;
}
.card-face.front { z-index: 1; }
.card-face.back  { display: none; }

.card-grid-container {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.card-grid-box {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s cubic-bezier(.25,.8,.25,1), transform 0.6s cubic-bezier(.25,.8,.25,1);
}

.card-grid-box > .card-face.back {
  display: flex !important;
  position: absolute;
}

.card-inner.flipped .card-grid-box {
  opacity: 1;
  transform: scale(1);
}

.card-face .card-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-face .card-overlay {
  position: absolute; inset: 0;
}
.card-face .card-content { position: relative; z-index: 1; }

.card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 2.2vw, 22px);

  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
}
.card-desc {
  font-size: clamp(12px, 1.3vw, 14px);
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

/* ── SERVICES GRID (home) ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-card-img {
  height: 220px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body {
  padding: 26px 28px 30px;
}
.svc-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 16px;
}
.svc-card-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.svc-card-link:hover { gap: 10px; }

/* Gallery */
.gallery-section {
  background: #F9FBFD;
}
.gallery-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.gallery-head .sec-body {
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.gallery-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ── SERVICE DETAIL SECTION (services page) ── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }

.svc-alt-bg {
  background: #F9FBFD;
  margin: 0 -28px;
  padding: 80px 28px;
}
@media (max-width: 600px) {
  .svc-alt-bg {
    margin: 0 -20px;
    padding: 64px 20px;
  }
}

.svc-detail-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-detail-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.svc-detail-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.6px;
  margin-bottom: 14px;
}
.svc-detail-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.svc-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.svc-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.svc-detail-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  max-width: 860px;
  margin: 0 auto;
}
.stat-box {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-box:last-child { border-right: none; }
.stat-n {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -.5px;
}
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.85); margin-top: 4px; }
.cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-white {
  background: white;
  color: var(--orange);
  font-weight: 800;
}
.btn-cta-white:hover { background: #FFF8EC; }
.btn-cta-dark {
  background: rgba(0,0,0,.2);
  color: white;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-cta-dark:hover { background: rgba(0,0,0,.3); }

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-img-badge img { width: 40px; height: 40px; object-fit: contain; }
.about-img-badge strong { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); }
.about-img-badge span { font-size: 11px; color: var(--muted); display: block; }

.about-content .sec-body { margin-bottom: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14.5px; color: var(--text); line-height: 1.6;
}
.check-icon {
  width: 22px; height: 22px;
  background: rgba(62,122,53,.12);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0; margin-top: 1px;
}

/* Value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.value-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: white;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testi-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.testi-card.link-card {
  cursor: pointer;
  text-decoration: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.testi-name h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.testi-name p {
  font-size: 12px;
  color: var(--muted);
}
.testi-rating {
  display: flex;
  gap: 3px;
  color: #FFD700; /* Gold */
  margin-bottom: 12px;
}
.testi-content {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex-grow: 1;
}
.testi-footer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.testi-btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.vi-o { background: rgba(224,123,26,.12); }
.vi-g { background: rgba(62,122,53,.12); }
.vi-n { background: rgba(28,51,85,.08); }
.value-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
 
 /* ── QUICK CONTACT ── */
.qc-section { background: var(--orange); padding: 36px 0; }
.qc-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.qc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px;
  transition: transform .2s, background .2s, box-shadow .2s;
  text-decoration: none;
}
.qc-btn:hover { transform: translateY(-2px); }
.qc-call-1 { background: white; color: var(--orange); }
.qc-call-1:hover { background: #FFF8EC; }
.qc-call-2 { background: rgba(0,0,0,.15); color: white; border: 2px solid rgba(255,255,255,.4); }
.qc-call-2:hover { background: rgba(0,0,0,.25); }
.qc-wa { background: #25D366; color: white; box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.qc-wa:hover { box-shadow: 0 10px 28px rgba(37,211,102,.45); }

/* ── CONTACT SECTION ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: stretch;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 34px;
  color: white;
  display: flex;
  flex-direction: column;
}
.contact-info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 800;
  color: white; margin-bottom: 6px;
}
.contact-info-card > p {
  font-size: 14px; color: rgba(255,255,255,.6);
  line-height: 1.7; margin-bottom: 28px;
}
.ci-items { display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; padding-top: 20px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ci-o { background: rgba(224,123,26,.2); }
.ci-g { background: rgba(62,122,53,.2); }
.ci-w { background: rgba(255,255,255,.08); }
.ci-item-text p:first-child {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255,255,255,.4); margin-bottom: 2px;
}
.ci-item-text a,
.ci-item-text p:last-child {
  font-size: 15px; font-weight: 600;
  color: white; transition: color .2s;
}
.ci-item-text a:hover { color: var(--orange); }

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 22px;
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,123,26,.1);
  background: white;
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--orange-h); transform: translateY(-1px); }

/* ── MISSION SECTION ── */
.about-mission-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mission-strip {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 10px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  background: url('../images/about_top.webp') center/cover fixed no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mission-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(28,51,85,0.9) 0%, rgba(28,51,85,0.7) 50%, rgba(28,51,85,0.9) 100%); */
}
.mission-strip .container { 
  position: relative; 
  z-index: 2; 
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
}
.mission-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}
.m-feat-tag {
  background: none;
  color: white;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 900;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color .3s, transform .3s;
}
.m-feat-tag:hover {
  color: var(--orange);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .mission-strip {
    padding: 20px 0;
  }
  .mission-strip .container {
    padding: 0 20px;
  }
  .mission-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
  }
  .m-feat-tag {
    font-size: 15px;
    padding: 0;
    text-align: center;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dk);
  padding: 30px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand {
  position: relative;
}
.footer-brand::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -28px;
  width: 280px;
  height: 220px;
  background: rgb(225, 210, 184);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  z-index: 0;
}
.footer-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.footer-brand p {
  font-size: 13px;
  color: var(--navy-dk);
  line-height: 1.7;
  max-width: 220px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px; font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13.5px; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }

/* ── MULTI-ACTION FLOAT ── */
.wa-container {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-toggle {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  border: none;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
  overflow: visible; /* Changed to visible for the ring */
  position: relative;
}

/* Pulsing Rings */
.wa-toggle::before,
.wa-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  opacity: .5;
}
.wa-toggle::before { animation: wa-pulse 2s infinite; }
.wa-toggle::after  { animation: wa-pulse 2s infinite 1s; }

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.5); }

.wa-toggle.active,
.wa-toggle.alt-style { 
  background: var(--navy); 
  box-shadow: 0 8px 24px rgba(28,51,85,.4); 
}

.wa-toggle.active::before,
.wa-toggle.active::after { display: none; } /* Stop pulse only when menu is open */

.wa-toggle-inner {
  position: relative;
  width: 26px; height: 26px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.wa-toggle.active .wa-toggle-inner { transform: rotate(360deg); }

.wa-toggle-inner svg {
  position: absolute; inset: 0;
  transition: opacity .4s, transform .4s cubic-bezier(.4,0,.2,1);
}
.wa-toggle-inner .icon-phone { opacity: 0; transform: scale(.4) rotate(-30deg); }

.wa-toggle.active .icon-wa,
.wa-toggle.alt-style .icon-wa { opacity: 0; transform: scale(.4) rotate(30deg); }

.wa-toggle.active .icon-phone,
.wa-toggle.alt-style .icon-phone { opacity: 1; transform: scale(1) rotate(0); }

.wa-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: opacity .3s, transform .3s cubic-bezier(.4,0,.2,1);
  transform-origin: bottom right;
}
.wa-menu.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  transition: transform .2s, background .2s;
  white-space: nowrap;
}
.wa-menu-item:hover { transform: translateX(-5px); background: var(--cream); }
.wa-menu-item.call { border-left: 4px solid var(--orange); }
.wa-menu-item.whatsapp { border-left: 4px solid #25D366; }
.wa-menu-item svg { flex-shrink: 0; }
.wa-menu-item span { color: var(--navy); }

/* ── FADE UP ── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links, .btn-nav-call { display: none; }
  .nav-hamburger { display: flex; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail.reverse { direction: ltr; }
  .svc-detail-img img { aspect-ratio: 4 / 3; }

  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-box:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }

  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }

  .cards-row { flex-direction: column; height: auto; }
  .card-slot { height: 450px; flex: none; }
 
  .qc-section { padding: 32px 0; }
  .qc-btns { gap: 12px; }
  .qc-btn { width: 100%; justify-content: center; font-size: 15px; }

  .contact-wrap { gap: 32px; }
  .contact-info-card { padding: 32px 24px; }
  .contact-form-card { padding: 30px 24px; }

  /* Navbar mobile tweaks */
  .site-nav { height: 68px; }
  .mob-menu { top: 68px; }
  .nav-logo img { height: 60px; }
  .nav-hamburger { padding: 8px; }

  /* Reset top margins to match 68px nav */
  .page-hero, .hero-home:not([style*="margin-top: 0"]) { 
    margin-top: 68px !important; 
  }
  .site-footer { padding: 30px 0 28px; }
  .footer-brand { margin-bottom: 20px; padding-bottom: 20px; }
  .footer-brand::before {
    left: -28px;
    width: calc(100% + 56px);
    height: calc(100% + 40px);
    top: -30px;
    border-radius: 0;
  }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 40px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .stat-box:nth-child(odd) { border-right: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .ci-item-text a { word-break: normal; overflow-wrap: break-word; font-size: 13.5px; line-height: 1.4; }
  .contact-info-card h3 { font-size: 20px; }
  .contact-info-card { padding: 28px 20px; height: auto; }
  .ci-items { gap: 20px; justify-content: flex-start; flex-grow: 0; padding-top: 10px; }
  .ci-item { gap: 12px; }
  .footer-brand::before {
    left: -20px;
    width: calc(100% + 40px);
  }
}
