/* =============================================================
   CLEANMAX — style.css  (complete, all sections)
   ============================================================= */

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

html {
  zoom: 1.1;
}

/* ---------- Overflow guard ---------- */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --green-dark: #2a4d3a;
  --green-mid: #2f5640;
  --yellow: #f5d060;
  --yellow-dark: #e0bd35;
  --black: #111111;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --text-light: #888888;
  --white: #ffffff;
  --bg-light: #f4f4f2;
  --border: #e5e5e5;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ---------- Shared labels ---------- */
.label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: .5px;
  margin-bottom: 12px;
  display: block;
}

.label--yellow {
  color: var(--yellow);
}

.label--center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .25s;
  white-space: nowrap;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn--yellow:hover {
  background: var(--yellow-dark);
}

.btn--dark {
  background: var(--green-dark);
  color: var(--white);
}

.btn--dark:hover {
  background: #1c3628;
}

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.navbar--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 76px;
}

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

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 22px;
}

.navbar__logo-text {
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
}

.navbar__logo-text strong {
  font-weight: 900;
}

.navbar__nav {
  margin-left: auto;
}

.navbar__list {
  display: flex;
  gap: 34px;
}

.navbar__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color .2s;
}

.navbar__link:hover {
  color: var(--yellow-dark);
}

.navbar__link--active {
  color: var(--yellow-dark);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 28px;
  flex-shrink: 0;
}

.navbar__cta {
  font-size: 14px;
  padding: 11px 20px;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.navbar__phone-ring {
  width: 38px;
  height: 38px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 18px;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: auto;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 76px;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.hero__content {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 100px;
  position: relative;
  z-index: 2;
}

.hero__heading {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 22px;
}

.hero__heading-green {
  color: var(--green-dark);
}

.hero__sub {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 38px;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.hero__bg-block {
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  z-index: 0;
}

.hero__circle {
  position: absolute;
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: var(--white);
  border-radius: 50%;
  z-index: 1;
}

.hero__star {
  position: absolute;
  color: var(--yellow);
  z-index: 3;
  line-height: 1;
}

.hero__star--1 {
  top: 13%;
  right: 10%;
  font-size: 38px;
}

.hero__star--2 {
  top: 24%;
  right: 5%;
  font-size: 22px;
}

.hero__star--3 {
  top: 33%;
  right: 15%;
  font-size: 17px;
}

.hero__photo-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__photo--slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__photo--slide.active {
  opacity: 1;
}

/* =============================================================
   LOGOS BAR
   ============================================================= */
.logos {
  background: var(--green-dark);
  padding: 24px 0;
}

.logos__track {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos__text-logo {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 1.4;
}

.logos__badge {
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}

.logos__qc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, .55);
  margin-right: 6px;
}

.logos__minimum {
  border: 2px solid rgba(255, 255, 255, .35);
  padding: 4px 10px;
}

.logos__craft {
  font-size: 26px;
  font-family: Georgia, serif;
  font-style: italic;
  color: rgba(255, 255, 255, .55);
  font-weight: 700;
}

/* =============================================================
   SERVICES
   ============================================================= */
.services {
  padding: 100px 0 80px;
  background: var(--white);
}

.services__header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 32px;
}

.services__header-left {
  flex: 0 0 48%;
}

.services__heading {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--black);
  margin-top: 6px;
}

.services__header-right {
  flex: 1;
  padding-top: 40px;
}

.services__desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

.services__header-right .btn {
  margin-top: 16px;
}

.btn--outline {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 2px solid var(--primary, #1a3c2e);
  color: var(--primary, #1a3c2e);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn--outline:hover {
  background: var(--primary, #1a3c2e);
  color: #fff;
}

.services__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.services__cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.services__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
  border-left: 3px solid transparent;
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-left: 3px solid var(--green-dark);
}

.services__card:hover .services__icon-wrap {
  background: var(--yellow);
  transition: background 0.3s ease;
}

.services__card:hover .services__icon-wrap i {
  color: var(--green-dark);
  transition: color 0.3s ease;
}

.services__icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
}

.services__card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
}

.services__card-desc {
  font-size: 14px;
  color: #555555 !important;
  line-height: 1.65;
  flex: 1;
}

.services__card-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  padding: 10px 18px;
}

.services__featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background: #1a3c2e;
  border-radius: 18px;
  padding: 34px;
  color: var(--white);
}

.services__featured-main {
  display: grid;
  gap: 16px;
}

.services__featured-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.services__featured-desc {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 760px;
}

.services__featured-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.services__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
  line-height: 1.5;
}

.services__feature-item i {
  color: #25D366;
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.services__featured-wa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 20px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.services__featured-wa i {
  font-size: 58px;
  color: #25D366;
  line-height: 1;
}

.services__featured-wa span {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.services__featured-wa:hover {
  transform: translateY(-2px);
  border-color: #25D366;
  background: rgba(255, 255, 255, 0.05);
}

/* =============================================================
   ABOUT — TRANSFORMING SPACES
   ============================================================= */
.about {
  display: flex;
  align-items: stretch;
  min-height: 580px;
}

.about__left {
  flex: 0 0 50%;
  background: var(--green-dark);
  padding: 80px 80px 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__left .label {
  font-size: 20px;
  font-weight: 600;
}

/* subtle background icon */
.about__left::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.about__heading {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
  margin-top: 8px;
}

.about__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  margin-bottom: 28px;
}

.about__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.about__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  font-weight: 500;
}

.about__checklist li i {
  color: var(--yellow);
  font-size: 20px;
  margin-top: 1px;
  flex-shrink: 0;
}

.about__mission {
  background: var(--yellow);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about__mission-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.about__mission p {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
}

.about__right {
  flex: 0 0 50%;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.process {
  background: var(--bg-light);
  padding: 100px 0;
}

.process__inner {
  text-align: center;
}

.process__heading {
  font-size: 42px;
  font-weight: 900;
  color: var(--black);
  margin: 8px 0 20px;
  line-height: 1.2;
}

.process__sub {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 70px;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Dashed connector line between steps */
.process__step:not(.process__step--last)::after {
  content: '';
  position: absolute;
  top: 72px;
  left: 60%;
  width: calc(80%);
  height: 2px;
  border-top: 2px dashed rgba(42, 77, 58, .35);
  z-index: 0;
}

.process__icon-wrap {
  width: 144px;
  height: 144px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 46px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.process__num {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}

.process__step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.process__step-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* =============================================================
   STATS / WHY CHOOSE US
   ============================================================= */
.stats {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.stats__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.stats__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 1;
}

.stats__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.stats__left {
  flex: 0 0 40%;
}

.stats__heading {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin: 10px 0 36px;
}

.stats__cta {
  font-size: 15px;
}

.stats__right {
  flex: 1;
  display: flex;
  gap: 60px;
  align-items: center;
}

.stats__item {
  text-align: left;
}

.stats__num {
  font-size: 60px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stats__sym {
  font-size: 44px;
  font-weight: 900;
  color: var(--yellow);
}

.stats__label {
  font-size: 16px;
  color: var(--white);
  margin-top: 6px;
}

/* =============================================================
   TEAM
   ============================================================= */
.team {
  background: var(--bg-light);
  padding: 100px 0;
}

.team__inner {
  text-align: center;
}

.team__heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin: 8px 0 20px;
}

.team__sub {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 60px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.team__photo-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.team__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s;
}

.team__card:hover .team__photo {
  transform: scale(1.04);
}

.team__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}

.team__role {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: -8px;
}

.team__socials {
  display: flex;
  gap: 10px;
}

.team__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: opacity .2s;
}

.team__social:hover {
  opacity: .8;
}

.team__socials--dark .team__social {
  background: var(--green-dark);
  color: var(--white);
}

.team__socials--yellow .team__social {
  background: var(--yellow);
  color: var(--black);
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  background: var(--white);
  padding: 100px 0 80px;
}

.testimonials__inner {
  text-align: center;
}

.testimonials__heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin: 8px 0 50px;
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__slide {
  display: none;
}

.testimonials__slide.active {
  display: block;
}

.testimonials__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.tcard {
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  transition: box-shadow .3s;
}

.tcard:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.tcard__stars {
  color: var(--yellow);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.tcard__text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.tcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tcard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.tcard__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.tcard__role {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
}

.tcard__quote {
  font-size: 52px;
  color: rgba(42, 77, 58, .15);
  font-family: Georgia, serif;
  line-height: 1;
  margin-top: -20px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--border);
  transition: background .3s, transform .3s;
}

.dot--active {
  background: var(--green-dark);
  transform: scale(1.2);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--green-dark);
}

.footer__main {
  display: flex;
  align-items: stretch;
}

.footer__info-card {
  flex: 0 0 380px;
  background: var(--yellow);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand-icon {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 22px;
}

.footer__brand-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
}

.footer__brand-name strong {
  font-weight: 900;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}

.footer__contact-list li i {
  font-size: 18px;
  color: var(--black);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__cols {
  flex: 1;
  display: flex;
  gap: 0;
  padding: 60px 60px 60px 80px;
  align-items: flex-start;
}

.footer__col {
  flex: 1;
}

.footer__col-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

.footer__col-list li a:hover {
  color: var(--yellow);
}

.footer__col-list li a i {
  font-size: 16px;
}

.footer__newsletter {
  margin-bottom: 28px;
}

.footer__newsletter {
  display: flex;
  background: rgba(255, 255, 255, .1);
  border-radius: 50px;
  overflow: hidden;
}

.footer__email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  font-family: var(--font);
}

.footer__email-input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.footer__email-btn {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  margin: 3px;
  flex-shrink: 0;
  transition: background .2s;
}

.footer__email-btn:hover {
  background: var(--yellow-dark);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__socials--top {
  margin-top: 0;
}

.footer__social {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  transition: all .2s;
}

.footer__social:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* =============================================================
   PACKAGES
   ============================================================= */
.packages {
  background: var(--bg-light);
  padding: 100px 0 80px;
}

.packages__inner {
  text-align: center;
}

.packages__heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin: 8px 0 56px;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
  align-items: stretch;
}

.pkg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.pkg-card--featured {
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .14);
}

.pkg-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pkg-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--black);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pkg-card__header {
  padding: 32px 28px 24px;
  text-align: left;
}

.pkg-card__header--green {
  background: var(--green-dark);
}

.pkg-card__header--yellow {
  background: var(--yellow);
}

.pkg-card__header--green .pkg-card__name {
  color: var(--white);
}

.pkg-card__header--green .pkg-card__sub {
  color: rgba(255, 255, 255, .7);
}

.pkg-card__header--yellow .pkg-card__name {
  color: var(--black);
}

.pkg-card__header--yellow .pkg-card__sub {
  color: rgba(0, 0, 0, .6);
}

.pkg-card__name {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 6px;
}

.pkg-card__sub {
  font-size: 14px;
  font-weight: 500;
}

.pkg-card__list {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  flex: 1;
}

.pkg-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-gray);
}

.pkg-card__list li i {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-card__btn {
  margin: 0 28px 28px;
  align-self: flex-start;
}

.packages__custom {
  background: var(--green-dark);
  border-radius: 16px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
}

.packages__custom-text {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
  flex: 1;
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery {
  background: var(--white);
  padding: 100px 0 80px;
}

.gallery__inner {
  text-align: center;
}

.gallery__heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  margin: 8px 0 48px;
}

.gallery__grid {
  display: grid;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.gallery__grid--cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery__grid--cols-2 {
  grid-template-columns: 1fr 1fr;
}

.gallery__grid--cols-1 {
  grid-template-columns: 1fr;
}

.gallery__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery__item img:hover {
  transform: scale(1.05);
}

.gallery__carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: auto !important;
  touch-action: pan-y;
}

.gallery__track {
  display: flex;
  flex-direction: row;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.gallery__slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
}

.gallery__slide--grid {
  display: flex;
  align-items: stretch;
  height: 400px;
}

.gallery__slide--single {
  height: auto;
  display: flex;
}

.gallery__slide--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.footer__bottom {
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.footer__bottom p {
  margin: 0;
}

.footer__link {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

.footer__divider {
  color: rgba(255, 255, 255, .45);
  margin: 0 10px;
}

/* =============================================================
   CONTACT US
   ============================================================= */
.contact {
  background: var(--bg-light);
  padding: 100px 0 80px;
}

.contact__inner {
  text-align: center;
}

.contact__heading {
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  margin: 8px 0 16px;
}

.contact__sub {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 56px;
}

.contact__layout {
  display: flex;
  gap: 32px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.contact__info {
  flex: 0 0 38%;
  background: var(--green-dark);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.contact__info-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.contact__list li i {
  color: var(--yellow);
  font-size: 24px;
}

.contact__list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact__list li a:hover,
.contact__list li a:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__socials {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.contact__socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact__socials a:hover {
  background: var(--yellow);
  color: var(--green-dark);
}

.contact__form-card {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

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

.contact__form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.contact__input {
  width: 100%;
  flex: 1;
  background: var(--bg-light);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--black);
  transition: border-color 0.3s ease;
}

.contact__input::placeholder {
  color: var(--text-light);
}

.contact__input:focus {
  outline: none;
  border-color: var(--green-dark);
}

.contact__input-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact__input-group--phone {
  flex-direction: column;
}

.contact__input.error {
  border-color: #e74c3c;
  background: #fdf2f1;
}

.contact__error {
  display: block;
  font-size: 13px;
  color: #e74c3c;
  margin-top: 6px;
  min-height: 18px;
  font-weight: 500;
}

.contact__select {
  appearance: none;
  cursor: pointer;
  color: var(--text-gray);
}

.contact__select:invalid {
  color: var(--text-light);
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
  margin-top: 8px;
}

/* =============================================================
   ENQUIRE NOW — FLOATING CHAT WIDGET
   ============================================================= */

/* ── Keyframe: attention wiggle ───────────────────────── */
@keyframes enqAttention {
  0% {
    transform: translateX(0) scale(1);
  }

  15% {
    transform: translateX(-3px) scale(1.04);
  }

  30% {
    transform: translateX(3px) scale(1.05);
  }

  45% {
    transform: translateX(-2px) scale(1.04);
  }

  60% {
    transform: translateX(2px) scale(1.03);
  }

  75% {
    transform: translateX(-1px) scale(1.02);
  }

  90% {
    transform: translateX(1px) scale(1.01);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes enqPopIn {
  from {
    opacity: 0;
    transform: scale(.88) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── Floating Action Button ─────────────────────────── */
.enq-fab {
  position: fixed;
  bottom: -100px;
  --enq-base-bottom: 30px;
  --enq-footer-clearance: 0px;
  right: 30px;
  z-index: 9990;
  background: var(--yellow);
  color: var(--green-dark);
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
  white-space: nowrap;
  transition: bottom .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background .2s, transform .2s;
}

.enq-fab--visible {
  bottom: calc(var(--enq-base-bottom) + var(--enq-footer-clearance));
}

.enq-fab--wiggle {
  animation: enqAttention .5s ease;
}

.enq-fab:hover {
  background: var(--yellow-dark);
  transform: scale(1.04);
  animation: none;
}

/* Hide FAB when popup is open */
.enq-fab--hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.8);
  transition: opacity .25s, transform .25s;
}

/* ── Popup container ───────────────────────────────── */
.enq-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9991;
  width: 300px;
  max-height: calc(100vh - 60px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .22);
  display: none;
  flex-direction: column;
  background: var(--white);
}

.enq-popup--open {
  display: flex;
  animation: enqPopIn .3s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

/* ── Header ──────────────────────────────────────── */
.enq-header {
  background: var(--green-dark);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.enq-logo {
  height: 30px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.enq-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background .2s;
}

.enq-close:hover {
  background: rgba(255, 255, 255, .15);
}

/* ── Chat body ────────────────────────────────────── */
.enq-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  min-height: min(280px, 60vh);
  flex: 1;
  overflow-y: auto;
}

/* ── Steps ───────────────────────────────────────── */
.enq-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.enq-step--hidden {
  display: none;
}

/* ── Bot bubble ────────────────────────────────────── */
.enq-bubble {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 90%;
  align-self: flex-start;
}

.enq-bubble--thanks {
  background: var(--green-dark);
  text-align: left;
}

/* ── User answer echo ───────────────────────────────── */
.enq-prev-ans {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: -4px;
}

/* ── Input area ────────────────────────────────────── */
.enq-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.enq-input {
  width: 100%;
  background: #f2f2f0;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--black);
  transition: border-color .25s;
  outline: none;
}

.enq-input:focus {
  border-color: var(--green-dark);
  background: var(--white);
}

.enq-select {
  appearance: none;
  cursor: pointer;
  color: var(--text-gray);
}

.enq-textarea {
  resize: vertical;
  min-height: 76px;
}

/* ── Next / Submit button ────────────────────────────── */
.enq-next-btn {
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  align-self: flex-end;
  transition: background .2s, transform .15s;
}

.enq-next-btn:hover {
  background: var(--yellow-dark);
  transform: scale(1.03);
}

/* ── Step 5: checkmark & close ───────────────────────── */
.enq-checkmark {
  font-size: 36px;
  color: var(--green-dark);
  text-align: center;
  padding: 8px 0 4px;
}

.enq-close-final {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  align-self: center;
  margin-top: 6px;
  transition: background .2s;
}

.enq-close-final:hover {
  background: #1c3628;
}

/* Repeating attention trigger via CSS custom property hack:
   We restart the animation by toggling a class */
.enq-fab--pulsing {
  animation: enqAttention .5s ease forwards;
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

/* ── 1100px: Large tablets / small desktops ── */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: 320px 1fr 1fr;
  }

  .services__img {
    height: 340px;
  }

  .stats__content {
    gap: 40px;
  }

  .stats__right {
    gap: 36px;
  }

  .stats__num {
    font-size: 48px;
  }
}

/* ── 900px: Tablets ── */
@media (max-width: 900px) {
  .container {
    padding: 0 30px;
  }

  /* --- Navbar --- */
  .navbar__phone {
    display: none;
  }

  /* --- Hero --- */
  .hero__content {
    padding: 48px 30px 40px 40px;
  }

  /* --- Services --- */
  .services__header {
    flex-direction: column;
    gap: 16px;
  }

  .services__header-left {
    flex: none;
    width: 100%;
  }

  .services__img-wrap {
    display: none;
  }

  /* --- About --- */
  .about {
    flex-direction: column;
  }

  .about__left {
    flex: none;
    width: 100%;
    padding: 60px 40px;
  }

  .about__right {
    flex: none;
    width: 100%;
    min-height: 380px;
  }

  .about__right img {
    height: 380px;
    width: 100%;
    object-fit: cover;
  }

  /* --- Stats --- */
  .stats__content {
    flex-direction: column;
    gap: 30px;
    padding: 60px 30px;
  }

  .stats__left {
    flex: none;
    width: 100%;
  }

  .stats__right {
    width: 100%;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
  }

  .stats__item {
    flex: 0 0 calc(33% - 16px);
  }

  /* --- Testimonials --- */
  .testimonials__cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  /* --- Contact --- */
  .contact__layout {
    flex-direction: column;
  }

  .contact__info {
    flex: 0 0 auto;
    padding: 36px;
  }

  .contact__form-card {
    padding: 36px;
  }

  .contact__form-row {
    flex-direction: column;
    gap: 16px;
  }

  /* --- Footer --- */
  .footer__main {
    flex-direction: column;
  }

  .footer__info-card {
    flex: none;
    width: 100%;
  }

  .footer__cols {
    flex-direction: column;
    gap: 36px;
    padding: 48px 40px;
  }

  /* --- Team --- */
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 768px: Mobile landscape / large phones ── */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .navbar__nav,
  .navbar__actions {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 999;
  }

  .navbar__nav--open .navbar__list {
    flex-direction: column;
    gap: 20px;
  }

  /* --- Hero --- */
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
    padding: 48px 24px 40px;
  }

  .hero__visual {
    flex: none;
    max-width: 100%;
    min-height: 55vw;
  }

  .hero__circle {
    display: none;
  }

  .hero__heading {
    font-size: clamp(28px, 7vw, 40px);
  }

  /* --- Logos --- */
  .logos__track {
    justify-content: center;
    gap: 20px;
  }

  /* --- Services --- */
  .services__heading {
    font-size: 28px;
  }

  .services__featured-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .services__featured-title {
    font-size: 24px;
  }

  .services__featured-wa {
    align-self: flex-start;
    width: 100%;
    min-width: 0;
    flex-direction: row;
    justify-content: flex-start;
  }

  .services__featured-wa i {
    font-size: 44px;
  }

  .services__featured-wa span {
    text-align: left;
  }

  .services__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .services__card {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 16px;
    row-gap: 6px;
    align-items: start;
    padding: 22px;
  }

  .services__card .services__icon-wrap {
    grid-row: 1 / span 2;
    margin-top: 2px;
  }

  .services__card .services__card-title {
    margin: 0;
    align-self: end;
  }

  .services__card .services__card-desc {
    margin: 0;
    align-self: start;
  }

  /* --- About --- */
  .about__left {
    padding: 60px 28px !important;
  }

  .about__heading {
    font-size: 28px;
  }

  .about__right {
    min-height: 50vw;
  }

  /* --- Process --- */
  .process__steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process__step::after {
    display: none;
  }

  .process__step:not(.process__step--last)::after {
    display: none;
  }

  .process__heading {
    font-size: 28px;
  }

  .process__icon-wrap {
    width: 110px;
    height: 110px;
    font-size: 36px;
  }

  /* --- Packages --- */
  .packages__heading {
    font-size: 28px;
  }

  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pkg-card--featured {
    transform: none;
    order: -1;
  }

  .pkg-card--featured:hover {
    transform: translateY(-8px) !important;
  }

  .packages__custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
  }

  /* --- Gallery --- */
  .gallery__heading {
    font-size: 28px;
  }

  .gallery__slide--grid .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* --- Stats --- */
  .stats__heading {
    font-size: 28px;
  }

  .stats__num {
    font-size: 44px;
  }

  /* --- Testimonials --- */
  .testimonials__heading {
    font-size: 28px;
  }

  /* --- Contact --- */
  .contact__heading {
    font-size: 28px;
  }

  /* --- Footer --- */
  .footer__info-card {
    padding: 40px 28px;
  }

  .footer__cols {
    padding: 40px 28px;
    gap: 32px;
  }

  /* --- Enquire Widget --- */
  .enq-fab {
    right: 16px;
    --enq-base-bottom: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .enq-fab--visible {
    bottom: calc(var(--enq-base-bottom) + var(--enq-footer-clearance));
  }

  .enq-popup {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    max-width: 340px;
    max-height: calc(100vh - 32px);
  }
}

/* ── 480px: Small phones ── */
@media (max-width: 480px) {

  /* --- Container --- */
  .container {
    padding: 0 16px;
  }

  /* --- Navbar --- */
  .navbar__inner {
    height: 64px;
  }

  .navbar__nav--open {
    top: 64px;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 64px;
  }

  .hero__content {
    padding: 36px 16px 32px;
  }

  .hero__heading {
    font-size: clamp(24px, 8vw, 32px);
  }

  .hero__sub {
    font-size: 15px;
  }

  .hero__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btns .btn {
    justify-content: center;
  }

  .hero__visual {
    min-height: 60vw;
  }

  /* --- Services --- */
  .services__cards-grid {
    grid-template-columns: 1fr;
  }

  .services__featured-features {
    grid-template-columns: 1fr;
  }

  .services__featured-wa {
    flex-direction: column;
    align-items: flex-start;
  }

  /* --- About --- */
  .about__left {
    padding: 48px 16px !important;
  }

  .about__heading {
    font-size: 26px;
  }

  .about__mission {
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
  }

  /* --- Process --- */
  .process__icon-wrap {
    width: 90px;
    height: 90px;
    font-size: 30px;
  }

  .process__sub {
    font-size: 15px;
    margin-bottom: 48px;
  }

  /* --- Packages --- */
  .packages__grid {
    max-width: 100%;
  }

  .packages__custom {
    padding: 24px 16px;
  }

  /* --- Gallery --- */
  .gallery__slide--grid .gallery__grid {
    grid-template-columns: 1fr;
  }

  /* --- Stats --- */
  .stats__content {
    padding: 60px 16px;
  }

  .stats__right {
    width: 100%;
    justify-content: space-between;
  }

  .stats__item {
    flex: 0 0 calc(50% - 12px);
  }

  .stats__num {
    font-size: 36px;
  }

  .stats__sym {
    font-size: 28px;
  }

  .stats__label {
    font-size: 14px;
  }

  /* --- Testimonials --- */
  .tcard {
    padding: 24px 18px;
  }

  .testimonials__cards {
    max-width: 100%;
  }

  /* --- Contact --- */
  .contact__info {
    padding: 28px 18px !important;
  }

  .contact__form-card {
    padding: 28px 18px !important;
  }

  .contact__list li {
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
  }

  /* --- Footer --- */
  .footer__info-card {
    padding: 36px 16px;
    width: 100%;
  }

  .footer__cols {
    padding: 36px 16px;
  }

  /* --- Team --- */
  .team__grid {
    grid-template-columns: 1fr;
  }

  /* --- Enquire Widget --- */
  .enq-popup {
    width: calc(100vw - 28px);
    right: 14px;
    bottom: 14px;
    max-height: calc(100vh - 28px);
  }

  .enq-fab {
    right: 14px;
    --enq-base-bottom: 14px;
    font-size: 13px;
    padding: 11px 18px;
  }

  .enq-fab--visible {
    bottom: calc(var(--enq-base-bottom) + var(--enq-footer-clearance));
  }
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.lightbox.lightbox--open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox__box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: transparent;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  min-width: 40vw;
  min-height: 40vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  background: transparent;
  touch-action: pan-y;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}

.lightbox__close:hover {
  background: var(--yellow);
  transform: scale(1.1);
}

.lightbox__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox__nav--prev {
  order: -1;
}

.lightbox__nav--next {
  order: 1;
}

/* Hide nav arrows if only 1 image */
.lightbox--single .lightbox__nav {
  display: none;
}

@media (max-width: 480px) {
  .lightbox__img {
    max-width: 95vw;
    max-height: 80vh;
    min-width: unset;
    min-height: unset;
    border-radius: 8px;
  }

  .lightbox__nav {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* =============================================================
   STRIPE-STYLE AESTHETIC OVERRIDES (Added via User Request)
   ============================================================= */

/* 1. Softer Text Grays */
:root {
  --text-gray: #64748b;
  --text-light: #94a3b8;
}

/* 2. Proper Font Weight Layering (700 for headings, 400 for body) */
.hero__heading,
.services__heading,
.about__heading,
.process__heading,
.packages__heading,
.gallery__heading,
.stats__heading,
.testimonials__heading,
.contact__heading,
.team__heading,
.pkg-card__name {
  font-weight: 700 !important;
}

.services__card-title,
.process__step-title,
.contact__info-title,
.footer__col-title {
  font-weight: 700 !important;
}

body {
  font-weight: 400;
}

/* 3. Section Whitespace — desktop only, so mobile isn't over-padded */
@media (min-width: 769px) {

  .services,
  .process,
  .packages,
  .gallery,
  .team,
  .testimonials,
  .contact {
    padding: 120px 0 100px !important;
  }

  .process {
    padding-bottom: 60px !important;
  }

  .packages {
    padding-top: 60px !important;
  }

  .gallery {
    padding-top: 40px !important;
  }

  .about__left {
    padding: 100px 80px 100px 100px !important;
  }

  /* Desktop typography boost for centered section headers */
  .services__header .label,
  .process__header .label--center,
  .packages__header .label--center,
  .gallery__header .label--center,
  .testimonials__header .label--center,
  .contact__header .label--center {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
  }

  .services__heading,
  .process__heading,
  .packages__heading,
  .gallery__heading,
  .testimonials__heading,
  .contact__heading {
    font-size: clamp(42px, 2.8vw, 50px);
    line-height: 1.2;
  }

  .process__sub,
  .contact__sub {
    font-size: 18px;
  }
}

/* 4. Subtle Hover States for Cards */
.services__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.services__card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06) !important;
}

.pkg-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.pkg-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
}

.pkg-card--featured:hover {
  transform: scale(1.03) translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

/* 5. Fix Hero Layout (Overlap/Clipping) */
.hero__content {
  position: relative;
  z-index: 10 !important;
}

.hero__visual {
  z-index: 1 !important;
}

/* =============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================= */
@media (max-width: 768px) {

  .process {
    padding-bottom: 60px;
  }

  .packages {
    padding-top: 40px;
  }

  /* Mobile typography boost for key section headers */
  .services__header .label,
  .process__header .label--center,
  .packages__header .label--center,
  .gallery__header .label--center,
  .testimonials__header .label--center,
  .contact__header .label--center {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
  }

  .services__heading,
  .process__heading,
  .packages__heading,
  .gallery__heading,
  .testimonials__heading,
  .contact__heading {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.2;
  }

  .process__sub,
  .contact__sub {
    font-size: 17px;
    line-height: 1.65;
  }

  /* FIX 1: Hero image visible on mobile */
  .hero__visual {
    min-height: 300px;
    width: 100%;
  }

  .hero__photo-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .hero__photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* FIX 2: Gallery grid — 2 columns on mobile */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* FIX 3: Gallery single slide not too tall */
  .gallery__slide--single {
    height: 260px !important;
  }

  .gallery__slide--single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  /* FIX 4: Testimonials visible on mobile */
  .testimonials__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials__slide {
    display: none;
  }

  .testimonials__slide.active {
    display: block;
  }

  .tcard {
    width: 100%;
    box-sizing: border-box;
  }

  /* FIX 5: General mobile padding */
  .gallery {
    padding: 60px 0 40px;
  }

  .gallery__inner {
    padding: 0 16px;
  }

  .testimonials {
    padding: 60px 0 40px;
  }

  .testimonials__inner {
    padding: 0 16px;
  }

  /* Lightbox mobile layout */
  .lightbox__box {
    flex-direction: column;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    gap: 0;
    background: transparent;
  }

  .lightbox__img {
    max-width: 100vw;
    max-height: 80vh;
    min-width: unset;
    min-height: unset;
    width: 100vw;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: none;
    width: 40px;
    height: 40px;
    z-index: 10;
  }

  .lightbox__nav--prev {
    left: 12px;
    order: unset;
  }

  .lightbox__nav--next {
    right: 12px;
    order: unset;
  }

  .lightbox__close {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 99999;
  }

  /* Horizontal overflow fixes */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .gallery__carousel {
    max-width: 100%;
    overflow: hidden;
  }

  .gallery__track {
    max-width: 100%;
  }

  .gallery__slide {
    max-width: 100vw;
    overflow: hidden;
  }

  .gallery__slide--single {
    overflow: hidden;
    max-width: 100vw;
  }

  .gallery__slide--single img {
    max-width: 100%;
    width: 100%;
  }

  .lightbox__img {
    max-width: 90vw;
    width: auto;
  }

}

/* =============================================================
   SCROLL PROGRESS BAR
   ============================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--yellow);
  z-index: 99999;
  transition: width 0.1s linear;
}

/* =============================================================
   PAGE LOADER
   ============================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.page-loader__logo {
  height: 80px;
  width: auto;
  animation: loaderPulse 1s ease infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.97);
  }
}

.page-loader__bar {
  width: 200px;
  height: 4px;
  background: var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.page-loader__fill {
  height: 100%;
  width: 0%;
  background: var(--green-dark);
  border-radius: 50px;
  animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderFill {
  0% {
    width: 0%;
  }

  60% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

/* =========================================
   INTL-TEL-INPUT OVERRIDES
   ========================================= */
.iti {
  width: 100%;
  display: block;
}

.iti__flag-container {
  z-index: 5;
}

/* Ensure contact form input accommodates flag padding */
.contact__input-group .iti input {
  padding-left: 52px !important;
}

/* Ensure chat widget input accommodates flag padding */
.enq-input-wrap .iti input {
  padding-left: 52px !important;
}