/* ========================================
   Sri Narayani Traders — Premium Styles
   Redesigned 2024 | Inspired by dsigndoors.com
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #8B1A1A;
  --primary-light: #B02020;
  --primary-dark: #5C0D0D;
  --accent: #E8720C;
  --accent-dark: #C05A08;
  --gold: #C8962E;
  --cream: #FFF8EF;
  --cream-dark: #F0E4D0;
  --white: #FFFFFF;
  --dark: #1A0808;
  --text: #2C2C2C;
  --text-light: #666666;
  --text-muted: #999999;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* --- Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* --- Section Spacing --- */
.section-padding { padding: 90px 0; }
.bg-cream { background: var(--cream); }
.bg-dark-maroon { background: var(--primary-dark); }
.bg-white { background: var(--white); }

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
  padding: 0 24px;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1.5px;
  background: var(--primary);
}

.section-title .subtitle::before { left: -14px; }
.section-title .subtitle::after { right: -14px; }

.section-title .subtitle.subtitle-light {
  color: rgba(255,255,255,0.7);
}
.section-title .subtitle.subtitle-light::before,
.section-title .subtitle.subtitle-light::after {
  background: rgba(255,255,255,0.4);
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 14px;
  color: var(--dark);
}

.section-title h2.text-white { color: #fff; }
.section-title p { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 16px; }
.section-title p.text-white-60 { color: rgba(255,255,255,0.65); }

/* --- Buttons --- */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,114,12,0.35);
}

.btn-maroon {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-maroon:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,26,26,0.35);
}

.btn-outline-maroon {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 11px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-maroon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 11px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Legacy button compatibility */
.btn-gold {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-primary-custom:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 11px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-white-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }
.preloader-inner img { width: 80px; margin-bottom: 20px; animation: pulse 1.5s ease-in-out infinite; }
.preloader-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* Header phone number (replaces button) */
.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.header-phone-link i { color: var(--accent); font-size: 13px; }
.header-phone-link:hover { color: var(--accent); }

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.main-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  transition: var(--transition);
  padding: 14px 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.main-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.main-header .navbar-brand img { height: 70px; transition: var(--transition); }
.main-header.scrolled .navbar-brand img { height: 56px; }

.main-header .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
  letter-spacing: 0.2px;
  transition: var(--transition);
}
.main-header .nav-link:hover,
.main-header .nav-link.active { color: var(--primary) !important; }

.main-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.main-header .nav-link:hover::after,
.main-header .nav-link.active::after { width: calc(100% - 32px); }

.header-cta .btn { margin-left: 8px; font-size: 14px; padding: 9px 20px; border-radius: 6px; }

.header-cta .btn-call {
  color: var(--primary);
  border: 1.5px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
}
.header-cta .btn-call:hover { background: var(--primary); color: var(--white); }

.header-cta .btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header-cta .btn-whatsapp:hover { background: #1fb855; color: var(--white); }

.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
  width: 28px; height: 2px;
  background: var(--text);
  display: block;
  position: relative;
  transition: var(--transition);
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--text);
  position: absolute; left: 0;
  transition: var(--transition);
}
.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -60px;
  width: 480px;
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--primary);
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu .mega-category h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.mega-menu .mega-category a {
  display: block;
  color: var(--text-light);
  padding: 5px 0;
  font-size: 14px;
}
.mega-menu .mega-category a:hover { color: var(--primary); padding-left: 6px; }

/* ========================================
   HERO SECTION — FULL BLEED DARK
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #140404;
}

/* Right: door image fills half the viewport */
.hero-img-panel {
  position: absolute;
  right: 0; top: 0;
  width: 54%;
  height: 100%;
  z-index: 0;
}
.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient that bleeds left over image for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #140404 38%,
    rgba(20,4,4,0.82) 55%,
    rgba(20,4,4,0.25) 75%,
    transparent 100%
  );
  z-index: 1;
}

/* Container sits above overlay */
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 60px;
  width: 100%;
}

.hero-content { padding-right: 20px; }

/* Tag pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,114,12,0.15);
  border: 1px solid rgba(232,114,12,0.35);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 26px;
}
.hero-tag i { font-size: 11px; }

/* Headline */
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

/* Sub-text */
.hero-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  gap: 0;
}
.hstat {
  display: flex;
  flex-direction: column;
  padding-right: 44px;
}
.hstat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hstat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hstat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  margin-right: 44px;
  flex-shrink: 0;
}

/* Floating warranty badge — top-right of image panel */
.hero-float-badge {
  position: absolute;
  top: 140px;
  right: 40px;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-float-badge i {
  font-size: 26px;
  color: var(--primary);
}
.hero-float-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.hero-float-badge span {
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================
   SHOWROOM STRIP
   ======================================== */
.showroom-strip {
  position: relative;
  overflow: hidden;
  height: 420px;
}

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

.showroom-strip .strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(92,13,13,0.85) 40%, rgba(92,13,13,0.4));
  display: flex;
  align-items: center;
}

.strip-overlay-content {
  padding: 0 60px;
  max-width: 600px;
}

.strip-overlay-content h3 {
  font-size: 38px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.strip-overlay-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section .about-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-section .about-img-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 30px rgba(139,26,26,0.4);
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.about-experience-badge .text { font-size: 13px; font-weight: 500; margin-top: 4px; }

.about-content .about-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2 { font-size: 36px; margin-bottom: 18px; }
.about-content p { color: var(--text-light); margin-bottom: 14px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
  margin-bottom: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature-item i {
  width: 32px; height: 32px;
  background: rgba(139,26,26,0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.about-feature-item span { font-weight: 500; font-size: 14px; color: var(--text); }

/* ========================================
   CATEGORIES / PRODUCTS
   ======================================== */
.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,26,26,0.15);
}

.category-card .card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.category-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .card-img img { transform: scale(1.08); }

.category-card .card-img .card-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(92,13,13,0.65), transparent);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .card-img .card-overlay { opacity: 1; }

.category-card .card-body { padding: 22px; text-align: center; }
.category-card .card-body h5 { font-size: 19px; margin-bottom: 8px; }
.category-card .card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.category-card .card-body .btn { font-size: 13px; padding: 8px 24px; }

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,26,26,0.15);
}

.product-card .product-img { height: 260px; overflow: hidden; position: relative; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }

.product-card .product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-card .product-actions {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }

.product-card .product-actions a {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card .product-actions a:hover { background: var(--primary); color: var(--white); }

.product-card .product-body { padding: 22px; }

.product-card .product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card .product-body h5 { font-size: 18px; margin-bottom: 8px; }
.product-card .product-body h5 a { color: var(--dark); }
.product-card .product-body h5 a:hover { color: var(--primary); }
.product-card .product-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

.product-card .product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card .product-footer .btn { font-size: 13px; padding: 8px 20px; }

/* Product Filters */
.product-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }

.product-filters .filter-btn {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--text);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.product-filters .filter-btn:hover,
.product-filters .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-section { background: var(--cream); }

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,26,26,0.15);
}

.why-card .icon-box {
  width: 70px; height: 70px;
  background: rgba(139,26,26,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .icon-box {
  background: var(--primary);
  color: var(--white);
}

.why-card h5 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section { background: var(--primary-dark); }

.how-card {
  position: relative;
  text-align: center;
  padding: 40px 24px;
}

.how-card::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255,255,255,0.2);
  z-index: 2;
}

.col-lg-3:last-child .how-card::after { display: none; }

.how-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -10px;
}

.how-icon {
  width: 70px; height: 70px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--accent);
  transition: var(--transition);
}

.how-card:hover .how-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.how-card h5 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.how-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 80px;
  color: rgba(139,26,26,0.08);
  position: absolute;
  top: 10px; right: 24px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,26,26,0.12);
}

.testimonial-stars { color: #F5A623; font-size: 14px; margin-bottom: 14px; }

.testimonial-card .review-text {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 22px;
}

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

.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(139,26,26,0.2);
}

.testimonial-author .author-info h6 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--dark);
}

.testimonial-author .author-info span { font-size: 13px; color: var(--text-muted); }

/* ========================================
   GALLERY
   ======================================== */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(92,13,13,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay .gallery-info h5 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.gallery-overlay .gallery-info span { color: rgba(255,255,255,0.7); font-size: 13px; }

.gallery-overlay .zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px; height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay .zoom-icon { transform: translate(-50%, -50%) scale(1); }

/* ========================================
   FAQ
   ======================================== */
.faq-section .accordion-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  padding: 18px 22px;
  background: var(--white);
}

.faq-section .accordion-button:not(.collapsed) {
  background: rgba(139,26,26,0.04);
  color: var(--primary);
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: none;
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
}

.faq-section .accordion-button:focus { box-shadow: none; }
.faq-section .accordion-body { padding: 0 22px 18px; color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(232,114,12,0.08);
  border-radius: 50%;
}

.cta-section .cta-content { text-align: center; position: relative; z-index: 2; }
.cta-section .cta-content h2 { font-size: 38px; color: var(--white); margin-bottom: 14px; }
.cta-section .cta-content p { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 30px; }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card .icon {
  width: 60px; height: 60px;
  background: rgba(139,26,26,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--primary);
}

.contact-card h5 { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--text-light); }
.contact-card a:hover { color: var(--primary); }

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}

.contact-form .form-control::placeholder { color: var(--text-muted); }
.contact-form textarea.form-control { min-height: 130px; resize: vertical; }

.map-wrapper { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { width: 100%; height: 400px; border: none; }

/* ========================================
   COUNTERS
   ======================================== */
.counter-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 70px 0;
}

.counter-item { text-align: center; padding: 20px; }

.counter-item .counter-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item .counter-label { font-size: 15px; color: rgba(255,255,255,0.72); font-weight: 400; }

/* ========================================
   FOOTER
   ======================================== */
.main-footer {
  background: var(--primary-dark);
  padding-top: 70px;
}

.footer-top { padding-bottom: 50px; }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.58); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-widget h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }

.footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--accent);
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }

.footer-contact-item i {
  width: 34px; height: 34px;
  background: rgba(232,114,12,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p, .footer-contact-item a { color: rgba(255,255,255,0.58); font-size: 14px; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 13px; margin: 0; }
.footer-bottom a { color: var(--accent); }

/* ========================================
   FLOATING ELEMENTS
   ======================================== */
.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; z-index: 9990; }

.floating-whatsapp a {
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.floating-whatsapp a:hover { transform: scale(1.1); }

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px; left: 30px;
  z-index: 9990;
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-to-top:hover { background: var(--accent); color: var(--white); }

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 9980;
  background: var(--primary);
  padding: 10px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-cta .cta-flex { display: flex; justify-content: center; gap: 10px; }
.mobile-cta .btn { flex: 1; max-width: 180px; font-size: 13px; padding: 10px 16px; border-radius: 6px; }

/* Enquiry Modal */
.enquiry-modal .modal-content { border: none; border-radius: var(--radius-md); overflow: hidden; }

.enquiry-modal .modal-header {
  background: var(--primary);
  border: none;
  padding: 18px 22px;
}

.enquiry-modal .modal-title { color: var(--white); font-size: 19px; }
.enquiry-modal .btn-close { filter: invert(1); }
.enquiry-modal .modal-body { padding: 22px; }

/* ========================================
   INNER PAGE HERO
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, rgba(92,13,13,0.92), rgba(26,8,8,0.96)),
    url('../images/Doors/selection-o-wooden-doors-by-cataog-with-samples-interior-design-construction-concept.jpg') center/cover no-repeat;
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
}

.page-hero h1 { font-size: 50px; color: var(--white); margin-bottom: 14px; }

.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 15px; }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail-gallery { position: relative; }

.product-detail-gallery .main-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}

.product-detail-gallery .main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.product-detail-gallery .thumb-images { display: flex; gap: 12px; }

.product-detail-gallery .thumb-images img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.product-detail-gallery .thumb-images img:hover,
.product-detail-gallery .thumb-images img.active { border-color: var(--primary); }

.product-detail-info .product-category-tag {
  display: inline-block;
  background: rgba(139,26,26,0.08);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-detail-info h1 { font-size: 34px; margin-bottom: 14px; }

.product-detail-info .product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.product-detail-info .product-rating .stars { color: #F5A623; font-size: 14px; }
.product-detail-info .product-rating span { font-size: 14px; color: var(--text-muted); }

.product-detail-info .product-desc { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 22px; }

.product-specs { background: var(--cream); border-radius: var(--radius-md); padding: 22px; margin-bottom: 22px; }
.product-specs h5 { font-family: var(--font-body); font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.product-specs table { width: 100%; }
.product-specs table td { padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 14px; }
.product-specs table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }

.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========================================
   TIMELINE
   ======================================== */
.timeline { position: relative; padding: 20px 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 100%;
  background: rgba(139,26,26,0.2);
}

.timeline-item { display: flex; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }

.timeline-item .timeline-content {
  width: 45%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.2);
  z-index: 2;
}

.timeline-content h5 { font-size: 18px; margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
  .hero-content h1 { font-size: 50px; }
  .section-title h2 { font-size: 34px; }
  .hero-img-panel { width: 50%; }
  .hero-float-badge { right: calc(50% - 100px); }
}

@media (max-width: 991px) {
  /* On tablet/mobile: image behind full-width text */
  .hero-img-panel { width: 100%; opacity: 0.35; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(20,4,4,0.75) 0%, rgba(20,4,4,0.92) 100%);
  }
  .hero-inner { padding-top: 120px; padding-bottom: 50px; }
  .hero-content h1 { font-size: 42px; }
  .hero-content > p { max-width: 100%; }
  .hero-btns { justify-content: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 20px; margin-top: 44px; }
  .hstat { padding-right: 0; min-width: 110px; }
  .hstat-divider { display: none; }
  .hero-float-badge { top: 100px; right: 16px; padding: 10px 14px; }
  .hero-float-badge i { font-size: 20px; }
  .hero-float-badge strong { font-size: 12px; }
  .hero-float-badge span { font-size: 11px; }
  .section-padding { padding: 70px 0; }
  .page-hero { padding: 150px 0 80px; }
  .strip-overlay-content { padding: 0 30px; }
  .strip-overlay-content h3 { font-size: 28px; }
}

@media (max-width: 767px) {
  .hero-content h1 { font-size: 34px; }
  .showroom-strip { height: 300px; }
  .strip-overlay-content h3 { font-size: 22px; }
  .hstat-num { font-size: 28px; }
  .section-title h2 { font-size: 28px; }
  .how-card::after { display: none; }
  .mobile-cta { display: block; }
  .about-features { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; padding-left: 50px; }
  .timeline-item .timeline-content { width: 100%; }
  .timeline-item .timeline-dot { left: 20px; }
  .page-hero h1 { font-size: 34px; }
}

@media (max-width: 575px) {
  .hero-content h1 { font-size: 28px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
  .hero-stats { gap: 16px; }
  .section-title h2 { font-size: 24px; }
  .counter-item .counter-number { font-size: 36px; }
  .cta-section .cta-content h2 { font-size: 28px; }
}

@media (min-width: 992px) {
  .mobile-cta { display: none !important; }
}
