/*
Theme Name: Saraswati Ply House
Theme URI: https://saraswatiplyhouse.com
Author: Saraswati Ply House
Author URI: https://saraswatiplyhouse.com
Description: Premium plywood, door hardware, and wall panels theme
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: saraswati-ply
*/

/* ============================================================
   CSS VARIABLES & ROOT
   ============================================================ */
:root {
  --red: #D0261C;
  --red-dark: #A81C14;
  --red-light: #E8352A;
  --red-muted: rgba(208,38,28,0.08);

  --white: #FFFFFF;
  --off-white: #F5E6D3;
  --light-gray: #EDE0CC;
  --border: #DDD0BA;

  --warm-brown: #8B7355;
  --warm-brown-dark: #6E5B40;
  --warm-brown-light: rgba(139,115,85,0.12);

  --charcoal: #1A1A1A;
  --charcoal-mid: #2D2D2D;
  --charcoal-light: #3F3F3F;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  
  --cream: #F5E6D3;
  --cream-dark: #E8D5BC;
  --sand: #D4B896;

  --font-display: 'Barlow Condensed', 'Oswald', sans-serif;
  --font-body: 'DM Sans', 'Nunito Sans', sans-serif;
  --font-accent: 'Barlow', sans-serif;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.13);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.16);
  --shadow-red: 0 8px 30px rgba(208,38,28,0.25);
  --shadow-brown: 0 8px 30px rgba(139,115,85,0.30);
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --transition: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.container {
  width: 90%;
  max-width: 1380px;
  margin: 0 auto;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes scrollBrands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.75s ease forwards;
}
.reveal-fast {
  opacity: 0;
  animation: fadeUp 0.45s ease forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--warm-brown);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--warm-brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 16px;
  position: relative;
  padding: 0 18px;
}
.section-subtitle::before,
.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--warm-brown);
  opacity: 0.5;
}
.section-subtitle::before { right: 100%; }
.section-subtitle::after  { left: 100%; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-title span {
  color: var(--warm-brown);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.top-bar {
  background: var(--charcoal);
  padding: 3px 0;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.3s ease;
}
#site-header.scrolled .top-bar {
  padding: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.top-bar-info { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.top-bar-item { display: flex; align-items: center; gap: 7px; }
.top-bar-item svg { width: 13px; height: 13px; opacity: 0.7; }
.top-bar-badge {
  font-weight: 700;
  color: var(--warm-brown);
  letter-spacing: 2px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.main-nav {
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
#site-header.scrolled .main-nav {
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo { display: flex; align-items: center; gap: 0; }

.logo-img-wrap img {
  height: 54px;
  width: auto;
  display: block;
  transition: filter 0.3s;
}
.logo-img-wrap .logo-dark {
  filter: brightness(0) invert(1);
}
.logo-img-wrap .logo-light {
  filter: none;
}
#site-header.scrolled .logo-img-wrap .logo-dark {
  display: none !important;
}
#site-header.scrolled .logo-img-wrap .logo-light {
  display: block !important;
}

/* Fallback text logo */
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
#site-header.scrolled .logo-name { color: var(--charcoal); }
.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-brown);
  font-weight: 700;
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links > a {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  color: var(--white);
  transition: all var(--transition);
  position: relative;
  text-transform: uppercase;
}
#site-header.scrolled .nav-links > a { color: var(--warm-brown); }

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#site-header.scrolled .nav-links > a::after {
  background: var(--warm-brown);
}
.nav-links > a:hover { color: var(--sand); }
.nav-links > a:hover::after { transform: scaleX(1); }
#site-header.scrolled .nav-links > a:hover { color: var(--warm-brown-dark); }

.nav-dropdown { position: relative; }
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--white);
  cursor: pointer;
  transition: color var(--transition);
  text-transform: uppercase;
}
#site-header.scrolled .dropdown-trigger { color: var(--charcoal); }
.dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav-dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown:hover .dropdown-trigger { color: var(--warm-brown); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
  border-top: 3px solid var(--warm-brown);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.25s;
}
.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--warm-brown);
  padding-left: 28px;
}

/* Visit Showroom button - sand normally, warm-brown on scroll */
.btn-nav-cta {
  background: var(--sand) !important;
  border-color: var(--sand) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 10px 22px !important;
  margin-left: 12px;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 0.82rem !important;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
  background: var(--warm-brown-dark) !important;
  border-color: var(--warm-brown-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,115,85,0.35) !important;
}
#site-header.scrolled .btn-nav-cta {
  background: var(--warm-brown) !important;
  border-color: var(--warm-brown) !important;
  color: var(--white) !important;
}
#site-header.scrolled .btn-nav-cta:hover {
  background: var(--warm-brown-dark) !important;
  border-color: var(--warm-brown-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
#site-header.scrolled .hamburger span { background: var(--charcoal); }

.mobile-menu {
  display: none;
  background: var(--white);
  padding: 15px 0;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 24px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.25s;
}
.mobile-menu a:hover { background: var(--light-gray); color: var(--warm-brown); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

/* On mobile: use svh (stable viewport height) so text stays fixed
   regardless of whether the hero image has loaded or not */
@media (max-width: 900px) {
  .hero-carousel {
    height: 100svh;
    min-height: 580px;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}
.carousel-slide.active { opacity: 1; z-index: 1; }

.carousel-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
}

.carousel-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.30) 45%,
    rgba(0,0,0,0.20) 100%
  );
}

.carousel-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: var(--warm-brown);
}

.carousel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.carousel-text { max-width: 720px; color: var(--white); }

.carousel-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(208,38,28,0.15);
  border: 1px solid rgba(208,38,28,0.4);
  padding: 7px 20px;
  border-radius: 3px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
}
.carousel-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.carousel-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.carousel-title .accent { color: #D4B896; }

.carousel-divider {
  width: 60px;
  height: 4px;
  background: #D4B896;
  margin-bottom: 24px;
  border-radius: 2px;
}

.carousel-desc {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0.82;
  max-width: 560px;
}

.carousel-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.carousel-nav {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 36px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.35s;
}
.carousel-dot.active {
  background: var(--sand);
  width: 56px;
}

.carousel-arrows { display: none !important; }

.scroll-indicator {
  position: absolute;
  bottom: 38px;
  left: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-text {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--warm-brown), transparent);
  animation: scrollAnim 2s infinite;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-section {
  padding: 0;
  background: var(--white);
  position: relative;
  z-index: 5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 38px 30px;
  border-right: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  background: var(--white);
}
.feature-card:last-child { border-right: none; }
.feature-card:hover {
  border-bottom-color: var(--warm-brown);
  background: var(--off-white);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--warm-brown-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--warm-brown);
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--warm-brown);
  transition: stroke 0.3s;
}
.feature-card:hover .feature-icon svg {
  stroke: white;
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature-text p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION  - cream-dark background (odd)
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: 'SPH';
  position: absolute;
  bottom: -40px;
  right: -30px;
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(0,0,0,0.025);
  pointer-events: none;
  letter-spacing: -5px;
  text-transform: uppercase;
}

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

.about-image-wrapper { position: relative; }
.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--warm-brown);
  z-index: 2;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--warm-brown);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(139,115,85,0.30);
  z-index: 3;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 3px;
}

.about-content { padding-left: 10px; }

.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.about-feature:hover {
  border-left-color: var(--warm-brown);
  transform: translateX(6px);
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--warm-brown-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 22px; height: 22px; stroke: var(--warm-brown); }
.about-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.about-feature-text p { font-size: 0.83rem; color: var(--text-light); }

/* ============================================================
   BRANDS SECTION - cream background (even)
   ============================================================ */
.brands-section {
  padding: 70px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 36px;
}

.brands-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* FIXED: Gradient overlays match background perfectly */
/* Alternative: Remove gradients completely */
.brands-slider::before,
.brands-slider::after {
  display: none;
}

.brands-track {
  display: flex;
  gap: 16px;
  animation: scrollBrands 28s linear infinite;
  width: fit-content;
  padding: 0 20px;
}

.brands-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.brands-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.brands-track {
  display: flex;
  gap: 16px;
  animation: scrollBrands 28s linear infinite;
  width: fit-content;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  background: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
  min-width: 160px;
  box-shadow: var(--shadow-sm);
}

.brand-item:hover {
  border-color: var(--warm-brown);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-logo {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(0%);
  opacity: 0.8;
}

.brand-item:hover .brand-logo {
  opacity: 1;
  transform: scale(1.02);
}

/* ============================================================
   PRODUCTS SECTION - cream-dark background (odd)
   ============================================================ */
.products-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--warm-brown);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.product-card:hover::before { transform: scaleX(1); }

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--warm-brown);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.product-badge.hot {
  background: var(--charcoal);
}

.product-content { padding: 24px; }
.product-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-content p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

.product-link { display: none; }

/* ============================================================
   WHY CHOOSE US - cream background (even)
   ============================================================ */
.why-choose-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.why-choose-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,115,85,0.08) 0%, transparent 70%);
}
.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,115,85,0.06) 0%, transparent 70%);
}

.why-choose-section .section-title { color: var(--charcoal); }
.why-choose-section .section-subtitle { color: var(--warm-brown); }
.why-choose-section .section-subtitle::before,
.why-choose-section .section-subtitle::after { background: var(--warm-brown); }
.why-choose-section .section-desc { color: var(--text-mid); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 20px;
  background: rgba(139,115,85,0.05);
  border: 1px solid rgba(139,115,85,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.why-card {
  padding: 42px 35px;
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
  border-right: 1px solid rgba(139,115,85,0.12);
  border-bottom: 1px solid rgba(139,115,85,0.12);
}
.why-card:hover {
  background: var(--cream-dark);
}
.why-card:hover .why-number { color: var(--warm-brown); }

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(139,115,85,0.5);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.why-icon {
  width: 58px;
  height: 58px;
  background: var(--warm-brown-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  border: 1px solid rgba(139,115,85,0.5);
}
.why-card:hover .why-icon {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--warm-brown); transition: stroke 0.3s; }
.why-card:hover .why-icon svg { stroke: white; }

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-card p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS SECTION - cream-dark background (odd)
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--warm-brown);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-card:hover::before { transform: scaleX(1); }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--warm-brown);
  opacity: 0.18;
  line-height: 0.8;
  margin-bottom: 10px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testimonial-stars svg {
  width: 17px;
  height: 17px;
  fill: #C8A46E;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--light-gray);
}
.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin: 0;
}
.author-title { 
  font-size: 0.74rem; 
  color: var(--text-light);
  margin: 0;
}
/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-carousel-wrapper {
    overflow: hidden;
    margin: 40px 0 30px;
    width: 100%;
    max-width: 100%;
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    width: max-content;
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

.testimonial-card-carousel {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 52px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
    flex-shrink: 0;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    
}

.testimonial-card-carousel::before {
    display: none;
}

.testimonial-card-carousel .testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--warm-brown);
    opacity: 0.18;
    line-height: 0.8;
    margin-bottom: 10px;
}

.testimonial-card-carousel .testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-card-carousel .testimonial-stars svg {
    width: 17px;
    height: 17px;
    fill: #C8A46E;
}

.testimonial-card-carousel .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 28px;
    font-style: italic;
    flex: 1;
}

.testimonial-card-carousel .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-card-carousel .author-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--warm-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.author-name-title {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.author-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
}

.author-sep {
    color: var(--warm-brown);
    font-size: 1rem;
}

.author-title {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.testimonials-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testi-prev, .testi-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--warm-brown);
}

.testi-prev:hover, .testi-next:hover {
    background: var(--warm-brown);
    color: var(--white);
    border-color: var(--warm-brown);
    transform: translateY(-2px);
}

.testi-dots {
    display: flex;
    gap: 10px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dot.active {
    background: var(--warm-brown);
    width: 28px;
    border-radius: 20px;
}

/* ============================================================
   TESTIMONIALS CAROUSEL - FIXED FOR MOBILE
   ============================================================ */
.testimonials-carousel-wrapper {
    overflow: hidden;
    margin: 40px 0 30px;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-carousel {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 52px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    border: 1px solid var(--border);
    overflow: hidden;
}

/* Desktop: 3 cards */
@media (min-width: 1025px) {
    .testimonial-card-carousel {
        width: calc((100% - 60px) / 3);
        max-width: calc((100% - 60px) / 3);
    }
}

/* Tablet: 2 cards */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-carousel-track {
        gap: 20px;
    }
    .testimonial-card-carousel {
        width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
        padding: 35px 30px;
    }
}

/* Mobile: 1 card - FIXED */
@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        overflow: hidden;
        width: 100%;
    }
    
    .testimonials-carousel-track {
        gap: 0;
        width: 100%;
    }
    
    .testimonial-card-carousel {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 25px 20px !important;
        margin: 0 !important;
    }
    
    .testimonial-card-carousel .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .testimonials-carousel-nav {
        margin-top: 25px;
    }
    
    .testi-prev, .testi-next {
        width: 38px;
        height: 38px;
    }
}

/* ============================================================
   CTA SECTION - cream background (even)
   ============================================================ */
.cta-section {
  padding: 90px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(139,115,85,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(139,115,85,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .cta-stripe {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 40%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.02) 20px,
    rgba(0,0,0,0.02) 21px
  );
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 780px; 
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER - UPDATED WITH MORE GAP ON DESKTOP
   ============================================================ */
.footer {
  background: #111111;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 80px; /* Increased from 50px to 80px for more gap on desktop */
  margin-bottom: 60px;
}

/* For larger desktop screens */
@media (min-width: 1400px) {
  .footer-grid {
    gap: 100px; /* Even more gap on very large screens */
  }
}

/* For medium desktop screens */
@media (min-width: 1100px) and (max-width: 1399px) {
  .footer-grid {
    gap: 70px;
  }
}

/* For tablet screens */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

.footer-logo p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 270px;
  margin-top: 16px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.footer-logo-tag {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-brown);
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 12px; /* Slightly increased gap between social icons */
  margin-top: 24px; /* Increased from 22px */
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { background: var(--warm-brown); border-color: var(--warm-brown); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.footer-social a:hover svg { fill: white; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--white);
  margin-bottom: 28px; /* Increased from 22px */
  padding-bottom: 14px; /* Increased from 12px */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 35px; /* Increased from 30px */
  height: 2px; /* Thicker line */
  background: var(--warm-brown);
}

.footer-col ul li { margin-bottom: 14px; } /* Increased from 10px */
.footer-col ul li a {
  font-size: 0.85rem; /* Slightly larger */
  color: rgba(255,255,255,0.45);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--warm-brown);
  font-size: 1rem;
  transition: transform 0.25s;
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 6px; /* Increased from 4px */
}
.footer-col ul li a:hover::before { transform: translateX(4px); }

.contact-item {
  display: flex;
  gap: 14px; /* Increased from 12px */
  margin-bottom: 20px; /* Increased from 16px */
  align-items: flex-start;
}
.contact-item svg { 
  width: 18px; /* Increased from 16px */
  height: 18px; 
  stroke: var(--warm-brown); 
  flex-shrink: 0; 
  margin-top: 2px; 
}
.contact-item span { 
  font-size: 0.85rem; /* Slightly larger */
  color: rgba(255,255,255,0.75); 
  line-height: 1.65; 
}
.contact-item a { 
  font-size: 0.85rem; 
  color: rgba(255,255,255,0.75); 
  line-height: 1.65; 
  transition: color 0.25s; 
}
.contact-item a:hover { color: var(--warm-brown); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 24px; /* Increased top padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-links { display: flex; gap: 28px; } /* Increased from 22px */
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.28); transition: color 0.25s; }
.footer-links a:hover { color: var(--warm-brown); }
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-content { padding-left: 0; }
}

@media (max-width: 768px) {
  .hero-carousel { min-height: 580px; }
  .carousel-title { font-size: 1.9rem; line-height: 1.08; }
  .carousel-desc { font-size: 0.9rem; }
  .carousel-buttons { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .scroll-indicator { left: 20px; }
  .top-bar-info { justify-content: center; }
  .carousel-nav { bottom: 20px; }
}

/* ============================================================
   HERO CAROUSEL OVERLAY
   ============================================================ */
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   WHATSAPP ENHANCED WIDGET
   ============================================================ */

.whatsapp-wrapper {
    position: fixed;
    bottom: 28px;
    right: 50px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

@media (max-width: 768px) {
    .whatsapp-wrapper {
        right: 16px;
        bottom: 18px;
    }
}

/* ---------- Single cycling bubble ---------- */
.wa-msg-bubble {
    background: #fff;
    color: #1a1a1a;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body, sans-serif);
    padding: 9px 16px;
    border-radius: 20px 20px 4px 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border: 1px solid rgba(37,211,102,0.20);
    align-self: flex-end;
}

.wa-msg-bubble.wa-bubble-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ---------- Main button ---------- */
.whatsapp-float {
    position: relative;
    width: 76px;
    height: 76px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.50);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.whatsapp-float svg {
    width: 44px;
    height: 44px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,0.65);
}

/* Pulse ring */
.wa-pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid rgba(37,211,102,0.55);
    animation: waPulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0%   { transform: scale(1);    opacity: 0.8; }
    70%  { transform: scale(1.55); opacity: 0;   }
    100% { transform: scale(1.55); opacity: 0;   }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .whatsapp-wrapper  { bottom: 18px; right: 16px; }
    .whatsapp-float    { width: 68px; height: 68px; }
    .whatsapp-float svg { width: 40px; height: 40px; }
    .wa-msg-bubble     { font-size: 0.76rem; padding: 8px 13px; }
}


/* ============================================================
   STATIC HERO CONTENT
   ============================================================ */
.carousel-content-static {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 60px;
  pointer-events: none;
}
.carousel-content-static .container { pointer-events: auto; }
.carousel-content-static .carousel-text {
  max-width: 780px;
  color: var(--white);
}
.carousel-content-static .carousel-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(208,38,28,0.15);
  border: 1px solid rgba(208,38,28,0.5);
  padding: 7px 20px;
  border-radius: 3px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
}
.carousel-content-static .carousel-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.carousel-content-static .carousel-title .accent { color: #D4B896; }
.carousel-content-static .carousel-divider {
  width: 60px;
  height: 4px;
  background: #D4B896;
  margin-bottom: 22px;
  border-radius: 2px;
}
.carousel-content-static .carousel-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0.85;
  max-width: 580px;
  color: var(--white);
}
.carousel-content-static .carousel-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-carousel { position: relative; }

@media (max-width: 1024px) {
  .carousel-content-static { padding-top: 90px; }
  .carousel-content-static .carousel-title { font-size: clamp(2rem, 5vw, 3.6rem); }
}
@media (max-width: 768px) {
  .carousel-content-static { padding-top: 80px; padding-bottom: 40px; align-items: center; }
  .carousel-content-static .carousel-title { font-size: 1.9rem; line-height: 1.08; }
  .carousel-content-static .carousel-desc { font-size: 0.92rem; }
  .carousel-content-static .carousel-buttons { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .carousel-content-static { padding-top: 75px; padding-bottom: 30px; }
}

/* ============================================================
   ACTIVE NAV STATES
   ============================================================ */
.nav-links a.active {
  color: var(--sand);
  position: relative;
}
.nav-links a.active::after { transform: scaleX(1); }
#site-header.scrolled .nav-links a.active { color: var(--warm-brown); }

.nav-links a.btn-nav-cta.active {
  background: var(--warm-brown-dark) !important;
  box-shadow: 0 2px 8px rgba(139,115,85,0.3);
}

.mobile-menu a.active {
  color: var(--warm-brown);
  background: rgba(139,115,85,0.06);
  border-left: 3px solid var(--warm-brown);
}

/* ============================================================
   BRANDS LOGO STYLES
   ============================================================ */
.brand-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  min-width: 160px;
  transition: all 0.3s ease;
}
.brand-logo {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 1;
}
.brand-item:hover .brand-logo { opacity: 1; transform: scale(1.05); }

@media (max-width: 768px) {
  .brand-item { min-width: 120px; padding: 0.75rem 1rem; }
  .brand-logo { max-width: 100px; max-height: 50px; }
  .brands-section { padding: 2.5rem 0; }
  .brands-label { font-size: 0.75rem; margin-bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .brand-item { min-width: 100px; padding: 0.5rem 0.75rem; }
  .brand-logo { max-width: 80px; max-height: 40px; }
}

/* ============================================================
   CALL NOW BUTTONS - Red highlight
   ============================================================ */
.btn-hero-call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-hero-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-cta-call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-cta-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

/* ============================================================
   NAVBAR CALL NOW BUTTON - Red highlight
   ============================================================ */
.btn-nav-call {
  background: var(--red) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
  border-radius: 4px !important;
  padding: 9px 18px !important;
  margin-left: 8px;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  gap: 7px !important;
}
.btn-nav-call::after { display: none !important; }
.btn-nav-call:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red) !important;
}
/* ============================================================
   DEAL POPUP MODAL
   ============================================================ */
#sph-deal-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#sph-deal-popup.active {
  display: flex;
}
.sph-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  animation: popupFadeIn 0.35s ease forwards;
}
.sph-popup-box {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  animation: popupSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.sph-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s;
  z-index: 3;
}
.sph-popup-close:hover { background: rgba(0,0,0,0.70); }
.sph-popup-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Popup image carousel */
.sph-popup-carousel {
  width: 100%;
  overflow: hidden;
  display: block;
}
.sph-popup-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}
.sph-popup-carousel-img {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
.sph-popup-header {
  background: linear-gradient(135deg, var(--charcoal, #1a1a1a) 0%, #2d2d2d 100%);
  padding: 32px 28px 26px;
  text-align: center;
}
.sph-popup-badge {
  display: inline-block;
  background: var(--warm-brown, #8B5E3C);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.sph-popup-header h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sph-popup-header h2 span { color: #D4B896; }
.sph-popup-header p {
  color: rgba(255,255,255,0.70);
  font-size: 0.87rem;
  line-height: 1.5;
}
.sph-popup-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sph-popup-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #A81C14;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 8px;
  width: 100%;
  letter-spacing: 0.03em;
  box-shadow: none;
  transition: background 0.2s;
}
.sph-popup-btn-call:hover {
  background: #A81C14;
}
.sph-popup-dismiss { display: none; }

@keyframes popupFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .sph-popup-body { padding: 14px 16px 18px; }
  .sph-popup-btn-call { font-size: 1rem; padding: 13px 24px; }
}