/* ============================================================
   ERIKA FURNITURE & DESIGN — KENYA
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --green:        #1e9e3e;
  --green-dark:   #167a30;
  --green-light:  #e8f5ec;
  --green-mid:    #d4edda;
  --black:        #111111;
  --dark:         #1a2e1e;
  --text:         #333333;
  --text-muted:   #666666;
  --bg:           #f0f2ee;
  --bg-alt:       #e9ede6;
  --white:        #ffffff;
  --border:       #d8ddd6;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-pill:  999px;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 28px rgba(0,0,0,0.12);
  --transition:   0.25s ease;
  --font-main:    'Inter', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.gallery-img { cursor: zoom-in; }
#image-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}
#image-lightbox.open {
  opacity: 1;
  visibility: visible;
}
#image-lightbox .img-lightbox {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
#image-lightbox .lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
#image-lightbox .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.32);
}
#image-lightbox .lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: calc(100% - 60px);
  text-align: center;
  padding: 0 10px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---------- UTILITY ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.green { color: var(--green); }
.text-center { text-align: center; }

.section-heading { font-size: 2.4rem; font-weight: 800; color: var(--black); line-height: 1.2; }
.section-heading .green { color: var(--green); }
.section-sub { font-size: 1rem; color: var(--text-muted); margin-top: 12px; max-width: 520px; line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem; font-weight: 600;
  border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-green  { background: var(--green); color: var(--white); }
.btn-green:hover  { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  height: 135px;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--black);
  flex-shrink: 0;
}
.logo-img {
  width: 200px;
  height:135px;
  object-fit: contain;
}
.nav-logo span { color: var(--green); }

.nav-pill {
  display: flex; align-items: center; gap: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}
.nav-pill a {
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-pill a:hover, .nav-pill a.active { color: var(--green); }
.nav-pill a .chevron { font-size: 0.7rem; }

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 12px 22px; font-size: 0.88rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* Mobile nav drawer */
#mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
#mobile-nav.open { display: block; }
#mobile-nav a {
  display: block; padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500; color: var(--text);
}
#mobile-nav a:last-child { border-bottom: none; }
#mobile-nav .btn { margin-top: 16px; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  padding-top: 100px;
  background: var(--bg);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 40px 0 60px;
}

/* Left column */
.hero-google {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.hero-google .g-icon {
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg,#4285F4,#EA4335,#FBBC05,#34A853);
  background-clip: text;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-google .stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.hero-google span { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
}
.hero-title .green { color: var(--green); }
.hero-sub {
  color: var(--text-muted); font-size: 1rem; line-height: 1.7;
  max-width: 460px; margin-bottom: 28px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* Quote form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 8px;
}
.hero-form-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--black); }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.form-group label .icon { color: var(--green); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem; font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.upload-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  font-size: 0.85rem; color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.upload-box:hover { border-color: var(--green); color: var(--green); }

.form-full { grid-column: 1 / -1; }
.btn-form-submit {
  width: 100%; margin-top: 4px;
  padding: 15px;
  background: var(--green);
  color: var(--white);
  border: none; border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 700;
  transition: var(--transition);
}
.btn-form-submit:hover { background: var(--green-dark); }

/* Right column - before/after images */
.hero-right {
  position: relative;
  display: block !important;
}
.hero-images {
  display: flex; flex-direction: column; gap: 16px;
}
.hero-img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--border);
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  visibility: visible;
}
.hero-img-wrap .placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c8d6c9 0%, #a8c4ab 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.img-label {
  position: absolute; bottom: 12px; left: 12px;
  padding: 5px 14px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.label-before { background: var(--black); color: var(--white); }
.label-after  { background: var(--green); color: var(--white); }


/* ============================================================
   TRUST STRIP — "Trusted Our Service"
   ============================================================ */
#trust {
  background: var(--white);
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: 1rem; font-style: italic;
  color: var(--text-muted); margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  overflow: hidden;
  gap: 40px;
  animation: scrollLogos 50s linear infinite;
}
.trust-logo {
  display: flex; align-items: center; justify-content: center;
  filter: none;
  transition: var(--transition);
  flex-shrink: 0;
  min-width: fit-content;
}
.trust-logo:hover { transform: scale(1.02); }
.trust-logo img {
  width: auto;
  height: auto;
  max-width: 110px;
  max-height: 75px;
  object-fit: contain;
}
.trust-logo-text {
  font-size: 0.9rem; font-weight: 600;
  color: var(--text); text-align: center;
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 8px 16px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-logo-text:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30,158,62,0.15);
}

/* Trust Logo Icons */
.trust-logo-text::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.trust-logo-text:hover::before {
  transform: translateX(0);
}

/* Category-specific styles */
.trust-logo-text.icon-luxury {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-color: #dee2e6;
}
.trust-logo-text.icon-luxury:hover {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-color: #1e9e3e;
}

.trust-logo-text.icon-financial {
  background: linear-gradient(135deg, #f1f3f4, #e8eaed);
  border-color: #dadce0;
}
.trust-logo-text.icon-financial:hover {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-color: #1e9e3e;
}

.trust-logo-text.icon-telecom {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-color: #90caf9;
}
.trust-logo-text.icon-telecom:hover {
  background: linear-gradient(135deg, #fff, #e3f2fd);
  border-color: #1e9e3e;
}

.trust-logo-text.icon-hospitality {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-color: #ffcc80;
}
.trust-logo-text.icon-hospitality:hover {
  background: linear-gradient(135deg, #fff, #fff3e0);
  border-color: #1e9e3e;
}

.trust-logo-text.icon-retail {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  border-color: #ce93d8;
}
.trust-logo-text.icon-retail:hover {
  background: linear-gradient(135deg, #fff, #f3e5f5);
  border-color: #1e9e3e;
}

.trust-logo-text.icon-education {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  border-color: #a5d6a7;
}
.trust-logo-text.icon-education:hover {
  background: linear-gradient(135deg, #fff, #e8f5e8);
  border-color: #1e9e3e;
}

.trust-logo-text.icon-default {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  border-color: #bdbdbd;
}
.trust-logo-text.icon-default:hover {
  background: linear-gradient(135deg, #fff, #f5f5f5);
  border-color: #1e9e3e;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 16px;
}
.stat-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 26px; height: 26px; fill: white; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--black); line-height: 1; }
.stat-desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   BEFORE & AFTER SLIDER
   ============================================================ */
#before-after { background: var(--bg); }
.ba-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 40px;
}
.ba-header p { color: var(--text-muted); line-height: 1.7; }

.ba-slider-wrap { position: relative; overflow: hidden; }
.ba-slides { display: flex; transition: transform 0.45s ease; }
.ba-slide {
  min-width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ba-img {
  position: relative; border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #cdd9ce;
}
.ba-gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.ba-img:hover .ba-gallery-img {
  transform: scale(1.05);
}
.ba-img .placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.ba-img .img-label { bottom: 14px; left: 14px; }

.ba-nav {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  margin-top: 28px;
}
.ba-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text);
  transition: var(--transition);
}
.ba-btn:hover { border-color: var(--green); color: var(--green); }
.ba-dots { display: flex; gap: 8px; }
.ba-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none;
  transition: var(--transition);
}
.ba-dot.active { background: var(--green); width: 20px; border-radius: 4px; }

/* ============================================================
   FURNITURE CATALOG
   ============================================================ */
.furniture-catalog { margin-top: 40px; }

.furniture-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.furniture-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.furniture-item {
  display: none;
  animation: fadeIn 0.4s ease;
}

.furniture-item.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.furniture-item-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.furniture-item-inner:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(30, 158, 62, 0.12);
  transform: translateY(-4px);
}

.furniture-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.furniture-item-inner h4 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 600;
}

.furniture-item-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Furniture Gallery */
.furniture-gallery {
  margin-top: 20px;
  width: 100%;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.placeholder-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

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

.gallery-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.gallery-label.label-before {
  background: rgba(200, 80, 80, 0.85);
}

.gallery-label.label-after {
  background: rgba(80, 160, 80, 0.85);
}

.gallery-label.label-new {
  background: rgba(30, 158, 62, 0.85);
}

/* Furniture Subsections (for Dining) */
.furniture-subsections {
  margin-top: 24px;
  width: 100%;
}

.subsection {
  margin-bottom: 20px;
}

.subsection h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subsection:last-child {
  margin-bottom: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--white); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 40px;
}
.services-header p { color: var(--text-muted); line-height: 1.7; }

.services-carousel { position: relative; }
.services-carousel.show-all .services-track-wrap { overflow: visible; }
.services-carousel.show-all .services-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  transform: none !important;
}
.services-track-wrap { overflow: hidden; }
.services-track {
  display: flex; gap: 20px;
  transition: transform 0.45s ease;
}
.service-card {
  min-width: calc(50% - 10px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #b2d9b8;
  transform: translateY(-2px);
}
.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 16px;
  color: var(--green);
}
.service-icon svg { width: 100%; height: 100%; stroke: var(--green); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.service-learn {
  font-size: 0.88rem; font-weight: 700;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.service-learn:hover { gap: 9px; }

.services-nav {
  display: flex; justify-content: space-between; align-items: center; margin-top: 28px;
}
.services-carousel.show-all .services-nav-btns { display: none; }
.svc-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text); transition: var(--transition);
}
.svc-btn:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   ABOUT US
   ============================================================ */
#about { background: var(--bg); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.about-feature h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.about-feature p  { font-size: 0.85rem; color: var(--text-muted); }

.about-img-wrap {
  position: relative;
}
.about-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  border: 3px solid var(--border);
  overflow: hidden;
  background: #c8d9ca;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how { background: var(--white); }
.how-header { margin-bottom: 50px; }
.how-steps { display: flex; flex-direction: column; gap: 20px; }
.how-step {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 30px; align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0; overflow: hidden;
  transition: var(--transition);
}
.how-step:hover { border-color: #b2d9b8; box-shadow: var(--shadow); }
.how-step-img {
  width: 100%; height: 180px;
  background: #d4e8d6;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.how-step-body { padding: 24px 28px 24px 0; }
.step-num-badge {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--green);
  color: var(--green); font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.how-step-body h3 { font-size: 1.3rem; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.how-step-body p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* dashed connector between steps */
.step-connector {
  display: flex; justify-content: flex-start;
  padding-left: 50px;
}
.step-connector svg { width: 48px; color: var(--green); opacity: 0.5; }

.how-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg); }
.testimonials-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 40px;
}
.testimonials-header p { color: var(--text-muted); line-height: 1.7; }

.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.45s ease; }
.testimonial-card {
  min-width: 320px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px 26px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.testimonial-card.featured {
  background: var(--green-light);
  border-color: rgba(30,158,62,0.16);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(0,0,0,0.09); }
.quote-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: rgba(30,158,62,0.12);
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 22px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 26px;
}
.testimonial-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#6abb7b,#1e9e3e);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: white; font-size: 0.95rem;
  flex-shrink: 0;
}
.t-name { font-size: 1rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.t-label { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }
.testimonial-rating { display: flex; align-items: center; gap: 10px; }
.t-stars { color: #f5a623; font-size: 0.94rem; letter-spacing: 0.05em; }
.t-google {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  color: #4285f4;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.testimonials-nav {
  display: flex; align-items: center; justify-content: center; gap: 15px;
  margin-top: 24px;
}
.t-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text); transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.t-btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--green-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
.t-btn:hover::before {
  width: 100%; height: 100%;
}
.t-btn:hover { 
  border-color: var(--green); 
  color: var(--green);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================================
   REAL TRANSFORMATIONS
   ============================================================ */
#real-transformations { background: var(--green-light); }
.rt-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.rt-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: #b8d4ba;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.rt-quote-box { padding: 10px 0; }
.big-quote { font-size: 4rem; color: var(--dark); line-height: 0.8; font-weight: 900; margin-bottom: 16px; }
.rt-quote-title { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--black); margin-bottom: 12px; }
.rt-quote-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FAQs
   ============================================================ */
#faqs { background: var(--white); }
.faqs-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%; background: var(--white);
  border: none; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.92rem; font-weight: 600; color: var(--black);
  text-align: left; cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--green-light); }
.faq-item.open .faq-q { background: var(--green-light); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--text-muted);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--green); color: var(--green); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 4px 20px 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px; padding-bottom: 40px;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
}
.footer-contact-item .ico { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--green); color: var(--green); }

.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--black); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--green); }

.footer-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 4px;
}
.footer-gallery-item {
  aspect-ratio: 1; border-radius: 6px;
  background: #d4e8d6;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; overflow: hidden;
  transition: opacity var(--transition);
}
.footer-gallery-item:hover { opacity: 0.8; }

.footer-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.footer-gallery-item:hover .footer-gallery-img {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ============================================================
   WHATSAPP FLOAT + SCROLL TO TOP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 90px; right: 24px;
  z-index: 900;
  background: #25D366; color: white;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(30,158,62,0.35);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================================
   QUOTE MODAL
   ============================================================ */
#quote-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#quote-modal.open {
  display: flex;
}
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.modal-close:hover { background: var(--bg); color: var(--black); }
.modal-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.modal-content > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.modal-content .form-group {
  margin-bottom: 16px;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.modal-content input:focus,
.modal-content textarea:focus {
  border-color: var(--green);
}
.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: #999;
}
.upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  transition: var(--transition);
}
.upload-label:hover {
  border-color: var(--green);
}
.upload-btn {
  background: var(--green);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.upload-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--green);
}
.form-checkbox a {
  color: var(--green);
  text-decoration: underline;
}
.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 28px;
}
.btn-cancel {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cancel:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ============================================================
   REVIEW MODAL
   ============================================================ */
#review-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
#review-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.review-modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}
.review-form {
  padding: 0 24px 24px 24px;
}
.review-form-section {
  margin-bottom: 24px;
}
.review-label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}
.star:hover,
.star.active {
  color: #ffb400;
}
.review-input-section {
  margin-bottom: 20px;
}
.review-input-section input,
.review-input-section textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.review-input-section input:focus,
.review-input-section textarea:focus {
  border-color: var(--green);
}
.review-input-section input::placeholder,
.review-input-section textarea::placeholder {
  color: #999;
}
.char-count {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ============================================================
   TESTIMONIALS UPDATES
   ============================================================ */
.testimonials-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.testimonials-actions p {
  margin: 0;
}
.testimonials-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.testimonial-info {
  margin: 0;
  color: var(--text-muted);
  max-width: 620px;
}
.review-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--green);
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: var(--transition);
}
.btn-link:hover {
  background: var(--green-light);
}
#write-review {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  visibility: hidden;
}
.testimonial-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text-muted);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-pill, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #mobile-nav { top: 135px; }

  /* Modal */
  .modal-content {
    padding: 28px;
    max-width: 95%;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .form-actions {
    flex-direction: column-reverse;
  }

  /* Review Modal */
  .review-modal {
    max-width: 95%;
    margin: 20px;
  }
  .modal-header {
    padding: 20px 20px 0 20px;
  }
  .review-form {
    padding: 0 20px 20px 20px;
  }
  .modal-footer {
    flex-direction: column;
  }
  .modal-footer .btn {
    width: 100%;
  }

  /* Testimonials Actions */
  .testimonials-actions {
    align-items: stretch;
  }
  .testimonials-actions p {
    text-align: center;
  }

  /* Trust logos */
  .trust-logos {
    gap: 20px;
  }
  .trust-logo-text {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  /* Image lightbox mobile optimization */
  #image-lightbox {
    padding: 16px;
  }
  #image-lightbox .img-lightbox {
    max-width: 96%;
    max-height: 96%;
    width: auto;
    height: auto;
  }
  #image-lightbox .lightbox-close {
    width: 44px;
    height: 44px;
    top: 16px;
    right: 16px;
    font-size: 1.3rem;
  }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .section-heading { font-size: 1.8rem; }
  .section-sub { font-size: 0.9rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-form-card { padding: 24px; }
  .form-row-3 { grid-template-columns: 1fr; gap: 10px; }

  /* Trust */
  .trust-logos { 
    gap: 12px; 
    animation-duration: 25s; 
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-logo-text {
    font-size: 0.75rem;
    padding: 5px 10px;
    min-width: 60px;
  }
  
  /* Image lightbox mobile optimization */
  #image-lightbox {
    padding: 12px;
  }
  #image-lightbox .img-lightbox {
    max-width: 98%;
    max-height: 98%;
    width: auto;
    height: auto;
  }
  #image-lightbox .lightbox-close {
    width: 42px;
    height: 42px;
    top: 14px;
    right: 14px;
    font-size: 1.25rem;
  }

  /* Stats */
  .stats-row { grid-template-columns: 1fr; gap: 16px; }

  /* Testimonials */
  .testimonials-header { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { min-width: 280px; padding: 24px 20px; }
  .testimonial-text { font-size: 0.95rem; }
  .t-name { font-size: 0.95rem; }
  .t-label { font-size: 0.85rem; }

  /* Before & After */
  .ba-header { grid-template-columns: 1fr; gap: 20px; }
  .ba-slide { grid-template-columns: 1fr; gap: 12px; }

  /* Furniture Catalog */
  .furniture-filters { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 0.85rem; }
  .furniture-content { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .gallery-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-label { font-size: 0.7rem; padding: 3px 8px; bottom: 6px; left: 6px; }

  /* Services */
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .service-card { min-width: 100%; padding: 24px; }
  .services-nav { flex-direction: column; gap: 16px; }
  .services-nav-btns { justify-content: center; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  /* How It Works */
  .how-step { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .how-step-img { height: 140px; }
  .how-step-body { padding: 20px; }
  .step-connector { display: none; }

  /* Real Transformations */
  .rt-inner { grid-template-columns: 1fr; gap: 40px; }

  /* FAQs */
  .faqs-inner { grid-template-columns: 1fr; gap: 30px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Floating buttons */
  .wa-float { bottom: 80px; right: 16px; padding: 10px 16px; font-size: 0.8rem; }
  .scroll-top { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  /* Further adjustments for small phones */
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section-sm { padding: 30px 0; }
  .section-heading { font-size: 1.6rem; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .testimonial-card { min-width: 260px; }
  .service-card { padding: 20px; }
  .about-logo { font-size: 5rem; }
  .furniture-filters { flex-direction: column; gap: 8px; }
  .filter-btn { width: 100%; }
  .furniture-content { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr; gap: 8px; }
  .wa-float { font-size: 0.75rem; padding: 8px 14px; }

  /* Trust logos */
  .trust-logos {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
    max-width: 100%;
    overflow: visible;
  }
  .trust-logo {
    flex: 0 0 auto;
    width: auto;
    max-width: calc(50% - 4px);
  }
  .trust-logo-text {
    font-size: 0.7rem;
    padding: 4px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 55px;
    max-width: 100%;
    display: block;
  }
}

/* Extra small devices (320px and up) */
@media (max-width: 380px) {
  .trust-logos {
    gap: 6px;
  }
  .trust-logo {
    max-width: calc(33.333% - 4px);
  }
  .trust-logo-text {
    font-size: 0.65rem;
    padding: 3px 6px;
    min-width: 45px;
  }
  
  /* Footer gallery responsive */
  .footer-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .footer-gallery-item {
    border-radius: 4px;
  }
  
  /* Image lightbox mobile optimization */
  #image-lightbox {
    padding: 8px;
  }
  #image-lightbox .img-lightbox {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  #image-lightbox .lightbox-close {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo { max-width: 300px; }
  .rt-inner { grid-template-columns: 1fr; }
  .faqs-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-pill { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.82rem; }

  .section { padding: 60px 0; }
  .section-heading { font-size: 1.9rem; }
  .hero-title { font-size: 2.2rem; }

  .ba-header, .services-header, .testimonials-header { grid-template-columns: 1fr; }
  .ba-slide { grid-template-columns: 1fr; }
  .service-card { min-width: calc(85% - 10px); }
  .testimonial-card { min-width: calc(90% - 10px); }
  .stats-row { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: 1fr; }
  .how-step-img { height: 140px; }
  .how-step-body { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .wa-float .label { display: none; }
  .wa-float { padding: 12px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
