/* ═══════════════════════════════════════════════════════
   FURNITURE POINT — Main Stylesheet
   ═══════════════════════════════════════════════════════ */

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

:root {
  --primary: #8b5e3c;
  --primary-d: #6b4226;
  --accent: #d4a25a;
  --dark: #1c1208;
  --light: #fdf8f2;
  --grey: #f5efe6;
  --text: #3d2b1f;
  --muted: #8a7060;
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(139, 94, 60, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.97rem;
  transition: 0.25s;
  box-shadow: 0 6px 24px rgba(212, 162, 90, 0.4);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.97rem;
  transition: 0.25s;
  backdrop-filter: blur(6px);
  display: inline-block;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(28, 18, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 162, 90, 0.25);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.nav-logo-text {
  color: var(--white);
}
.nav-logo-text span {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  display: block;
  line-height: 1.1;
}
.nav-logo-text small {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ══════════════════════════════════════════════════════
   BANNER SLIDER
══════════════════════════════════════════════════════ */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.bs-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.bs-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 90px;
}
.bs-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay, rgba(20, 10, 5, 0.68));
  z-index: 1;
  transition: background 1s;
}
.bs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease;
}
.bs-slide.active .bs-bg {
  transform: scale(1);
}
.bs-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.bs-badge {
  display: inline-block;
  background: rgba(212, 162, 90, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s 0.3s,
    transform 0.6s 0.3s;
}
.bs-slide.active .bs-badge {
  opacity: 1;
  transform: translateY(0);
}
.bs-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s 0.5s,
    transform 0.65s 0.5s;
}
.bs-slide.active .bs-content h1 {
  opacity: 1;
  transform: translateY(0);
}
.bs-content h1 span {
  color: var(--accent);
}
.bs-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s 0.7s,
    transform 0.6s 0.7s;
}
.bs-slide.active .bs-content p {
  opacity: 1;
  transform: translateY(0);
}
.bs-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s 0.9s,
    transform 0.6s 0.9s;
}
.bs-slide.active .bs-btns {
  opacity: 1;
  transform: translateY(0);
}

/* slider arrows */
.bs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  user-select: none;
}
.bs-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.bs-arrow.prev {
  left: 20px;
}
.bs-arrow.next {
  right: 20px;
}

/* slider dots */
.bs-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.bs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.bs-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
  border-color: var(--accent);
}

/* scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 34px;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 1px;
  z-index: 10;
}
.scroll-dot {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollAnim 1.6s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,
  100% {
    top: 4px;
    opacity: 1;
  }
  50% {
    top: 15px;
    opacity: 0.3;
  }
}

/* progress bar */
.bs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* ── STATS STRIP ──────────────────────────────────────── */
.stats-strip {
  background: var(--primary-d);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  flex: 1 1 160px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 800;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ── SECTION BASE ─────────────────────────────────────── */
section {
  padding: 90px 5%;
}
.section-tag {
  display: inline-block;
  background: rgba(139, 94, 60, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--primary);
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin: 18px auto 0;
}
.divider.left {
  margin-left: 0;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 60px auto 0;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -22px;
  left: 30px;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(212, 162, 90, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-badge span {
  font-size: 1.8rem;
}
.about-content {
  padding-left: 10px;
}
.about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.97rem;
}
.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 500;
}
.about-features li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════════════ */
#categories {
  background: var(--grey);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(139, 94, 60, 0.09);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(139, 94, 60, 0.16);
  border-color: var(--accent);
}

/* image wrapper */
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

/* badge on image */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* body */
.product-body {
  padding: 20px 22px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.product-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.product-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

/* features list inside card */
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}
.product-features li {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-features li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: rgba(139, 94, 60, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* action buttons */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 22px 20px;
}
.product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  border: none;
  cursor: pointer;
}
.product-btn.call {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(139, 94, 60, 0.3);
}
.product-btn.call:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
}
.product-btn.enquire {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.product-btn.enquire:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── SERVICES ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 50px auto 0;
}
.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(139, 94, 60, 0.08);
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--accent);
  box-shadow: 0 14px 40px rgba(139, 94, 60, 0.13);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── WHY CHOOSE US ────────────────────────────────────── */
#why {
  background: var(--primary-d);
}
#why .section-title {
  color: var(--white);
}
#why .section-tag {
  background: rgba(212, 162, 90, 0.2);
  color: var(--accent);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 50px auto 0;
}
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.why-card:hover {
  background: rgba(212, 162, 90, 0.15);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.why-num {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}
.why-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIAL SLIDER
══════════════════════════════════════════════════════ */
#testimonials {
  background: var(--grey);
  overflow: hidden;
}

.ts-wrapper {
  max-width: 900px;
  margin: 54px auto 0;
  position: relative;
}
.ts-viewport {
  overflow: hidden;
  border-radius: 20px;
}
.ts-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}
.ts-card {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 6px 32px rgba(139, 94, 60, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ts-quote-icon {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 12px;
}
.ts-stars {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.ts-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 680px;
}
.ts-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ts-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.ts-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.97rem;
}
.ts-role {
  font-size: 0.82rem;
  color: var(--muted);
}

/* testimonial arrows */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(139, 94, 60, 0.15);
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(139, 94, 60, 0.12);
}
.ts-arrow:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.ts-arrow.prev {
  left: -60px;
}
.ts-arrow.next {
  right: -60px;
}

/* testimonial dots */
.ts-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.ts-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139, 94, 60, 0.25);
  cursor: pointer;
  transition: 0.3s;
}
.ts-dot.active {
  background: var(--accent);
  width: 26px;
  border-radius: 5px;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1100px;
  margin: 60px auto 0;
  align-items: start;
}
.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.ci-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(139, 94, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.ci-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.ci-text span,
.ci-text a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  text-decoration: none;
}
.ci-text a:hover {
  color: var(--primary);
}
.call-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.25s;
  box-shadow: 0 4px 16px rgba(139, 94, 60, 0.3);
}
.call-btn:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
}
.call-btn.whatsapp {
  background: #25d366;
}
.call-btn.whatsapp:hover {
  background: #1da851;
}
.map-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 94, 60, 0.1);
}
.map-card iframe {
  display: block;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 48px 5% 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.footer-brand .nav-logo-text span {
  font-size: 1.5rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 12px;
}
.footer-col h4 {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li {
  font-size: 0.88rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── FLOATING BUTTONS ─────────────────────────────────── */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-btn.phone {
  background: #25d366;
}
.float-btn.wa {
  background: #25d366;
}
.float-btn.enquiry {
  background: #e65c00;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1020px) {
  .ts-arrow.prev {
    left: -10px;
  }
  .ts-arrow.next {
    right: -10px;
  }
}
@media (max-width: 900px) {
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    order: -1;
  }
  .about-badge {
    bottom: 10px;
  }
  nav {
    padding: 0 4%;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(28, 18, 8, 0.97);
    padding: 20px 5%;
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .ts-card {
    padding: 32px 24px;
  }
  .ts-arrow {
    display: none;
  }
}
@media (max-width: 600px) {
  section {
    padding: 70px 4%;
  }
  .stats-strip .stat {
    flex: 1 1 50%;
  }
  .bs-btns {
    flex-direction: column;
    align-items: center;
  }
  .call-buttons {
    flex-direction: column;
  }
  .ts-card {
    padding: 28px 18px;
  }
  .ts-text {
    font-size: 0.94rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════
   POPUP ENQUIRY FORM
══════════════════════════════════════════════════════ */

/* overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 4, 0.72);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* box */
.popup-box {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 460px;
  position: relative;
  box-shadow: 0 24px 80px rgba(139, 94, 60, 0.35);
  transform: translateY(40px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 5px solid var(--accent);
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}

/* close button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(139, 94, 60, 0.1);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: 0.2s;
}
.popup-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

/* header */
.popup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.popup-logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.popup-title {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 4px;
}
.popup-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* offer badge */
.popup-offer {
  background: linear-gradient(135deg, rgba(212, 162, 90, 0.15), rgba(139, 94, 60, 0.1));
  border: 1px dashed var(--accent);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.83rem;
  color: var(--primary-d);
  font-weight: 600;
  text-align: center;
  margin-bottom: 22px;
}

/* form */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grey);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.2s, background 0.2s;
}
.popup-field:focus-within {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 162, 90, 0.15);
}
.popup-field-icon {
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
}
.popup-field input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 0;
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  outline: none;
}
.popup-field input::placeholder {
  color: var(--muted);
  font-size: 0.88rem;
}

/* submit */
.popup-submit {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 6px 20px rgba(139, 94, 60, 0.35);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139, 94, 60, 0.4);
}
.popup-submit:active {
  transform: translateY(0);
}

/* footer links */
.popup-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
}
.popup-footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.popup-footer-links a:hover {
  color: var(--accent);
}

/* mobile */
@media (max-width: 480px) {
  .popup-box {
    padding: 28px 20px 22px;
  }
  .popup-title {
    font-size: 1.15rem;
  }
}
