 /* ================= GLOBAL RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

 /* ================= BRAND VARIABLES ================= */
:root {
  --color-primary: #1FAB70;
  --color-secondary: #1F1F25;
  --color-title: #272A6C;
  --color-body: #656565;
  --bg: #ffffff;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  height: 120px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;   /* reduced from 14px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 100px;          /* desktop size */
  width: auto;
  display: block;
}

/* Tablet */
@media (max-width: 900px) {
  .logo img {
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .logo img {
    height: 100px;
  }
}


/* Navigation */
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-secondary);
  position: relative;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--color-primary);
}

/* Subtle underline on hover (senior touch) */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA Button */
.btn-cta {
  background: var(--color-primary);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-cta:hover {
  background: #169a61; /* darker shade of primary */
  transform: translateY(-1px);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav.active {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slider */
.hero-slider {
  height: 100%;
  position: relative;
}

/* Slide */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay for visibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(31, 31, 37, 0.65),
    rgba(31, 31, 37, 0.65)
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  color: #e5e7eb;
  margin-bottom: 28px;
}

/* CTA */
.hero-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-btn:hover {
  background: #169a61;
  transform: translateY(-2px);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.hero-dots span.active {
  background: var(--color-primary);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-content p {
    font-size: 1rem;
  }
}



/* =========================================================
   ABOUT US SECTION
========================================================= */
.about {
  background: #ffffff;
  padding: 90px 0;
}

/* ---------- Center Label ---------- */
.about-heading {
  text-align: center;
  margin: 0 auto 50px;
}

.about-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
}

/* ---------- Layout ---------- */
.about-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* ---------- Text Side ---------- */
.about-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-title);
  line-height: 1.3;
  margin-bottom: 22px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 18px;
}

/* ---------- Image Side ---------- */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .about {
    padding: 70px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1; /* image first on mobile */
  }

  .about-text {
    text-align: center;
  }
}
/* =========================================================
   WHY CHOOSE US – BEFORE AFTER SLIDER (LIGHT VERSION)
========================================================= */
.why-choose {
  background: #f4f5f7; /* subtle section separation */
  padding: 90px 0;
  color: var(--color-secondary); /* FIX */
}

/* Heading */
.why-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.why-label {
  display: inline-block;
  font-size: 1.3rem; /* FIX: was too large */
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.why-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-title); /* FIX */
}

/* Text */
.why-text {
  max-width: 850px;
  margin: 0 auto 50px;
  padding: 0 20px;
  text-align: center;
}

.why-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-body); /* FIX */
  margin-bottom: 14px;
}

/* Slider */
.ba-slider {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  position: relative;
}

/* Track */
.ba-track {
  position: relative;
  overflow: hidden;
}

/* Slide */
.ba-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.ba-slide.active {
  display: grid;
}

/* Images */
.ba-image {
  position: relative;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12); /* subtle contrast */
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Labels */
.ba-image span {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.65);
  color: #ffffff;
}

.ba-image.after span {
  background: var(--color-primary);
}

/* Dots */
.ba-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.ba-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25); /* FIX */
  cursor: pointer;
}

.ba-dots span.active {
  background: var(--color-primary);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px) {
  .why-choose {
    padding: 70px 0;
  }

  .ba-slide {
    grid-template-columns: 1fr;
  }

  .ba-image {
    height: 220px;
  }
}
/* =========================================================
   OUR SOFA REPAIRING SOLUTIONS (ENHANCED)
========================================================= */
.solutions {
  background: #ffffff;
  padding: 90px 0;
}

/* Heading */
.solutions-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.solutions-label {
  display: inline-block;
  font-size: 1.3rem; /* refined */
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.solutions-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-title);
  line-height: 1.3;
}

/* Grid */
.solutions-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.solution-card {
  position: relative;
  background: #f9fafb;
  padding: 36px 26px;
  border-radius: 16px;

  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: center;
  line-height: 1.6;

  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  overflow: hidden;
  cursor: default;
}

/* Accent strip */
.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    #4ade80
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* Hover effects */
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
  background: linear-gradient(
    180deg,
    #ffffff,
    #f3f4f6
  );
}

.solution-card:hover .card-accent {
  transform: scaleX(1);
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px) {
  .solutions {
    padding: 70px 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 30px 22px;
  }
}
/* =========================================================
   TYPES OF SOFAS WE REPAIR (FINAL FIXED VERSION)
========================================================= */
.sofa-types {
  background: #f4f5f7;
  padding: 90px 0;
}

/* Heading */
.types-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.types-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.types-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-title);
}

/* Grid */
.types-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.type-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;

  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image wrapper (KEY FIX) */
.type-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 13; /* consistent height */
  overflow: hidden;
}

/* Image */
.type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay */
.type-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Title */
.type-card h3 {
  padding: 20px 16px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary);
}

/* Hover Effects */
.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.15);
}

.type-card:hover .type-image img {
  transform: scale(1.08);
}

.type-card:hover .type-image::after {
  opacity: 1;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px) {
  .sofa-types {
    padding: 70px 0;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   SOFA CUSTOMIZATION & DESIGN UPGRADES
========================================================= */
.customization {
  background: #ffffff;
  padding: 90px 0;
}

/* Heading */
.customization-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.customization-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.customization-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-title);
  line-height: 1.3;
}

/* Content */
.customization-content {
  max-width: 850px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.customization-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 18px;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px) {
  .customization {
    padding: 70px 0;
  }

  .customization-content p {
    font-size: 1rem;
  }
}
/* =========================================================
   SERVICE GRID SECTION (4 BLOCKS)
========================================================= */
.service-grid-section {
  background: #f4f5f7;
  padding: 100px 0;
}

.service-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.service-card {
  background: #ffffff;
  padding: 42px 38px;
  border-radius: 20px;

  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.14);
}

/* Headings */
.service-card h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-title);
  margin-bottom: 18px;
  line-height: 1.3;
}

/* Text */
.service-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 14px;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(
    135deg,
    #ffffff,
    #f0fdf4
  );
  border: 2px solid rgba(31,171,112,0.2);
}

/* Call Button */
.call-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;

  background: var(--color-primary);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31,171,112,0.4);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid-section {
    padding: 80px 0;
  }

  .service-card {
    padding: 36px 28px;
  }
}
/* =========================================================
   FAQ SECTION
========================================================= */
.faq {
  padding: 100px 0;
}

/* Heading */
.faq-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.faq-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.faq-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-title);
}

/* FAQ List */
.faq-list {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

/* Item */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;

  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icon */
.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-body);
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px) {
  .faq {
    padding: 80px 0;
  }

  .faq-question {
    font-size: 1rem;
  }
}
/* =========================================================
   CONTACT & LOCATIONS – FINAL POLISHED VERSION
========================================================= */
.contact-footer {
  background: #f4f5f7;
  padding: 100px 0 0;
}

/* Layout */
.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left block */
.contact-block {
  max-width: 520px;
}

/* Small label */
.contact-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* Headings */
.contact-block h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-title);
  margin-bottom: 20px;
  line-height: 1.25;
}

/* Text */
.contact-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 16px;
}

/* =========================================================
   BOOKING CARD (RIGHT SIDE)
========================================================= */
.booking-block.refined {
  background: #ffffff;
  padding: 50px 46px;
  border-radius: 26px;

  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

/* Booking lead text */
.booking-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 28px;
}

/* CTA Button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 34px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    #22c55e
  );
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;

  box-shadow: 0 18px 40px rgba(34,197,94,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(34,197,94,0.6);
}

/* Sub-note */
.booking-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #6b7280;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */
.footer-bottom {
  background: #1f2933;
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: #9ca3af;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 60px;
  }

  .booking-block.refined {
    padding: 42px 32px;
  }
}

@media (max-width: 640px) {
  .contact-footer {
    padding-top: 80px;
  }

  .contact-container {
    padding: 0 20px 50px;
  }

  .contact-block h2 {
    font-size: 1.8rem;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================================
   TESTIMONIAL SLIDER – PREMIUM
========================================================= */
.testimonial-slider {
  background: #ffffff;
  padding: 110px 0;
}

/* Heading */
.testimonial-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.testimonial-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.testimonial-heading h2 {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-title);
}

/* Wrapper */
.testimonial-wrapper {
  position: relative;
  max-width: 760px;
  margin: auto;
  padding: 0 20px;
}

/* Track */
.testimonial-track {
  position: relative;
  overflow: hidden;
}

/* Slide */
.testimonial-slide {
  display: none;
  background: #f9fafb;
  padding: 44px 42px;
  border-radius: 26px;
  text-align: center;

  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
  animation: fadeSlide 0.4s ease;
}

.testimonial-slide.active {
  display: block;
}

/* Text */
.testimonial-slide p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-body);
  margin-bottom: 26px;
}

/* Name */
.testimonial-slide h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-title);
  margin-bottom: 4px;
}

/* Location */
.testimonial-slide span {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Buttons */
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;

  background: #ffffff;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.testimonial-btn.prev {
  left: -10px;
}

.testimonial-btn.next {
  right: -10px;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px) {
  .testimonial-slider {
    padding: 90px 0;
  }

  .testimonial-slide {
    padding: 36px 26px;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}
/* =========================================================
   FLOATING CALL & WHATSAPP BUTTONS
========================================================= */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Common button */
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #ffffff;

  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* WhatsApp */
.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.whatsapp svg {
  width: 26px;
  height: 26px;
}

/* Call */
.float-btn.call {
  background: var(--color-primary);
  font-size: 1.3rem;
}

/* Mobile */
@media (max-width: 640px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}
/* =========================================================
   CALL POPUP
========================================================= */
.call-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.call-popup {
  background: #ffffff;
  max-width: 420px;
  width: 90%;
  padding: 36px 32px;
  border-radius: 20px;
  position: relative;
  text-align: center;

  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  animation: popupFade 0.3s ease;
}

/* Close */
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #6b7280;
}

/* Heading */
.call-popup h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-title);
  margin-bottom: 14px;
}

/* Text */
.call-popup p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-body);
  margin-bottom: 20px;
}

/* Points */
.popup-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.popup-points li {
  font-size: 0.95rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

/* Call Button */
.popup-call-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 0;

  background: linear-gradient(
    135deg,
    var(--color-primary),
    #22c55e
  );
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;

  box-shadow: 0 18px 40px rgba(34,197,94,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.popup-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(34,197,94,0.6);
}

/* Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .call-popup {
    padding: 30px 24px;
  }
}
/* =========================================================
   BED REPAIR SERVICES
========================================================= */
.bed-services {
 background: #f4f5f7;
   padding: 100px 0;
}

/* Heading */
.bed-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.bed-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.bed-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-title);
}

/* Grid */
.bed-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.bed-card {
  background: #f9fafb;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;

  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image Wrapper */
.bed-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

/* Image */
.bed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Content */
.bed-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 22px 16px 10px;
}

.bed-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-body);
  padding: 0 20px 26px;
}

/* Hover Effects */
.bed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.15);
}

.bed-card:hover .bed-image img {
  transform: scale(1.08);
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .bed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px) {
  .bed-services {
    padding: 80px 0;
  }

  .bed-grid {
    grid-template-columns: 1fr;
  }

  .bed-card p {
    font-size: 0.95rem;
  }
}
/* =========================================================
   WOOD RESTORATION & REPAIRS
========================================================= */
.wood-services {
  background: #ffffff;
  padding: 100px 0;
}

/* Heading */
.wood-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.wood-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.wood-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--color-title);
}

/* Grid */
.wood-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Card */
.wood-card {
  background: #f9fafb;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;

  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image Wrapper */
.wood-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Image */
.wood-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Content */
.wood-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 22px 16px 10px;
}

.wood-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-body);
  padding: 0 20px 26px;
}

/* Hover Effects */
.wood-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.15);
}

.wood-card:hover .wood-image img {
  transform: scale(1.08);
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .wood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 640px) {
  .wood-services {
    padding: 80px 0;
  }

  .wood-grid {
    grid-template-columns: 1fr;
  }
}
