/*
Theme Name: Oura Clean
Theme URI: https://ouraclean.in
Author: Shreeseth Industries
Author URI: https://ouraclean.in
Description: Official WordPress Theme for Oura Clean FMCG. High-performance, fully responsive, interactive stage card, pre-rendered product catalogue, dealership inquiry, and live CMS visual editing.
Version: 1.5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: oora-clean
*/

/* ==========================================================================
   OORA CLEAN - PREMIUM CLEANING PRODUCTS
   Manufactured by Shreeseth Industries, Agar Malwa, MP
   Modern Responsive Design System & Reactive Layout
   ========================================================================== */

:root {
  /* Brand Palette */
  --color-primary: #004b93;         /* Royal Sapphire Blue */
  --color-primary-dark: #002d62;    /* Deep Navy */
  --color-primary-light: #0066cc;   /* Bright Navy */
  --color-accent-cyan: #00b4d8;     /* Aqua Cyan */
  --color-accent-light-cyan: #90e0ef;
  --color-accent-green: #2ed573;    /* Fresh Leaf Green */
  --color-accent-green-dark: #10b981;
  --color-gold: #f59e0b;            /* Premium Accent */
  
  /* Neutral Palette */
  --color-bg-main: #f8fafc;
  --color-bg-card: #ffffff;
  --color-bg-glass: rgba(255, 255, 255, 0.88);
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-border-glow: rgba(0, 180, 216, 0.35);

  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 75, 147, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 75, 147, 0.12);
  --shadow-glow: 0 0 30px rgba(0, 180, 216, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 50;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-item i {
  color: var(--color-accent-light-cyan);
}

.top-bar-item a:hover {
  color: var(--color-accent-light-cyan);
  text-decoration: underline;
}

.badge-tag {
  background: rgba(46, 213, 115, 0.2);
  border: 1px solid var(--color-accent-green);
  color: var(--color-accent-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* NAVIGATION BAR */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.96);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 74px;
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
  filter: drop-shadow(0 2px 6px rgba(0, 75, 147, 0.08));
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 74px;
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--color-text-main);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cyan));
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.72rem 1.45rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0063c6 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 75, 147, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 75, 147, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent-green) 0%, #16a34a 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(46, 213, 115, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 213, 115, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.42rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* HERO SECTION - BOLD, IMPRESSIVE & REACTIVE */
.hero-section {
  position: relative;
  min-height: 88vh;
  padding: 3.5rem 0 5rem;
  background: radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.08) 0%, rgba(248, 250, 252, 0.95) 70%),
              radial-gradient(circle at 90% 80%, rgba(46, 213, 115, 0.08) 0%, transparent 60%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/hero-splash-bg.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}

#bubbleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-content-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 180, 216, 0.35);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(0, 180, 216, 0.2); }
  100% { box-shadow: 0 0 16px rgba(0, 180, 216, 0.4); }
}

.hero-badge i {
  color: var(--color-accent-green);
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-cyan) 65%, var(--color-accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
}

.hero-stat-item h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* REACTIVE 3D PRODUCT STAGE (HERO RIGHT) */
.hero-stage-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
}

.hero-stage-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 60px rgba(0, 75, 147, 0.16), 0 0 35px rgba(0, 180, 216, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out, box-shadow var(--transition-smooth);
  cursor: grab;
}

.hero-stage-card:active {
  cursor: grabbing;
}

.hero-stage-card:hover {
  box-shadow: 0 30px 75px rgba(0, 75, 147, 0.22), 0 0 45px rgba(0, 180, 216, 0.25);
}

.stage-floating-badge {
  position: absolute;
  background: #ffffff;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.badge-top-left {
  top: 15px;
  left: -20px;
  color: var(--color-primary);
  border: 1px solid rgba(0, 75, 147, 0.2);
}

.badge-bottom-right {
  bottom: 25px;
  right: -25px;
  color: var(--color-accent-green);
  border: 1px solid rgba(46, 213, 115, 0.3);
  animation-delay: 2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(2deg); }
}

.stage-product-img-wrap {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.stage-product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 45, 98, 0.2));
  transition: transform var(--transition-bounce), filter var(--transition-smooth), opacity 0.25s ease;
}

.hero-stage-card:hover .stage-product-img {
  transform: scale(1.06) translateY(-6px);
  filter: drop-shadow(0 20px 30px rgba(0, 75, 147, 0.3));
}

.stage-product-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.stage-product-tagline {
  font-size: 0.9rem;
  color: var(--color-accent-green-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.stage-product-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.meta-pill {
  background: #f1f5f9;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.stage-switcher-controls {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.45rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  flex-wrap: wrap;
  justify-content: center;
}

.switcher-btn {
  background: transparent;
  border: none;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.switcher-btn.active, .switcher-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* SECTION COMMONS */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-light {
  background-color: #ffffff;
}

.section-tint {
  background: linear-gradient(180deg, #f8fafc 0%, #edf4fa 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: rgba(0, 75, 147, 0.08);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.45rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cyan));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(0, 180, 216, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-bounce);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.12) rotate(6deg);
  background: var(--color-primary);
  color: #ffffff;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* PRODUCT CATALOG */
.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 75, 147, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.2rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.4);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.product-tag.tag-eco {
  background: var(--color-accent-green);
}

.product-thumb-wrap {
  position: relative;
  height: 270px;
  background: radial-gradient(circle, #ffffff 30%, #f1f5f9 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.product-thumb {
  max-height: 95%;
  max-width: 95%;
  object-fit: contain;
  transition: transform var(--transition-bounce);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-card:hover .product-thumb {
  transform: scale(1.08);
}

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-cyan);
  margin-bottom: 0.3rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.4rem;
}

.product-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.product-spec-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.product-spec-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.product-spec-list li i {
  color: var(--color-accent-green);
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.product-pack-size {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* DEALERSHIP B2B SECTION */
.dealership-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dealership-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dealership-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

.dealership-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.dealership-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}

.dealership-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.benefit-item i {
  color: var(--color-accent-green);
  font-size: 1.15rem;
}

.dealership-form-card {
  background: #ffffff;
  color: var(--color-text-main);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.dealership-form-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.dealership-form-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.4rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  font-size: 0.92rem;
  color: var(--color-text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 75, 147, 0.15);
}

/* MANUFACTURING & QUALITY */
.facility-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.facility-text h2 {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
}

.facility-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.facility-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.facility-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.facility-badge-item i {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.facility-badge-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
}

.facility-badge-item p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* CONTACT & LOCATION CARD */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info-panel {
  padding: 3rem 2.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-info-panel h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.contact-info-panel p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-channel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-channel-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.channel-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 75, 147, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.channel-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-cyan);
  margin-bottom: 0.2rem;
}

.channel-text p, .channel-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.4;
}

.channel-text a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-map-panel {
  position: relative;
  min-height: 420px;
}

.contact-map-panel iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FOOTER */
.site-footer {
  background: #091322;
  color: #ffffff;
  padding: 5rem 0 2rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--color-accent-cyan);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--color-text-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent-light-cyan);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* FLOATING WHATSAPP ACTION (JUST ABOVE FOOTER CREDIT) */
.floating-actions {
  position: fixed;
  bottom: 85px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp {
  background: #25d366;
  border: 2px solid #ffffff;
}

.floating-call {
  display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 2rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-stage-card {
    margin: 0 auto;
  }
  .facility-showcase-grid {
    grid-template-columns: 1fr;
  }
  .dealership-grid {
    grid-template-columns: 1fr;
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .brand-logo-wrap {
    padding-left: 20px;
  }
  .top-bar {
    display: none;
  }
  .brand-logo-img {
    height: 56px;
    max-height: 60px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .section-title {
    font-size: 1.95rem;
  }
  .dealership-banner {
    padding: 2.5rem 1.5rem;
  }
  .dealership-benefits {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn, .filter-chip {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  outline: none;
  font-family: inherit;
}

.filter-btn i, .filter-chip i {
  color: var(--color-primary);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.filter-btn:hover, .filter-chip:hover, .filter-btn.active, .filter-chip.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0, 75, 147, 0.25);
  transform: translateY(-2px);
}

.filter-btn:hover i, .filter-chip:hover i, .filter-btn.active i, .filter-chip.active i {
  color: #ffffff;
}

