/* ==========================================================================
   ROOT VARIABLES
   ========================================================================== */
:root {
  --bw-dark: #1a1410;
  --bw-dark-2: #2b1d14;
  --bw-gold: #c9a24b;
  --bw-gold-light: #e0c079;
  --bw-cream: #f8f6f2;
  --bw-white: #ffffff;
  --bw-text: #2c2620;
  --bw-text-light: #6e6459;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Respect users who prefer reduced motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  color: var(--bw-text);
  background-color: var(--bw-white);
  overflow-x: hidden;
}






a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 575.98px) {
    .acimg-btn
    {
        font-size:8px!important;
        padding: 7px 5px!important;
    }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

.category-scroll,
.product-scroll,
.testimonial-scroll {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* iOS pe momentum scroll */
}

.product-track {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-track {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--bw-dark);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}

.top-bar-link {
  color: var(--bw-white);
  transition: color 0.25s ease;
}

.top-bar-link:hover {
  color: var(--bw-gold);
}

.top-bar-link i {
  color: var(--bw-gold);
  font-size: 13px;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 12px;
}

.follow-text {
  color: rgba(255, 255, 255, 0.75);
  margin-right: 10px;
  font-size: 13px;
}

.social-icon {
  color: var(--bw-white);
  margin-left: 12px;
  font-size: 13px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  color: var(--bw-gold);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .top-bar {
    padding: 6px 0;
    font-size: 11px;
  }

  .top-bar-link i {
    font-size: 12px;
      margin-right: 12px;
  }

  .social-icon {
    margin-left: 8px;
    font-size: 12px;
  }

  .top-bar-divider {
    margin: 0 8px;
  }
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.main-header {
  background-color: var(--bw-white);

  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-header .container {
  display: flex;
  align-items: center;
}

.main-header .navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.logo-img {
  height: 83px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.main-header.scrolled .logo-img {
  height: 50px;
}

/* Desktop Nav Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--bw-text);
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: var(--bw-gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--bw-gold);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 32px);
}

/* Dropdown Arrow */
.dropdown-toggle-custom::after {
  display: none !important;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 6px;
  color: var(--bw-text-light);
  transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--bw-gold);
}

/* Dropdown Menu - Hover on Desktop */
.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  min-width: 230px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  margin-top: 0 !important;
  top: 100%;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--bw-text);
  padding: 10px 22px;
  transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--bw-cream);
  color: var(--bw-gold);
  padding-left: 26px;
}

/* Get In Touch Button (Desktop + reused in Mobile) */
.btn-get-in-touch {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark) !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 26px;
  border-radius: 6px;
  border: none;
  margin-left: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.35);
}

.btn-get-in-touch:hover {
  background: var(--bw-dark);
  color: var(--bw-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 20, 16, 0.3);
}

/* Mobile Toggler (Custom Hamburger) */
.navbar-toggler {
  border: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  width: 26px;
  height: 2.5px;
  background-color: var(--bw-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   OFFCANVAS MOBILE MENU - PREMIUM DARK THEME
   ========================================================================== */
.premium-offcanvas {
  width: 280px;
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
  color: var(--bw-white);
  display: flex;
  flex-direction: column;
}

/* Header - logo left, close button right */
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
  padding: 16px 18px !important;
  flex-shrink: 0;
}

.offcanvas-logo {
  height: 32px;
}

.btn-close-custom {
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.3);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--bw-gold);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-close-custom:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: rotate(90deg);
}

/* Body */
.offcanvas-body {
  padding: 16px 18px !important;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
}

/* Nav List */
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-list > li > a {
  display: block;
  padding: 9px 4px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.mobile-nav-list > li > a.active,
.mobile-nav-list > li > a:hover {
  color: var(--bw-gold);
  padding-left: 8px;
}

/* Dropdown Toggle */
.mobile-dropdown-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  padding: 9px 4px;
  font-size: 14px;
  font-family: var(--font-heading);
}

.mobile-dropdown-toggle i {
  font-size: 11px;
  color: var(--bw-gold);
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Submenu */
.mobile-submenu {
  list-style: none;
  padding-left: 12px;
  margin: 0 0 4px;
  border-left: 1px solid rgba(201, 162, 75, 0.25);
}

.mobile-submenu li a {
  display: block;
  padding: 7px 4px 7px 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s ease;
}

.mobile-submenu li a:hover {
  color: var(--bw-gold-light);
  padding-left: 16px;
}

/* Get In Touch Button (inside offcanvas) */
.offcanvas-body .btn-get-in-touch {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 14px;
  margin-bottom: 2px;
  margin-left: 0;
  padding: 11px 20px;
  font-size: 13.5px;
}

/* Contact Info */
.mobile-contact-info {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}

.mobile-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.mobile-contact-item i {
  color: var(--bw-gold);
  font-size: 12.5px;
  margin-top: 2px;
}

/* Social Icons Row */
.mobile-social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}

.social-icon-dark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.25);
  color: var(--bw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.25s ease;
}

.social-icon-dark:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: translateY(-3px);
}


@media (max-width: 991.98px) {
  .logo-img {
    height: 56px;
  }
}

@media (max-width: 575.98px) {
  .logo-img {
    height: 60px;
  }
}
/* ==========================================================================
   HERO SLIDER (Custom Build)
   ========================================================================== */
section.bw-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.bw-hero-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bw-hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.bw-hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.bw-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 10, 8, 0.88) 0%, rgba(15, 10, 8, 0.55) 55%, rgba(15, 10, 8, 0.25) 100%);
  pointer-events: none;
}

.bw-hero-text {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.bw-hero-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(18px);
}

.bw-hero-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  color: var(--bw-white);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(22px);
}

.bw-hero-heading em {
  color: var(--bw-gold);
  font-style: normal;
}

.bw-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(22px);
}

.bw-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 6px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(201, 162, 75, 0.4);
  opacity: 0;
  transform: translateY(22px);
}

.bw-hero-btn i {
  transition: transform 0.3s ease;
}

.bw-hero-btn:hover {
  background: var(--bw-white);
  color: var(--bw-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.bw-hero-btn:hover i {
  transform: translateX(5px);
}

/* Animate only the currently-active slide's content */
.bw-hero-slide.is-active .bw-hero-tag,
.bw-hero-slide.is-active .bw-hero-heading,
.bw-hero-slide.is-active .bw-hero-desc,
.bw-hero-slide.is-active .bw-hero-btn {
  animation: bwHeroFadeUp 0.8s ease forwards;
}

.bw-hero-slide.is-active .bw-hero-tag { animation-delay: 0.15s; }
.bw-hero-slide.is-active .bw-hero-heading { animation-delay: 0.3s; }
.bw-hero-slide.is-active .bw-hero-desc { animation-delay: 0.45s; }
.bw-hero-slide.is-active .bw-hero-btn { animation-delay: 0.6s; }

@keyframes bwHeroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Arrows */
.bw-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  color: var(--bw-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bw-hero-arrow:hover {
  background: var(--bw-gold);
  border-color: var(--bw-gold);
  color: var(--bw-dark);
  transform: translateY(-50%) scale(1.08);
}

.bw-hero-prev { left: 24px; }
.bw-hero-next { right: 24px; }

/* Dots */
.bw-hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.bw-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bw-hero-dot.is-active {
  background: var(--bw-gold);
  width: 26px;
  border-radius: 5px;
}

/* ==========================================================================
   MOBILE RESPONSIVE - HERO SLIDER
   ========================================================================== */
@media (max-width: 991.98px) {
  .bw-hero-slide {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  .bw-hero-slide {
    height: 360px;
    align-items: center;
    padding-bottom: 26px;
  }

  .bw-hero-shade {
    background: linear-gradient(180deg, rgba(15, 10, 8, 0.4) 0%, rgba(15, 10, 8, 0.92) 100%);
  }

  .bw-hero-text {
    max-width: 100%;
  }

  .bw-hero-tag {
    font-size: 12.5px;
    margin-bottom: 3px;
  }

  .bw-hero-heading {
    margin-bottom: 8px;
  }

  .bw-hero-desc {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .bw-hero-btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  .bw-hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .bw-hero-prev { left: 12px; }
  .bw-hero-next { right: 12px; }

  .bw-hero-dots {
    bottom: 12px;
  }
    
    .bw-hero-arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  section.bw-hero {
    margin: 0 !important;
    padding: 0 !important;
  }

  .bw-hero-slide {
    height: 300px;
    padding-bottom: 18px;
  }

  .bw-hero-tag {
    font-size: 11px;
  }

  .bw-hero-heading {
    font-size: clamp(20px, 6.5vw, 28px);
    margin-bottom: 5px;
    line-height: 1.15;
  }

  .bw-hero-desc {
    font-size: 11.5px;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .bw-hero-btn {
    padding: 8px 18px;
    font-size: 11.5px;
    gap: 6px;
  }

  .bw-hero-arrow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .bw-hero-dots {
    bottom: 8px;
  }

  .bw-hero-dot {
    width: 7px;
    height: 7px;
  }

  .bw-hero-dot.is-active {
    width: 18px;
  }
}






/* ==========================================================================
   PRODUCT CATEGORIES
   ========================================================================== */
.product-categories {
  padding: 70px 0;
  background-color: var(--bw-white);
}

.section-heading {
  margin-bottom: 40px;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--bw-text-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--bw-dark);
  position: relative;
  padding-bottom: 16px;
  margin: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bw-gold), var(--bw-gold-light));
  border-radius: 3px;
}

/* Scroll wrapper (used only on smaller screens) */
.category-scroll {
  overflow-x: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

/* Desktop/Tablet: Grid - all 7 fit in container, no cropping */
.category-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* Card */
.category-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bw-white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(201, 162, 75, 0.25);
  border-color: var(--bw-gold-light);
}

.category-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

.category-label {
  padding: 14px 8px;
  text-align: center;
}

.category-label i {
  display: block;
  font-size: 20px;
  color: var(--bw-gold);
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-label i {
  transform: scale(1.15) rotate(-5deg);
}

.category-label span {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bw-dark);
  line-height: 1.3;
}

/* Mobile Nav Buttons - hidden by default (desktop) */
.category-nav-buttons {
  display: none;
}

@media (max-width: 767.98px) {
  .category-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }

  .category-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bw-cream);
    border: 1px solid rgba(201, 162, 75, 0.3);
    color: var(--bw-gold);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .category-nav-btn:hover,
  .category-nav-btn:active {
    background: var(--bw-gold);
    color: var(--bw-white);
  }

  .category-nav-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE - PRODUCT CATEGORIES
   ========================================================================== */

/* Tablet: 4 columns wrap */
@media (max-width: 991.98px) {
  .product-categories {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .category-track {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 18px;
  }

  .category-img {
    height: 125px;
  }
}

/* Small tablet / large mobile: switch to horizontal scroll */
@media (max-width: 767.98px) {
  .category-scroll {
    overflow-x: auto;
  }

  .category-track {
    display: flex;
    gap: 14px;
  }

  .category-card {
    flex: 0 0 auto;
    width: 150px;
  }

  .category-img {
    height: 130px;
  }
}

@media (max-width: 575.98px) {
  .product-categories {
    padding: 36px 0;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-title {
    padding-bottom: 10px;
  }

  .category-track {
    gap: 12px;
  }

  .category-card {
    width: 118px;
    scroll-snap-align: start;
  }

  .category-scroll {
    scroll-snap-type: x mandatory;
    margin: 0 -14px;
    padding: 0 14px 4px;
  }

  .category-img {
    height: 105px;
  }

  .category-label {
    padding: 10px 6px;
  }

  .category-label i {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .category-label span {
    font-size: 11px;
  }
}

/* ==========================================================================
   LATEST PRODUCTS
   ========================================================================== */

/* Mobile Bottom Nav Buttons - hidden by default (desktop) */
.product-nav-buttons {
  display: none;
}

@media (max-width: 767.98px) {
  .product-arrow {
    display: none;
  }

  .product-dots {
    display: none;
  }

  .product-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
  }

  .product-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 162, 75, 0.12);
    border: 1px solid rgba(201, 162, 75, 0.35);
    color: var(--bw-gold);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .product-nav-btn:hover,
  .product-nav-btn:active {
    background: var(--bw-gold);
    color: var(--bw-dark);
  }

  .product-nav-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
  }
}

@media (max-width: 575.98px) {
  .product-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-scroll::-webkit-scrollbar {
    display: none;
  }

  .product-track {
    transition: none;
  }

  .product-card {
    scroll-snap-align: start;
  }
}
.latest-products {
  padding: 70px 0;
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
}

.section-title-light {
  color: var(--bw-white);
}

.section-title-light::after {
  left: 50%;
}

.product-slider-wrapper {
  position: relative;
}

.product-scroll {
  overflow: hidden;
}

.product-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Card */
.product-card {
  flex: 0 0 auto;
  width: calc((100% - 80px) / 5);
  background: var(--bw-cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(201, 162, 75, 0.3);
}

.product-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--bw-white);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-info {
  padding: 18px 16px 22px;
  text-align: center;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--bw-dark);
  margin-bottom: 4px;
}

.product-info p {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--bw-text-light);
  margin-bottom: 12px;
}

.view-details {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bw-gold);
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--bw-gold);
  transition: all 0.25s ease;
}

.view-details:hover {
  color: var(--bw-dark);
  border-color: var(--bw-dark);
}

/* Arrows */
.product-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--bw-gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-arrow:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: translateY(-50%) scale(1.08);
}

.product-arrow-prev {
  left: -21px;
}

.product-arrow-next {
  right: -21px;
}

/* Dots */
.product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.product-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-dot.active {
  background: var(--bw-gold);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   MOBILE RESPONSIVE - LATEST PRODUCTS
   ========================================================================== */
@media (max-width: 1199.98px) {
  .product-card {
    width: calc((100% - 60px) / 4);
  }
}

@media (max-width: 991.98px) {
  .latest-products {
    padding: 50px 0;
  }

  .product-card {
    width: calc((100% - 40px) / 3);
  }

  .product-arrow-prev {
    left: -10px;
  }

  .product-arrow-next {
    right: -10px;
  }
}

@media (max-width: 767.98px) {
  .product-card {
    width: calc((100% - 20px) / 2);
  }

  .product-img {
    height: 160px;
  }

  .product-arrow {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .latest-products {
    padding: 36px 0;
  }

  .product-track {
    gap: 12px;
  }

  .product-card {
    width: 50%;
  }

  .product-img {
    height: 150px;
  }

  .product-info {
    padding: 14px 12px 16px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .product-info p {
    font-size: 11.5px;
    margin-bottom: 8px;
  }

  .view-details {
    font-size: 12px;
  }

  .product-arrow {
    display: none;
  }

  .product-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-scroll::-webkit-scrollbar {
    display: none;
  }

  .product-track {
    transition: none;
  }

  .product-card {
    scroll-snap-align: start;
  }

  .product-dots {
    margin-top: 18px;
  }
}

/* ==========================================================================
   ABOUT / MISSION-VISION / WHY CHOOSE US
   ========================================================================== */
.about-section {
  padding: 70px 0;
  background-color: var(--bw-cream);
}

.about-col {
  position: relative;
  padding: 0 20px;
}

.about-col:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 75, 0.35), transparent);
}

.about-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--bw-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.about-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bw-text-light);
  margin-bottom: 14px;
}

.btn-know-more {
  display: inline-block;
  background: var(--bw-dark);
  color: var(--bw-white);
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 26px;
  border-radius: 6px;
  margin-top: 6px;
  transition: all 0.3s ease;
}

.btn-know-more:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
}

/* Mission & Vision */
.mission-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mv-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bw-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bw-gold);
  transition: transform 0.35s ease;
}

.mv-item:hover .mv-icon {
  transform: scale(1.08) rotate(-4deg);
}

.mv-icon i {
  font-size: 22px;
  color: var(--bw-gold);
}

.mv-content .about-heading {
  font-size: 17px;
  margin-bottom: 8px;
}

.mv-content .about-text {
  margin-bottom: 0;
  font-size: 14px;
}

/* Why Choose Us */
.why-choose-list {
  list-style: none;
}

.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--bw-text);
  transition: all 0.25s ease;
}

.why-choose-list li:last-child {
  border-bottom: none;
}

.why-choose-list li:hover {
  padding-left: 6px;
  color: var(--bw-gold);
}

.why-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bw-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-choose-list li:hover .why-icon {
  background: var(--bw-gold);
}

.why-icon i {
  font-size: 14.5px;
  color: var(--bw-gold);
  transition: color 0.3s ease;
}

.why-choose-list li:hover .why-icon i {
  color: var(--bw-dark);
}

/* ==========================================================================
   MOBILE RESPONSIVE - ABOUT SECTION
   ========================================================================== */
@media (max-width: 991.98px) {
  .about-section {
    padding: 50px 0;
  }

  .about-col:not(:first-child)::before {
    display: none;
  }

  .about-col {
    padding: 0 10px;
    text-align: left;
  }

  .row.gy-5 {
    --bs-gutter-y: 2.5rem;
  }

  .about-col:not(:last-child) {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 36px 0;
  }

  .about-heading {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .about-text {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 10px;
  }

  .btn-know-more {
    padding: 10px 22px;
    font-size: 13px;
  }

  .mission-col {
    gap: 22px;
  }

  .mv-icon {
    width: 46px;
    height: 46px;
  }

  .mv-icon i {
    font-size: 18px;
  }

  .mv-content .about-heading {
    font-size: 15.5px;
    margin-bottom: 5px;
  }

  .mv-content .about-text {
    font-size: 13px;
  }

  .why-choose-list li {
    padding: 9px 0;
    font-size: 13.5px;
    gap: 10px;
  }

  .why-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .why-icon i {
    font-size: 13px;
  }

  .about-col:not(:last-child) {
    padding-bottom: 22px;
  }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 70px 0;
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
}

.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-scroll {
  overflow: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 auto;
  width: calc((100% - 40px) / 3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 75, 0.15);
  border-radius: 10px;
  padding: 28px 26px;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 75, 0.4);
  transform: translateY(-6px);
}

.quote-icon {
  color: var(--bw-gold);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
  min-height: 100px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bw-gold);
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bw-white);
  margin-bottom: 2px;
}

.author-info span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--bw-text-light);
}

/* Dots (Desktop/Tablet) */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--bw-gold);
  width: 24px;
  border-radius: 5px;
}

/* Mobile Bottom Nav Buttons - hidden by default (desktop) */
.testimonial-nav-buttons {
  display: none;
}

/* ==========================================================================
   MOBILE RESPONSIVE - TESTIMONIALS
   ========================================================================== */
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonial-card {
    width: calc((100% - 20px) / 2);
  }

  .testimonial-text {
    min-height: 120px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-text {
    min-height: 130px;
  }

  .testimonial-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }

  .testimonial-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 162, 75, 0.12);
    border: 1px solid rgba(201, 162, 75, 0.35);
    color: var(--bw-gold);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .testimonial-nav-btn:hover,
  .testimonial-nav-btn:active {
    background: var(--bw-gold);
    color: var(--bw-dark);
  }

  .testimonial-nav-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
  }
}

@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 36px 0;
  }

  .testimonial-track {
    gap: 12px;
  }

  .testimonial-card {
    width: 88%;
    padding: 20px 18px;
  }

  .quote-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: auto;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-info h4 {
    font-size: 13.5px;
  }

  .author-info span {
    font-size: 11px;
  }

  .testimonial-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonial-scroll::-webkit-scrollbar {
    display: none;
  }

  .testimonial-track {
    transition: none;
  }

  .testimonial-card {
    scroll-snap-align: start;
  }

  .testimonial-dots {
    display: none;
  }
}

/* ==========================================================================
   FIXED FLOATING BUTTONS (WhatsApp + Call)
   ========================================================================== */
.floating-buttons {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--bw-white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
  overflow: visible;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--bw-white);
}

.float-whatsapp {
  background: linear-gradient(135deg, #2fd66b, #1fb257);
}

.float-whatsapp:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.float-call {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
}

.float-call:hover {
  color: var(--bw-dark);
  box-shadow: 0 12px 28px rgba(201, 162, 75, 0.5);
}

/* Pulse ring animation */
.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: floatPulse 2.2s ease-out infinite;
}

.float-whatsapp .float-pulse {
  background: rgba(47, 214, 107, 0.55);
}

.float-call .float-pulse {
  background: rgba(201, 162, 75, 0.55);
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE - FLOATING BUTTONS
   ========================================================================== */
@media (max-width: 575.98px) {
  .floating-buttons {
    bottom: 18px;
    right: 16px;
    gap: 12px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
/* ==========================================================================
   GET IN TOUCH
   ========================================================================== */
.contact-section {
  padding: 50px 0;
  background-color: var(--bw-white);
}

.contact-section .row {
  align-items: stretch;
}

/* Left: Contact Form */
.contact-form-box {
  background: var(--bw-cream);
  border-radius: 10px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-box .section-heading {
  text-align: left;
  margin-bottom: 16px;
}

.contact-form-box .section-title {
  font-size: 26px;
  padding-bottom: 10px;
}

.contact-form-box .section-title::after {
  left: 0;
  transform: none;
  width: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-form .row.g-3 {
  flex: 1;
  align-content: flex-start;
  --bs-gutter-y: 0.75rem;
}

.form-field {
  position: relative;
  display: flex;
  align-items: center;
}

.form-field i {
  position: absolute;
  left: 14px;
  top: 13px;
  color: var(--bw-gold);
  font-size: 14px;
  z-index: 2;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bw-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 7px;
  padding: 11px 14px 11px 40px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--bw-text);
  transition: all 0.25s ease;
  resize: none;
}

.form-field textarea {
  min-height: 90px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--bw-text-light);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bw-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

.btn-send-message {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bw-dark);
  color: var(--bw-gold);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 28px;
  border-radius: 7px;
  border: none;
  margin-top: 14px;
  transition: all 0.3s ease;
}

.btn-send-message i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.btn-send-message:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(201, 162, 75, 0.35);
}

.btn-send-message:hover i {
  transform: translateX(4px);
}

/* Right: Contact Details Card */
.contact-details-card {
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.contact-details-body {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
}

.contact-details-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--bw-white);
  margin-bottom: 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 13px;
  transition: color 0.25s ease;
}

a.contact-detail-item:hover {
  color: var(--bw-gold);
}

.cd-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--bw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
}

.cd-hours {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cd-hours strong {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--bw-white);
  margin-bottom: 1px;
}

.cd-hours span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Need Help Strip */
.contact-need-help {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nh-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bw-dark);
  color: var(--bw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.nh-text {
  display: flex;
  flex-direction: column;
}

.nh-text strong {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--bw-dark);
}

.nh-text span {
  font-size: 11.5px;
  color: rgba(26, 20, 16, 0.75);
}

/* ==========================================================================
   MOBILE RESPONSIVE - GET IN TOUCH
   ========================================================================== */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 36px 0;
  }

  .contact-form-box {
    padding: 20px;
  }

  .contact-details-body {
    justify-content: flex-start;
    gap: 18px;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 28px 0;
  }

  .contact-form-box {
    padding: 16px;
    border-radius: 8px;
  }
}
    
    
.site-footer {
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
  padding: 60px 0 0;
}

.footer-main {
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  font-size: 30px;
  color: var(--bw-gold);
}

/* Contact Info List (replaces Newsletter) */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list li i {
  flex-shrink: 0;
  color: var(--bw-gold);
  font-size: 13.5px;
  margin-top: 2px;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}

.footer-contact-list li a:hover {
  color: var(--bw-gold);
}

/* ==========================================================================
   MOBILE RESPONSIVE - FOOTER CONTACT INFO
   ========================================================================== */
@media (max-width: 575.98px) {
  .footer-contact-list li {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 11px;
  }

  .footer-contact-list li i {
    font-size: 12px;
  }
}



.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--bw-white);
  line-height: 1.2;
}

.footer-logo-text small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--bw-gold);
  font-weight: 500;
}

.footer-about-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.25);
  color: var(--bw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.5px;
  color: var(--bw-white);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--bw-gold);
  padding-left: 4px;
}

.footer-links-grid {
  display: flex;
  gap: 24px;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 4px;
  max-width: 280px;
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--bw-white);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter input:focus {
  outline: none;
}

.footer-newsletter button {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  border: none;
  color: var(--bw-dark);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-newsletter button:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--bw-gold);
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* ==========================================================================
   MOBILE RESPONSIVE - FOOTER
   ========================================================================== */
@media (max-width: 991.98px) {
  .site-footer {
    padding: 44px 0 0;
  }

  .footer-main {
    padding-bottom: 28px;
  }
}

@media (max-width: 767.98px) {
  .footer-links-grid {
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding: 32px 0 0;
  }

  .footer-main {
    padding-bottom: 20px;
  }

  .footer-logo-icon {
    font-size: 26px;
  }

  .footer-logo-text {
    font-size: 15px;
  }

  .footer-about-text {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 12.5px;
  }

  .footer-heading {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 12.5px;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 16px 0;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom p {
    font-size: 11.5px;
  }

  .footer-bottom-links a,
  .footer-bottom-links span {
    font-size: 11.5px;
  }
}

/* ==========================================================================
   SCROLL PROGRESS INDICATOR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  bottom: 12px;
  left: 10px;
  z-index: 1000;
  width: 52px;
  height: 52px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.scroll-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-progress-ring {
  transform: rotate(-90deg);
  display: block;
}

.scroll-progress-bg {
  fill: var(--bw-white);
  stroke: rgba(201, 162, 75, 0.15);
  stroke-width: 3;
  /*filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));*/
}

.scroll-progress-bar {
  fill: none;
  stroke: var(--bw-gold);
  stroke-width: 3;
  stroke-linecap: round;
}

.scroll-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--bw-dark);
}

.scroll-progress:hover .scroll-progress-bg {
  fill: var(--bw-cream);
}

@media (max-width: 575.98px) {
  .scroll-progress {
    bottom: 18px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .scroll-progress-text {
    font-size: 9.5px;
  }
}

/* ==========================================================================
   FIXED FLOATING BUTTONS (WhatsApp + Call)
   ========================================================================== */
.floating-buttons {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--bw-white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: all 0.3s ease;
  overflow: visible;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--bw-white);
}

.float-whatsapp {
  background: linear-gradient(135deg, #2fd66b, #1fb257);
}

.float-whatsapp:hover {
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.float-call {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
}

.float-call:hover {
  color: var(--bw-dark);
  box-shadow: 0 12px 28px rgba(201, 162, 75, 0.5);
}

.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: floatPulse 2.2s ease-out infinite;
}

.float-whatsapp .float-pulse {
  background: rgba(47, 214, 107, 0.55);
}

.float-call .float-pulse {
  background: rgba(201, 162, 75, 0.55);
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 575.98px) {
  .floating-buttons {
    bottom: 18px;
    right: 16px;
    gap: 12px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .why-choose-list
  {
    padding-left: 0rem!important;
  }
}

/* ==========================================================================
   ABOUT PAGE - BANNER
   ========================================================================== */
.abtpg-banner {
  position: relative;
  height: 280px;
  background-image: url('../images/banner-main.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.abtpg-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 20, 16, 0.92) 0%, rgba(43, 29, 20, 0.85) 100%);
}

.abtpg-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.abtpg-banner-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--bw-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.abtpg-banner-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--bw-white);
  margin-bottom: 14px;
}

.abtpg-banner-title em {
  color: var(--bw-gold);
  font-style: normal;
}

.abtpg-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
}

.abtpg-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.abtpg-breadcrumb a:hover {
  color: var(--bw-gold);
}

.abtpg-breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.abtpg-breadcrumb span {
  color: var(--bw-gold);
  font-weight: 600;
}

/* ==========================================================================
   ABOUT PAGE - OUR STORY
   ========================================================================== */
.abtpg-story {
  padding: 70px 0;
  background-color: var(--bw-white);
}

.abtpg-story-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.abtpg-story-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.abtpg-story-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.4);
}

.abtpg-badge-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--bw-dark);
  line-height: 1;
}

.abtpg-badge-text {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bw-dark);
  margin-top: 4px;
  line-height: 1.3;
}

.abtpg-story-content {
  padding-left: 10px;
}

.abtpg-story-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--bw-dark);
  margin: 6px 0 16px;
}

.abtpg-story-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bw-text-light);
  margin-bottom: 14px;
}

.abtpg-story-points {
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abtpg-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bw-text);
}

.abtpg-point i {
  color: var(--bw-gold);
  font-size: 16px;
}

/* ==========================================================================
   ABOUT PAGE - STATS COUNTER
   ========================================================================== */
.abtpg-stats {
  padding: 50px 0;
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
}

.abtpg-stat-card {
  text-align: center;
  padding: 20px 10px;
}

.abtpg-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--bw-gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.abtpg-stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--bw-white);
  margin-bottom: 6px;
}

.abtpg-stat-number::after {
  content: '+';
  color: var(--bw-gold);
}

.abtpg-stat-label {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ==========================================================================
   ABOUT PAGE - CTA BANNER
   ========================================================================== */
.abtpg-cta {
  padding: 60px 0;
  background-color: var(--bw-cream);
}

.abtpg-cta-box {
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
  border-radius: 14px;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.abtpg-cta-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--bw-white);
  margin-bottom: 8px;
}

.abtpg-cta-text p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ==========================================================================
   MOBILE RESPONSIVE - ABOUT PAGE
   ========================================================================== */
@media (max-width: 991.98px) {
  .abtpg-banner {
    height: 220px;
  }

  .abtpg-story {
    padding: 50px 0;
  }

  .abtpg-story-content {
    padding-left: 0;
  }

  .abtpg-story-img img {
    height: 320px;
  }

  .abtpg-stats {
    padding: 40px 0;
  }

  .abtpg-cta {
    padding: 44px 0;
  }

  .abtpg-cta-box {
    padding: 32px 26px;
  }
}

@media (max-width: 575.98px) {
  .abtpg-banner {
    height: 180px;
  }

  .abtpg-banner-title {
    margin-bottom: 10px;
  }

  .abtpg-breadcrumb {
    font-size: 12px;
  }

  .abtpg-story {
    padding: 36px 0;
  }

  .abtpg-story-img img {
    height: 240px;
  }

  .abtpg-story-badge {
    bottom: 12px;
    left: 12px;
    padding: 12px 16px;
  }

  .abtpg-badge-number {
    font-size: 22px;
  }

  .abtpg-badge-text {
    font-size: 10px;
  }

  .abtpg-story-title {
    font-size: 21px;
    margin: 4px 0 12px;
  }

  .abtpg-story-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .abtpg-story-points {
    margin: 12px 0 18px;
    gap: 8px;
  }

  .abtpg-point {
    font-size: 12.5px;
  }

  .abtpg-stats {
    padding: 32px 0;
  }

  .abtpg-stat-card {
    padding: 10px 6px;
  }

  .abtpg-stat-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .abtpg-stat-number {
    font-size: 24px;
  }

  .abtpg-stat-label {
    font-size: 11px;
  }

  .abtpg-cta {
    padding: 32px 0;
  }

  .abtpg-cta-box {
    padding: 24px 18px;
    text-align: center;
    justify-content: center;
  }

  .abtpg-cta-text h2 {
    font-size: 19px;
  }

  .abtpg-cta-text p {
    font-size: 12.5px;
  }
}

/* ==========================================================================
   CONTACT PAGE - INFO CARDS
   ========================================================================== */
.ctpg-info {
  padding: 60px 0 20px;
  background-color: var(--bw-white);
}

.ctpg-info-card {
  text-align: center;
  padding: 32px 22px;
  background: var(--bw-cream);
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.ctpg-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(201, 162, 75, 0.18);
}

.ctpg-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bw-dark);
  color: var(--bw-gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.ctpg-info-card:hover .ctpg-info-icon {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: scale(1.08);
}

.ctpg-info-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--bw-dark);
  margin-bottom: 8px;
}

.ctpg-info-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--bw-text-light);
  line-height: 1.6;
  margin: 0;
}

.ctpg-info-card p a {
  color: var(--bw-text-light);
  transition: color 0.25s ease;
}

.ctpg-info-card p a:hover {
  color: var(--bw-gold);
}

/* ==========================================================================
   CONTACT PAGE - MAP + FORM
   ========================================================================== */
.ctpg-form-section {
  padding: 50px 0 70px;
  background-color: var(--bw-white);
}

.ctpg-map-box {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ctpg-form-section .contact-form-box {
  height: 100%;
}

.ctpg-form-section .section-heading {
  text-align: left;
  margin-bottom: 22px;
}

.ctpg-form-section .section-title::after {
  left: 0;
  transform: none;
}

/* ==========================================================================
   MOBILE RESPONSIVE - CONTACT PAGE
   ========================================================================== */
@media (max-width: 991.98px) {
  .ctpg-info {
    padding: 46px 0 10px;
  }

  .ctpg-form-section {
    padding: 40px 0 50px;
  }

  .ctpg-map-box {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .ctpg-info {
    padding: 32px 0 6px;
  }

  .ctpg-info-card {
    padding: 24px 16px;
  }

  .ctpg-info-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .ctpg-info-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .ctpg-info-card p {
    font-size: 12.5px;
  }

  .ctpg-form-section {
    padding: 28px 0 36px;
  }

  .ctpg-map-box {
    min-height: 240px;
  }

  .ctpg-form-section .section-heading {
    margin-bottom: 16px;
  }
}

/* ==========================================================================
   PAGE BANNER
   ========================================================================== */
.abtpg-banner {
  position: relative;
  height: 320px;
  background-image: url('../images/banner-main.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.abtpg-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgb(201 162 75 / 0%) 0%, #00000000 40%), radial-gradient(circle at 85% 80%, rgb(201 162 75 / 0%) 0%, transparent 40%);
  z-index: 1;
}

.abtpg-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 10, 8, 0.94) 0%, rgba(43, 29, 20, 0.88) 100%);
}

.abtpg-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.abtpg-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--bw-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.abtpg-banner-tag::before,
.abtpg-banner-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bw-gold);
  opacity: 0.6;
}

.abtpg-banner-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--bw-white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.abtpg-banner-title em {
  color: var(--bw-gold);
  font-style: normal;
}

.abtpg-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
}

.abtpg-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}

.abtpg-breadcrumb a:hover {
  color: var(--bw-gold);
}

.abtpg-breadcrumb i {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
}

.abtpg-breadcrumb span {
  color: var(--bw-gold);
  font-weight: 600;
}

/* ==========================================================================
   ACPG - INTRO SPLIT
   ========================================================================== */
.acpg-intro {
  padding: 80px 0;
  background-color: var(--bw-white);
}

.acpg-intro-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.acpg-intro-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 14px;
}

.acpg-intro-stat {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
  padding: 26px 30px;
  border-radius: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.acpg-stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--bw-gold);
  line-height: 1;
}

.acpg-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  line-height: 1.4;
}

.acpg-intro-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--bw-dark);
  margin: 8px 0 18px;
  line-height: 1.25;
}

.acpg-intro-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--bw-text-light);
  margin-bottom: 14px;
}

.acpg-highlights {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acpg-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bw-text);
}

.acpg-highlight-item i {
  color: var(--bw-gold);
  font-size: 18px;
}

/* ==========================================================================
   ACPG - PRODUCT SHOWCASE
   ========================================================================== */
.acpg-showcase {
  padding: 70px 0;
  background-color: var(--bw-cream);
}

.acpg-showcase .section-heading {
  margin-bottom: 44px;
}

.acpg-card {
  background: var(--bw-white);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(26, 20, 16, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.acpg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(201, 162, 75, 0.22);
  border-color: rgba(201, 162, 75, 0.25);
}

.acpg-card-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.acpg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.acpg-card:hover .acpg-card-img img {
  transform: scale(1.1);
}

.acpg-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(201, 162, 75, 0.4);
}

.acpg-card-body {
  padding: 24px 24px 26px;
}

.acpg-card-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--bw-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.acpg-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--bw-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.acpg-card-body p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--bw-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.acpg-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--bw-gold);
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--bw-gold);
  transition: all 0.25s ease;
}

.acpg-card-link i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.acpg-card-link:hover {
  color: var(--bw-dark);
  border-color: var(--bw-dark);
}

.acpg-card-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   ACPG - FEATURE STRIP
   ========================================================================== */
.acpg-features {
  padding: 60px 0;
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
}

.acpg-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.acpg-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid rgba(201, 162, 75, 0.15);
}

.acpg-feature:last-child {
  border-right: none;
}

.acpg-feature-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--bw-gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.acpg-feature-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--bw-white);
  margin-bottom: 6px;
}

.acpg-feature-content p {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   ACPG - CTA BANNER
   ========================================================================== */
.acpg-cta {
  padding: 80px 0;
  background-color: var(--bw-white);
  position: relative;
}

.acpg-cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.acpg-cta-inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--bw-dark);
  margin: 8px 0 14px;
}

.acpg-cta-inner p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--bw-text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ==========================================================================
   MOBILE RESPONSIVE - AUDITORIUM CHAIR PAGE
   ========================================================================== */
@media (max-width: 991.98px) {
  .abtpg-banner {
    height: 240px;
  }

  .acpg-intro {
    padding: 50px 0;
  }

  .acpg-intro-img img {
    height: 340px;
  }

  .acpg-showcase {
    padding: 50px 0;
  }

  .acpg-showcase .section-heading {
    margin-bottom: 32px;
  }

  .acpg-features-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .acpg-feature {
    border-right: none;
    padding: 0 12px;
  }

  .acpg-feature:nth-child(odd) {
    border-right: 1px solid rgba(201, 162, 75, 0.15);
  }

  .acpg-cta {
    padding: 56px 0;
  }
}

@media (max-width: 575.98px) {
  .abtpg-banner {
    height: 200px;
  }

  .abtpg-banner-tag {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .abtpg-banner-tag::before,
  .abtpg-banner-tag::after {
    width: 16px;
  }

  .abtpg-breadcrumb {
    font-size: 11.5px;
  }

  .acpg-intro {
    padding: 34px 0;
  }

  .acpg-intro-img img {
    height: 220px;
  }

  .acpg-intro-stat {
    padding: 16px 18px;
  }

  .acpg-stat-num {
    font-size: 24px;
  }

  .acpg-stat-label {
    font-size: 10px;
  }

  .acpg-intro-title {
    font-size: 20px;
    margin: 4px 0 12px;
  }

  .acpg-intro-text {
    font-size: 12.5px;
    margin-bottom: 10px;
  }

  .acpg-highlights {
    margin: 14px 0 18px;
    gap: 9px;
  }

  .acpg-highlight-item {
    font-size: 12.5px;
  }

  .acpg-highlight-item i {
    font-size: 15px;
  }

  .acpg-showcase {
    padding: 34px 0;
  }

  .acpg-showcase .section-heading {
    margin-bottom: 22px;
  }

  .acpg-card-img {
    height: 200px;
  }

  .acpg-card-body {
    padding: 18px 18px 20px;
  }

  .acpg-card-body h3 {
    font-size: 16px;
  }

  .acpg-card-body p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .acpg-features {
    padding: 34px 0;
  }

  .acpg-features-row {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .acpg-feature {
    border-right: none !important;
    padding: 0;
  }

  .acpg-feature-num {
    font-size: 20px;
  }

  .acpg-feature-content h4 {
    font-size: 14px;
  }

  .acpg-feature-content p {
    font-size: 11.5px;
  }

  .acpg-cta {
    padding: 40px 0;
  }

  .acpg-cta-inner h2 {
    font-size: 21px;
  }

  .acpg-cta-inner p {
    font-size: 12.5px;
  }
}

/* ==========================================================================
   ADVANTAGES SECTION
   ========================================================================== */
.adv-section {
  padding: 70px 0;
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
}

.adv-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--bw-white);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.adv-title em {
  color: var(--bw-gold);
  font-style: normal;
}

.adv-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bw-gold), var(--bw-gold-light));
  border-radius: 3px;
}

.adv-subtitle {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 720px;
  margin: 0 auto;
}

.adv-grid {
  margin-top: 46px;
  background: var(--bw-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.adv-card {
  height: 100%;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}

.adv-grid .col-6:not(:last-child) .adv-card::after,
.adv-grid .col-lg-3:not(:last-child) .adv-card::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.adv-card:hover {
  background: var(--bw-cream);
}

.adv-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--bw-cream);
  border: 1.5px solid rgba(201, 162, 75, 0.3);
  color: var(--bw-gold);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all 0.35s ease;
}

.adv-card:hover .adv-icon {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.4);
}

.adv-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--bw-dark);
  margin-bottom: 14px;
}

.adv-card p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--bw-text-light);
  margin: 0;
}

/* ==========================================================================
   MOBILE RESPONSIVE - ADVANTAGES SECTION
   ========================================================================== */
@media (max-width: 991.98px) {
  .adv-section {
    padding: 50px 0;
  }

  .adv-grid {
    margin-top: 34px;
    border-radius: 14px;
  }

  .adv-card {
    padding: 30px 20px;
  }

  .adv-grid .col-6:nth-child(odd) .adv-card::after {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    right: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
  }

  .adv-grid .col-6:nth-child(1) .adv-card,
  .adv-grid .col-6:nth-child(2) .adv-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 575.98px) {
  .adv-section {
    padding: 34px 0;
  }

  .adv-subtitle {
    font-size: 13px;
  }

  .adv-grid {
    margin-top: 24px;
    border-radius: 12px;
  }

  .adv-card {
    padding: 26px 18px;
  }

  .adv-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .adv-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .adv-card p {
    font-size: 12px;
    line-height: 1.6;
  }
}



/* ==========================================================================
   KEY FEATURES SECTION
   ========================================================================== */
.kf-section {
  padding: 80px 0;
  background-color: var(--bw-cream);
  position: relative;
  overflow: hidden;
}

.kf-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Left: Image */
.kf-img-wrap {
  position: relative;
}

.kf-img {
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 30px 60px rgba(26, 20, 16, 0.18);
}

.kf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.kf-img-wrap:hover .kf-img img {
  transform: scale(1.06);
}

.kf-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 36px rgba(201, 162, 75, 0.4);
}

.kf-badge-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--bw-dark);
  line-height: 1;
}

.kf-badge-text {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--bw-dark);
  margin-top: 6px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right: Content */
.kf-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--bw-dark);
  margin: 10px 0 18px;
  line-height: 1.3;
}

.kf-title em {
  color: var(--bw-gold);
  font-style: normal;
}

.kf-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--bw-text-light);
  margin-bottom: 34px;
  max-width: 540px;
}

.kf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--bw-white);
  border-radius: 12px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(26, 20, 16, 0.05);
}

.kf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.kf-item:hover {
  background: rgba(201, 162, 75, 0.08);
}

.kf-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--bw-gold);
  opacity: 0.55;
  min-width: 30px;
}

.kf-item:hover .kf-num {
  opacity: 1;
}

.kf-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bw-text);
  line-height: 1.4;
}

/* ==========================================================================
   MOBILE RESPONSIVE - KEY FEATURES SECTION
   ========================================================================== */
@media (max-width: 991.98px) {
  .kf-section {
    padding: 56px 0;
  }

  .kf-img {
    height: 340px;
  }

  .kf-badge {
    bottom: -16px;
    right: -16px;
    padding: 18px 22px;
  }

  .kf-badge-num {
    font-size: 26px;
  }

  .kf-title {
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  .kf-section {
    padding: 36px 0;
  }

  .kf-img {
    height: 240px;
    border-radius: 12px;
  }

  .kf-badge {
    bottom: -12px;
    right: -12px;
    padding: 14px 18px;
    border-radius: 10px;
  }

  .kf-badge-num {
    font-size: 20px;
  }

  .kf-badge-text {
    font-size: 9.5px;
  }

  .kf-title {
    font-size: 19px;
    margin: 24px 0 12px;
  }

  .kf-desc {
    font-size: 12.5px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .kf-grid {
    border-radius: 10px;
  }

  .kf-item {
    padding: 13px 12px;
    gap: 9px;
  }

  .kf-num {
    font-size: 15px;
    min-width: 22px;
  }

  .kf-text {
    font-size: 11.5px;
  }
}

/* ==========================================================================
   PRODUCT GRID SECTION
   ========================================================================== */
.acgrid-section {
  padding: 70px 0;
  background-color: var(--bw-white);
}

.acgrid-section .section-heading {
  margin-bottom: 44px;
}

/* ==========================================================================
   PRODUCT CARD (Image + Code Strip + Buttons)
   ========================================================================== */
.acimg-card {
  background: var(--bw-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26, 20, 16, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.acimg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(201, 162, 75, 0.18);
}

.acimg-photo {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.acimg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.acimg-card:hover .acimg-photo img {
  transform: scale(1.08);
}

/* Product Code Strip (below image, above buttons) */
.acimg-code-strip {
  padding: 8px 14px;
  background: var(--bw-dark);
  border-top: 1px solid rgba(201, 162, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.acimg-code-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bw-gold);
  text-transform: uppercase;
}

/* Action Buttons (Enquire + WhatsApp) */
.acimg-actions {
  padding: 14px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: auto;
}

.acimg-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 7px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.acimg-btn i {
  font-size: 12px;
}

.acimg-btn-enquire {
  background: var(--bw-dark);
  color: var(--bw-gold);
}

.acimg-btn-enquire:hover {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
}

.acimg-btn-whatsapp {
  background: linear-gradient(135deg, #2fd66b, #1fb257);
  color: var(--bw-white);
}

.acimg-btn-whatsapp:hover {
  background: #1a9147;
  color: var(--bw-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.acgrid-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.acgrid-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--bw-cream);
  border-radius: 40px;
}

.acgrid-page-item {
  display: flex;
}

.acgrid-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bw-text);
  transition: all 0.25s ease;
}

.acgrid-page-link:hover {
  background: rgba(201, 162, 75, 0.15);
  color: var(--bw-gold);
}

.acgrid-page-item.is-active .acgrid-page-link {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.4);
}

.acgrid-page-item.is-disabled .acgrid-page-link {
  color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  .acgrid-section {
    padding: 50px 0;
  }

  .acgrid-section .section-heading {
    margin-bottom: 32px;
  }

  .acgrid-pagination-wrap {
    margin-top: 36px;
  }
}

@media (max-width: 575.98px) {
  .acgrid-section {
    padding: 34px 0;
  }

  .acgrid-section .section-heading {
    margin-bottom: 22px;
  }

  .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .acimg-photo {
    height: 150px;
  }

  .acimg-code-strip {
    padding: 6px 10px;
  }

  .acimg-code-label {
    font-size: 9.5px;
    letter-spacing: 0.6px;
  }

  .acimg-actions {
    padding: 10px;
    gap: 6px;
  }

  .acimg-btn {
    font-size: 10px;
    padding: 8px 6px;
  }

  .acimg-btn i {
    font-size: 10.5px;
  }

  .acgrid-pagination-wrap {
    margin-top: 26px;
  }

  .acgrid-pagination {
    padding: 5px;
    gap: 4px;
  }

  .acgrid-page-link {
    min-width: 34px;
    height: 34px;
    font-size: 12.5px;
  }
}
/* ==========================================================================
   AUDITORIUM CHAIR - PAGINATION (Custom pill-style)
   ========================================================================== */
.acgrid-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.acgrid-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--bw-cream);
  border-radius: 40px;
}

.acgrid-page-item {
  display: flex;
}

.acgrid-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bw-text);
  transition: all 0.25s ease;
}

.acgrid-page-link:hover {
  background: rgba(201, 162, 75, 0.15);
  color: var(--bw-gold);
}

.acgrid-page-item.is-active .acgrid-page-link {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.4);
}

.acgrid-page-item.is-disabled .acgrid-page-link {
  color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* ==========================================================================
   MOBILE RESPONSIVE - AUDITORIUM CHAIR GRID
   ========================================================================== */
@media (max-width: 991.98px) {
  .acgrid-section {
    padding: 50px 0;
  }

  .acgrid-section .section-heading {
    margin-bottom: 32px;
  }

  .acgrid-pagination-wrap {
    margin-top: 36px;
  }
}

@media (max-width: 575.98px) {
  .acgrid-section {
    padding: 34px 0;
  }

  .acgrid-section .section-heading {
    margin-bottom: 22px;
  }

  .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .acgrid-img {
    height: 150px;
  }

  .acgrid-body {
    padding: 14px 14px 16px;
  }

  .acgrid-body h3 {
    font-size: 13px;
    margin-bottom: 12px;
    min-height: 34px;
  }

  .acgrid-eyebrow {
    font-size: 9px;
  }

  .acgrid-link {
    font-size: 10px;
    padding: 6px 6px;
  }

  .acgrid-overlay-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .acgrid-pagination-wrap {
    margin-top: 26px;
  }

  .acgrid-pagination {
    padding: 5px;
    gap: 4px;
  }

  .acgrid-page-link {
    min-width: 34px;
    height: 34px;
    font-size: 12.5px;
  }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.pdtl-section {
  padding: 70px 0;
  background-color: var(--bw-white);
}

/* Left: Gallery */
.pdtl-main-img {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bw-cream);
}

.pdtl-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.pdtl-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.4);
}

.pdtl-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.pdtl-thumb {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  opacity: 0.65;
}

.pdtl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdtl-thumb:hover {
  opacity: 1;
}

.pdtl-thumb.is-active {
  border-color: var(--bw-gold);
  opacity: 1;
}

/* Right: Content */
.pdtl-content {
  padding-left: 10px;
}

.pdtl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--bw-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pdtl-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--bw-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.pdtl-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
}

.pdtl-rating i {
  color: var(--bw-gold);
  font-size: 14px;
}

.pdtl-rating span {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--bw-text-light);
  margin-left: 6px;
}

.pdtl-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--bw-text-light);
  margin-bottom: 26px;
}

.pdtl-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 22px;
  background: var(--bw-cream);
  border-radius: 12px;
  margin-bottom: 24px;
}

.pdtl-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pdtl-spec-item i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bw-dark);
  color: var(--bw-gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdtl-spec-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bw-dark);
  margin-bottom: 3px;
}

.pdtl-spec-item span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--bw-text-light);
  line-height: 1.4;
}

.pdtl-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.pdtl-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--bw-text);
  background: var(--bw-white);
  border: 1px solid rgba(201, 162, 75, 0.25);
  padding: 7px 14px;
  border-radius: 20px;
}

.pdtl-feature-tag i {
  color: var(--bw-gold);
  font-size: 12px;
}

/* CTA Buttons */
.pdtl-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pdtl-btn-enquire,
.pdtl-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

.pdtl-btn-enquire {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.35);
}

.pdtl-btn-enquire:hover {
  background: var(--bw-dark);
  color: var(--bw-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(26, 20, 16, 0.3);
}

.pdtl-btn-whatsapp {
  background: linear-gradient(135deg, #2fd66b, #1fb257);
  color: var(--bw-white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.pdtl-btn-whatsapp:hover {
  background: #1a9147;
  color: var(--bw-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(31, 178, 87, 0.4);
}

/* ==========================================================================
   MOBILE RESPONSIVE - PRODUCT DETAIL PAGE
   ========================================================================== */
@media (max-width: 991.98px) {
  .pdtl-section {
    padding: 50px 0;
  }

  .pdtl-main-img {
    height: 380px;
  }

  .pdtl-content {
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .pdtl-section {
    padding: 34px 0;
  }

  .pdtl-main-img {
    height: 280px;
    border-radius: 10px;
  }

  .pdtl-badge {
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 5px 13px;
  }

  .pdtl-thumbs {
    gap: 8px;
    margin-top: 10px;
  }

  .pdtl-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
  }

  .pdtl-eyebrow {
    font-size: 10px;
  }

  .pdtl-title {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .pdtl-rating {
    margin-bottom: 14px;
  }

  .pdtl-rating i {
    font-size: 12px;
  }

  .pdtl-rating span {
    font-size: 11px;
  }

  .pdtl-desc {
    font-size: 12.5px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .pdtl-specs {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    margin-bottom: 18px;
  }

  .pdtl-spec-item i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .pdtl-spec-item strong {
    font-size: 11.5px;
  }

  .pdtl-spec-item span {
    font-size: 11px;
  }

  .pdtl-features {
    gap: 7px;
    margin-bottom: 22px;
  }

  .pdtl-feature-tag {
    font-size: 11px;
    padding: 6px 12px;
  }

  .pdtl-cta-row {
    gap: 10px;
  }

  .pdtl-btn-enquire,
  .pdtl-btn-whatsapp {
    padding: 12px 20px;
    font-size: 13px;
    min-width: 100%;
  }
}

/* ==========================================================================
   GALLERY - CATEGORY TABS
   ========================================================================== */
.gly-tabs-section {
  padding: 40px 0 10px;
  background-color: var(--bw-white);
}

.gly-tabs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gly-tabs-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 8px;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
}

.gly-tabs-row::-webkit-scrollbar {
  display: none;
}

.gly-tab {
  flex-shrink: 0;
  background: var(--bw-cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--bw-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 30px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.gly-tab:hover {
  background: rgba(201, 162, 75, 0.12);
  border-color: rgba(201, 162, 75, 0.3);
  color: var(--bw-gold);
}

.gly-tab.is-active {
  background: var(--bw-dark);
  border-color: var(--bw-dark);
  color: var(--bw-gold);
}

.gly-scroll-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bw-white);
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--bw-gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gly-scroll-arrow:hover {
  background: var(--bw-gold);
  color: var(--bw-white);
}

.gly-scroll-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ==========================================================================
   GALLERY - GRID
   ========================================================================== */
.gly-grid-section {
  padding: 40px 0 70px;
  background-color: var(--bw-white);
}

.gly-item {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 20, 16, 0.06);
  transition: all 0.35s ease;
}

.gly-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(201, 162, 75, 0.2);
}

.gly-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gly-item:hover img {
  transform: scale(1.12);
}

.gly-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 10, 8, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gly-item:hover .gly-overlay {
  opacity: 1;
}

.gly-overlay i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bw-gold);
  color: var(--bw-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.gly-item:hover .gly-overlay i {
  transform: scale(1);
}

/* ==========================================================================
   GALLERY - PAGINATION
   ========================================================================== */
.gly-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.gly-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--bw-cream);
  border-radius: 40px;
}

.gly-page-item {
  display: flex;
}

.gly-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--bw-text);
  transition: all 0.25s ease;
}

.gly-page-link:hover {
  background: rgba(201, 162, 75, 0.15);
  color: var(--bw-gold);
}

.gly-page-item.is-active .gly-page-link {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.4);
}

.gly-page-item.is-disabled .gly-page-link {
  color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* ==========================================================================
   GALLERY - LIGHTBOX
   ========================================================================== */
.gly-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gly-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.gly-lightbox-content {
  max-width: 85%;
  max-height: 85vh;
  text-align: center;
}

.gly-lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gly-lightbox-caption {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bw-white);
  margin-top: 16px;
}

.gly-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bw-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gly-lightbox-close:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: rotate(90deg);
}

.gly-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bw-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gly-lightbox-nav:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
}

.gly-lightbox-prev {
  left: 24px;
}

.gly-lightbox-next {
  right: 24px;
}

/* ==========================================================================
   MOBILE RESPONSIVE - GALLERY
   ========================================================================== */
@media (max-width: 991.98px) {
  .gly-grid-section {
    padding: 30px 0 50px;
  }

  .gly-item {
    height: 190px;
  }

  .gly-pagination-wrap {
    margin-top: 36px;
  }
}

@media (max-width: 575.98px) {
  .gly-tabs-section {
    padding: 26px 0 6px;
  }

  .gly-scroll-arrow {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .gly-tab {
    font-size: 12px;
    padding: 8px 16px;
  }

  .gly-grid-section {
    padding: 20px 0 36px;
  }

  .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .gly-item {
    height: 140px;
    border-radius: 9px;
  }

  .gly-overlay i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .gly-pagination-wrap {
    margin-top: 26px;
  }

  .gly-pagination {
    padding: 5px;
    gap: 4px;
  }

  .gly-page-link {
    min-width: 34px;
    height: 34px;
    font-size: 12.5px;
  }

  .gly-lightbox-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .gly-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gly-lightbox-prev {
    left: 10px;
  }

  .gly-lightbox-next {
    right: 10px;
  }

  .gly-lightbox-caption {
    font-size: 12.5px;
    margin-top: 10px;
  }
}
/* ==========================================================================
   ENQUIRY MODAL (Common)
   ========================================================================== */
.enq-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.enq-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--bw-white);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.enq-modal-close:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: rotate(90deg);
}

.enq-modal-header {
  background: linear-gradient(160deg, var(--bw-dark) 0%, var(--bw-dark-2) 100%);
  padding: 34px 32px 28px;
  text-align: center;
}

.enq-modal-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--bw-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.enq-modal-header h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 23px;
  color: var(--bw-white);
  margin: 0;
}

.enq-modal-product {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--bw-gold-light);
  margin: 8px 0 0;
}

.enq-modal-form {
  padding: 28px 32px 32px;
}

.enq-field {
  position: relative;
  margin-bottom: 16px;
}

.enq-field i {
  position: absolute;
  left: 16px;
  top: 15px;
  color: var(--bw-gold);
  font-size: 14px;
  z-index: 2;
}

.enq-field input,
.enq-field textarea {
  width: 100%;
  background: var(--bw-cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 13px 16px 13px 42px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--bw-text);
  transition: all 0.25s ease;
  resize: none;
}

.enq-field input::placeholder,
.enq-field textarea::placeholder {
  color: var(--bw-text-light);
}

.enq-field input:focus,
.enq-field textarea:focus {
  outline: none;
  border-color: var(--bw-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

.enq-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 20px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.enq-submit-btn:hover {
  background: var(--bw-dark);
  color: var(--bw-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 20, 16, 0.3);
}

/* ==========================================================================
   AUDITORIUM CHAIR - IMAGE ONLY CARD (New Simplified Design)
   ========================================================================== */
.acimg-card {
  background: var(--bw-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26, 20, 16, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.acimg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(201, 162, 75, 0.18);
}

.acimg-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.acimg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.acimg-card:hover .acimg-photo img {
  transform: scale(1.08);
}

.acimg-actions {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.acimg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.acimg-btn-enquire {
  background: var(--bw-dark);
  color: var(--bw-gold);
}

.acimg-btn-enquire:hover {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
}

.acimg-btn-whatsapp {
  background: linear-gradient(135deg, #2fd66b, #1fb257);
  color: var(--bw-white);
}

.acimg-btn-whatsapp:hover {
  background: #1a9147;
  color: var(--bw-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 575.98px) {
  .enq-modal-header {
    padding: 26px 22px 20px;
  }

  .enq-modal-header h3 {
    font-size: 19px;
  }

  .enq-modal-form {
    padding: 20px 22px 24px;
  }

  .enq-field input,
  .enq-field textarea {
    padding: 11px 14px 11px 38px;
    font-size: 12.5px;
  }

  .enq-field i {
    left: 14px;
    top: 13px;
    font-size: 12.5px;
  }

  .acimg-photo {
    height: 150px;
  }

  .acimg-actions {
    padding: 12px;
    gap: 8px;
  }

  .acimg-btn {
    font-size: 11.5px;
    padding: 9px 10px;
  }
}
.acimg-actions {
  padding: 14px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: auto;
}

.acimg-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 7px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.acimg-btn i {
  font-size: 12px;
}

.acimg-btn-enquire {
  background: var(--bw-dark);
  color: var(--bw-gold);
}




.bw-af {
  --bw-navy: #0f2a4a;
  --bw-navy-deep: #091c33;
  --bw-maroon: #7a1230;
  --bw-gold: #c9963f;
  --bw-cream: #faf8f4;
  --bw-line: #e6e1d6;
  --bw-muted: #5c6675;

  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bw-cream);
  padding: 50px 0;
  overflow-x: hidden;
}

.bw-af * { box-sizing: border-box; }

/* ---------------- IMAGE SIDE ---------------- */
.bw-af-media {
  position: relative;
  padding: 18px 18px 34px 0;
}

.bw-af-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(9, 28, 51, 0.35);
}

.bw-af-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transform: scale(1.001);
  transition: transform 0.5s ease;
}
.bw-af-media-frame:hover img { transform: scale(1.04); }

/* gold corner accent, echoes the brand divider bar */
.bw-af-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 130px;
  background: var(--bw-navy);
  border-radius: 6px;
  z-index: -1;
}

.bw-af-media-badge {
  position: absolute;
  left: -14px;
  bottom: 14px;
  background: var(--bw-gold);
  color: var(--bw-navy-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 14px 28px -8px rgba(201, 150, 63, 0.55);
}
.bw-af-media-badge strong { display: block; font-size: 20px; line-height: 1; margin-bottom: 2px; font-family: 'Poppins', sans-serif; }

/* ---------------- CONTENT SIDE ---------------- */
.bw-af-content { padding: 12px 0 12px 8px; }

.bw-af-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bw-maroon);
  margin-bottom: 18px;
}
.bw-af-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--bw-gold);
  display: inline-block;
  border-radius: 2px;
}

.bw-af-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 26px);
  line-height: 1.18;
  color: var(--bw-navy);
  margin: 0 0 22px;
}
.bw-af-title span { color: var(--bw-maroon); }

.bw-af-desc { color: var(--bw-muted); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.bw-af-desc:last-of-type { margin-bottom: 30px; }
.bw-af-desc strong { color: var(--bw-navy); font-weight: 600; }

/* stat strip */
.bw-af-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--bw-line);
  border-bottom: 1px solid var(--bw-line);
  margin-bottom: 32px;
}
.bw-af-stat {
  flex: 1;
  padding: 20px 18px 20px 0;
  border-right: 1px solid var(--bw-line);
}
.bw-af-stat:last-child { border-right: none; padding-right: 0; }
.bw-af-stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--bw-navy);
  display: block;
  line-height: 1;
}
.bw-af-stat-label {
  font-size: 12.5px;
  color: var(--bw-muted);
  margin-top: 6px;
  display: block;
  letter-spacing: 0.01em;
}

/* venue chips */
.bw-af-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.bw-af-chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bw-navy);
  background: #fff;
  border: 1px solid var(--bw-line);
  padding: 7px 14px;
  border-radius: 30px;
}

/* CTA */
.bw-af-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bw-navy);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 28px -10px rgba(15, 42, 74, 0.45);
}
.bw-af-btn:hover { background: var(--bw-maroon); color: #fff; transform: translateY(-2px); }
.bw-af-btn svg { transition: transform 0.2s ease; }
.bw-af-btn:hover svg { transform: translateX(4px); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991.98px) {
  .bw-af-media {padding: 0 0 5px;margin-bottom: 5px;}
  .bw-af-content { padding-left: 0; }
}

@media (max-width: 575.98px) {
  .bw-af { padding: 56px 0; }
  .bw-af-media-badge { left: 0; bottom: 10px; padding: 10px 16px; }
  .bw-af-stats { flex-wrap: wrap; }
  .bw-af-stat { flex: 1 1 50%; border-right: none; padding-right: 14px; }
  .bw-af-stat:nth-child(odd) { border-right: 1px solid var(--bw-line); }
  .bw-af-btn { width: 100%; justify-content: center; }
}

.acimg-btn-enquire:hover {
  background: linear-gradient(135deg, var(--bw-gold-light), var(--bw-gold));
  color: var(--bw-dark);
}

.acimg-btn-whatsapp {
  background: linear-gradient(135deg, #2fd66b, #1fb257);
  color: var(--bw-white);
}

.acimg-btn-whatsapp:hover {
  background: #1a9147;
  color: var(--bw-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   BRANDWAVE — "Why Choose Us" Section
   Bootstrap 5.3.3 grid + custom premium styling
   Palette: --bw-navy #0f2a4a | --bw-navy-deep #091c33 | --bw-maroon #7a1230
            --bw-gold #c9963f | --bw-muted #b9c4d6
   Prefix: bw-why- — scoped, won't clash with gly- / acgrid- / pdtl- / bw-af-
   ========================================================================== */

.bw-why {
  --bw-navy: #0f2a4a;
  --bw-navy-deep: #091c33;
  --bw-maroon: #a4243b;
  --bw-gold: #c9963f;
  --bw-muted: #b9c4d6;

  font-family: 'Inter', -apple-system, sans-serif;
  background: linear-gradient(155deg, var(--bw-navy) 0%, var(--bw-navy-deep) 100%);
  padding: 44px 0;
  overflow-x: hidden;
  position: relative;
}

.bw-why * { box-sizing: border-box; }

/* faint blueprint-grid texture, echoes brand's engineering-grade feel */
.bw-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,150,63,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,63,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.bw-why .container { position: relative; z-index: 1; }

/* ---------------- HEADER ---------------- */
.bw-why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bw-gold);
  margin-bottom: 16px;
}
.bw-why-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--bw-gold);
  display: inline-block;
  border-radius: 2px;
}

.bw-why-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 56px;
  max-width: 640px;
}
.bw-why-title span { color: var(--bw-gold); }

/* ---------------- IMAGE SIDE ---------------- */
.bw-why-media { position: relative; }

.bw-why-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.55);
}
.bw-why-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bw-why-media-frame:hover img { transform: scale(1.04); }

.bw-why-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,28,51,0) 55%, rgba(9,28,51,0.55) 100%);
}

/* ---------------- CHECKLIST ---------------- */
.bw-why-list { list-style: none; margin: 0; padding: 0; }

.bw-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bw-why-item:first-child { padding-top: 0; }
.bw-why-item:last-child { border-bottom: none; padding-bottom: 0; }

.bw-why-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--bw-gold);
  color: var(--bw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bw-why-icon svg { width: 15px; height: 15px; }

.bw-why-item-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.bw-why-item-text {
  color: var(--bw-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.dropdown-menu{
    height: 400px;
    overflow-x: hidden;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991.98px) {
  .bw-why-media {margin-bottom: 15px;}
  .bw-why-media-frame img { aspect-ratio: 16 / 10; }
  .bw-why-title { margin-bottom: 36px; }
}

@media (max-width: 575.98px) {
  .bw-why { padding: 56px 0; }
  .bw-why-item { gap: 12px; }
  .bw-why-icon { width: 26px; height: 26px; }
  .bw-why-icon svg { width: 13px; height: 13px; }
  .bw-why-item-title { font-size: 15px; }
  .bw-why-item-text { font-size: 14px; }
}
/* ==========================================================================
   PRODUCT CATEGORIES (New - 15 categories, 5x3 grid / mobile 2-row scroll)
   ========================================================================== */
.pcat-section {
  padding: 70px 0;
  background-color: var(--bw-white);
}

.pcat-scroll {
  overflow: visible;
}

/* Desktop: 5 columns, wraps into 3 rows naturally (15 items) */
.pcat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pcat-card {
  display: block;
  background: var(--bw-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 20, 16, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.pcat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(201, 162, 75, 0.2);
  border-color: rgba(201, 162, 75, 0.3);
}

.pcat-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.pcat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pcat-card:hover .pcat-img img {
  transform: scale(1.1);
}

.pcat-label {
  padding: 12px 8px;
  text-align: center;
}

.pcat-label i {
  display: block;
  font-size: 18px;
  color: var(--bw-gold);
  margin-bottom: 6px;
}

.pcat-label span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--bw-dark);
  line-height: 1.3;
}

/* Mobile Nav Buttons - hidden on desktop */
.pcat-nav-buttons {
  display: none;
}

/* ==========================================================================
   MOBILE RESPONSIVE - 2-ROW HORIZONTAL SCROLL
   ========================================================================== */
@media (max-width: 767.98px) {
  .pcat-section {
    padding: 40px 0;
  }

  .pcat-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .pcat-scroll::-webkit-scrollbar {
    display: none;
  }

  /* 2 rows, flows into columns horizontally */
  .pcat-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: none;
    gap: 12px;
    width: max-content;
  }

  .pcat-card {
    width: 130px;
  }

  .pcat-img {
    height: 120px;
  }

  .pcat-label {
    padding: 8px 6px;
  }

  .pcat-label i {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .pcat-label span {
    font-size: 10.5px;
  }

  .pcat-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }

  .pcat-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 162, 75, 0.12);
    border: 1px solid rgba(201, 162, 75, 0.35);
    color: var(--bw-gold);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }

  .pcat-nav-btn:hover,
  .pcat-nav-btn:active {
    background: var(--bw-gold);
    color: var(--bw-white);
  }

  .pcat-nav-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
  }
}

/* ==========================================================================
   PRODUCT IMAGE ZOOM (Click to Zoom)
   ========================================================================== */
.acimg-photo {
  cursor: pointer;
}

.acimg-zoom-icon {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 10, 8, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.acimg-card:hover .acimg-zoom-icon {
  opacity: 1;
}

.acimg-zoom-icon i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bw-gold);
  color: var(--bw-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.acimg-card:hover .acimg-zoom-icon i {
  transform: scale(1);
}

/* ==========================================================================
   ZOOM LIGHTBOX
   ========================================================================== */
.acimg-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.acimg-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.acimg-lightbox-content {
  max-width: 85%;
  max-height: 85vh;
  text-align: center;
}

.acimg-lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.acimg-lightbox-caption {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bw-white);
  margin-top: 16px;
}

.acimg-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bw-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.acimg-lightbox-close:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
  transform: rotate(90deg);
}

.acimg-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bw-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.acimg-lightbox-nav:hover {
  background: var(--bw-gold);
  color: var(--bw-dark);
}

.acimg-lightbox-prev {
  left: 24px;
}

.acimg-lightbox-next {
  right: 24px;
}

/* ==========================================================================
   MOBILE RESPONSIVE - ZOOM
   ========================================================================== */
@media (max-width: 575.98px) {
  .acimg-zoom-icon i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .acimg-lightbox-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .acimg-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .acimg-lightbox-prev {
    left: 10px;
  }

  .acimg-lightbox-next {
    right: 10px;
  }

  .acimg-lightbox-caption {
    font-size: 12.5px;
    margin-top: 10px;
  }
}