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

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

:root {
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --card: #ffffff;
  --card-border: #e2e8f0;
  --primary: #8B3A2A;
  --primary-glow: rgba(139,58,42,0.30);
  --accent: #29B6D6;
  --accent-glow: rgba(41,182,214,0.25);
  --gold: #f59e0b;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --grad1: linear-gradient(135deg, #8B3A2A 0%, #CC1111 100%);
  --grad2: linear-gradient(135deg, #29B6D6 0%, #0e8fa8 100%);
  --section-pad: 60px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: linear-gradient(135deg, #8B3A2A 0%, #CC1111 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  height: 36px;
  display: flex;
  align-items: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}
.topbar-left:hover { color: #fff; }
.topbar-center {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
}
.topbar-item { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.9); }
.topbar-offer { font-weight: 600; color: #fff; }
.topbar-sep { color: rgba(255,255,255,0.4); font-size: 10px; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.topbar-phone:hover { opacity: 0.8; }
.topbar-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.topbar-close:hover { background: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
  .topbar-left { display: none; }
  .topbar-center { justify-content: flex-start; }
  .topbar-item:not(.topbar-offer) { display: none; }
  .topbar-sep { display: none; }
}
@media (max-width: 600px) {
  .topbar-phone { display: none; }
  .topbar-offer { font-size: 11.5px; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 9999;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background-color: #fff;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  padding: 4px 6px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: transform 0.3s;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}
.navbar.scrolled .nav-logo-img {
  background: transparent;
  padding: 0;
    background: #fff;
    padding: 6px;
        filter: drop-shadow(rgba(0, 0, 0, 0.15) 0px 2px 6px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: #000;
  background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-links a {
  color: #475569;
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--primary);
  background: rgba(139,58,42,0.08);
}
.nav-cta {
  background: var(--grad1) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: all 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 106px; left: 0; right: 0; /* 36px topbar + 70px navbar */
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  z-index: 9998;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: #475569;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}
.mobile-menu a:hover { color: var(--primary); background: rgba(139,58,42,0.08); }

/* ── SLIDER ── */
.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #111;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform 0.9s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
  overflow: hidden;
}
.slide.active  { transform: translateX(0%); }
.slide.exiting { transform: translateX(-100%); }

/* Background image */
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark overlay for text readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);*/
  z-index: 1;
}
.slide-blob { display: none; }

.slide-1, .slide-2, .slide-3, .slide-4 { background-image: none; }

/* Slide content */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0;
  padding: 0 60px;
  padding-top: 106px;
}

/* Animated entrance */
.slide.active .slide-content > * { animation: slide-in-up 0.7s ease both; }
.slide.active .slide-badge    { animation-delay: 0.1s; }
.slide.active .slide-title    { animation-delay: 0.25s; }
.slide.active .slide-subtitle { animation-delay: 0.4s; }
.slide.active .slide-btns     { animation-delay: 0.55s; }
@keyframes slide-in-up {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

.slide-badge {
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 15px;
  color:#fff;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
  backdrop-filter: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.slide-badge .dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.5);} }

.slide-title {
  font-family: 'Poppins', sans-serif;
  font-size:40PX;
  font-weight: 900;
  line-height: 1.1;
  color:#fff;
  margin-bottom: 14px;
  text-shadow: none;
}
.slide-title .highlight {
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slide-title .highlight-accent {
  background: #923527;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slide-subtitle {
  font-size: clamp(14px, 1.8vw, 17px);
  color: #fff;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: none;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad1);
  color: var(--white);
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(139,58,42,0.45);
  transition: all 0.3s;
  border: none; cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(139,58,42,0.6); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad1);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--grad1); transform: translateY(-3px); border-color: rgba(255,255,255,0.4); }

/* ── SLIDER CONTROLS ── */
var(--grad1)
/* Side counter (01 / 04) */
.slider-counter {
  position: absolute;
  right: 40px; bottom: 50px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.counter-current {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  opacity: 0.9;
}
.counter-sep {
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}
.counter-total {
  font-size: 18px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Vertical dot nav on right */
.slider-dots {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.slider-dot {
  width: 4px; height: 28px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.4s;
  border: none;
}
.slider-dot.active {
  background: var(--primary);
  height: 48px;
  box-shadow: 0 0 12px var(--primary-glow);
}

/* Bottom progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--grad1);
  width: 0%;
  transition: width 5.5s linear;
  z-index: 10;
  box-shadow: 0 0 8px var(--primary-glow);
}
.slider-progress.running { width: 100%; }

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  bottom: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  z-index: 10;
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 4px 20px var(--primary-glow); }
.slider-prev { left: 50px; display: none;}
.slider-next { left: 106px; display: none;}

/* ── STATS BAR ── */
.stats-bar {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 30px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-right: 1px solid var(--card-border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-icon.blue  { background: #eff6ff; }
.stat-icon.pink  { background: rgba(139,58,42,0.05); }
.stat-icon.gold  { background: #fffbeb; }
.stat-icon.green { background: #f0fdf4; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 26px; font-weight: 800;
  color: var(--text); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: var(--section-pad); }
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-tag {
  display: inline-block;
  background: rgba(139,58,42,0.12);
  border: 1px solid rgba(139,58,42,0.3);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── PRODUCTS ── */
.products-section { background: var(--bg); }
.products-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text-muted);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--grad1);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,58,42,0.3);
  box-shadow: 0 16px 40px rgba(139,58,42,0.10);
}
.product-badge-wrap {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: flex; gap: 6px;
}
.badge {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 10px;
  letter-spacing: 0.5px;
}
.badge-new { background: rgba(52,211,153,0.2); color: #34d399; }
.badge-hot { background: rgba(255,78,126,0.2); color: #ff4e7e; }
.badge-sale { background: rgba(255,179,71,0.2); color: #ffb347; }

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
  background: #f8f9fa;
  padding: 12px;
  transition: transform 0.5s;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-info { padding: 20px; }
.product-brand { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.product-specs { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); }
.product-price .old-price { font-size: 13px; color: var(--text-muted); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.btn-enquire {
  background: var(--grad1);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-enquire:hover { transform: scale(1.05); box-shadow: 0 4px 15px var(--primary-glow); }

/* ── SERVICES ── */
.services-section { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad1);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,58,42,0.35);
  box-shadow: 0 20px 50px rgba(139,58,42,0.15);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.service-title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex; gap: 18px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.why-item:hover { border-color: rgba(139,58,42,0.35); transform: translateX(6px); box-shadow: 0 4px 20px rgba(139,58,42,0.1); }
.why-item-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.why-item-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.why-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.why-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.why-big-card {
  background: linear-gradient(145deg, #fff7ed, #eff6ff);
  border: 1px solid #fde8d0;
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 24px rgba(139,58,42,0.1);
}
.why-big-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(139,58,42,0.15), transparent);
  border-radius: 50%;
}
.why-big-icon { font-size: 70px; margin-bottom: 20px; display: block; }
.why-big-title { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.why-big-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.why-stars { color: var(--gold); font-size: 24px; margin: 16px 0 8px; }
.why-rating-text { font-size: 13px; color: var(--text-muted); }

/* ── BRANDS ── */
.brands-section { background: var(--bg2); padding: 36px 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.brands-track-wrap { overflow: hidden; }
.brands-track {
  display: flex; gap: 50px;
  animation: slide-brands 20s linear infinite;
  width: max-content;
}
@keyframes slide-brands { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.brand-item {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
}
.brand-item:hover { color: var(--primary); }

/* ── ABOUT SECTION ── */
.about-section { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Image side */
.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  z-index: 2;
}
.about-badge-icon { font-size: 28px; line-height: 1; }
.about-badge-num  { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); line-height: 1; }
.about-badge-txt  { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

.about-rating {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--grad1);
  color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(139,58,42,0.35);
  z-index: 2;
}
.about-rating-sep { opacity: 0.5; }

/* Content side */
.about-content { display: flex; flex-direction: column; gap: 0; }

.about-desc {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 24px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  transition: all 0.25s;
}
.about-features li:hover {
  border-color: rgba(139,58,42,0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(139,58,42,0.08);
}
.about-feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-features li div {
  display: flex; flex-direction: column; gap: 2px;
}
.about-features li strong {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.about-features li span {
  font-size: 13px;
  color: var(--text-muted);
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img   { height: 320px; }
  .about-badge { left: 12px; bottom: -14px; }
  .about-rating { right: 12px; top: -12px; }
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(139,58,42,0.3); box-shadow: 0 8px 30px rgba(139,58,42,0.1); }
.t-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.t-text { font-size: 14px; color: #475569; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad1);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700; color: white;
}
.t-name { font-weight: 700; color: var(--text); font-size: 14px; }
.t-location { font-size: 12px; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-section { background: var(--bg2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-title { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.contact-info-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-item-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item-val { font-size: 15px; color: #1e293b; font-weight: 600; }
.contact-item-val a { color: #1e293b !important; text-decoration: none; }
.contact-item-val a:hover { color: var(--primary) !important; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.form-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(139,58,42,0.05);
  box-shadow: 0 0 0 3px rgba(139,58,42,0.15);
}
.form-select option { background: #ffffff; color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: var(--grad1);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  z-index: 9998;
  text-decoration: none;
  transition: all 0.3s;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.15); }
@keyframes wa-pulse { 0%,100%{box-shadow:0 6px 30px rgba(37,211,102,0.4);} 50%{box-shadow:0 6px 50px rgba(37,211,102,0.7);} }

/* ── FOOTER ── */
.footer { background: #0f172a; position: relative; }

.footer-wave { display: block; line-height: 0; background: var(--bg); margin-bottom: -1px; }
.footer-wave svg { width: 100%; height: 60px; display: block; }

.footer-body { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

/* Brand col */
.footer-brand-col {}
.footer-logo-link { display: inline-block; margin-bottom: 18px; }
.footer-logo-img { height: 72px; width: auto; object-fit: contain; border-radius: 10px; background-color:#FFF;
    padding: 11px;}
.footer-tagline { font-size: 13.5px; color: #ffffff; line-height: 1.75; margin-bottom: 22px; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  transition: all 0.25s;
  text-decoration: none;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.social-wa:hover  { background: #25D366; border-color: #25D366; color: #fff; }

/* Cols */
.footer-col {}
.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none;
  font-size: 13.5px;
  color: #ffffff;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: #29B6D6; padding-left: 4px; }

/* Contact list */
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.footer-contact-icon-box {
  width: 38px; height: 38px;
  background: rgba(139,58,42,0.15);
  border: 1px solid rgba(139,58,42,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.footer-contact-label {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.footer-contact-val {
  display: block;
  font-size: 13.5px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-val:hover { color: #29B6D6; }

/* Bottom bar */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 13px; color: #ffffff; }
.footer-copy span { color: #29B6D6; font-weight: 600; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── PAGE HERO (with background image + overlay) ── */
.page-hero {
  padding: 200px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139,58,42,0.88) 0%, rgba(204,17,17,0.80) 100%),
    url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1600&q=80') center/cover no-repeat;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  background: rgba(255,255,255,0.12);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}
.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}
.breadcrumb a:hover { opacity: .8; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); font-size: 10px; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 14px;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,58,42,0.75), rgba(41,182,214,0.55));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.gallery-overlay-content i { font-size: 28px; }
.gallery-overlay-content span { font-size: 14px; font-weight: 600; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-top: 14px;
  font-weight: 500;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  z-index: 100000;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--primary); border-color: var(--primary); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SUCCESS MSG ── */
.success-msg {
  display: none;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  color: #34d399;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  text-align: center;
  margin-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { max-width: 400px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 40px 0; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .slide-content { width: 100%; max-width: 100%; padding: 0 20px; padding-top: 106px; background: rgba(255,255,255,0.85); min-height: auto; }
  .slide-title { font-size: clamp(26px, 8vw, 40px); color: #111; }
  .slider-arrow { display: none; }
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { padding: 20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--card-border); }
  .stat-item:last-child { border-bottom: none; }
  .slide-btns { flex-direction: column; align-items: flex-start; }
  .products-tabs { gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: 13px; }
}



