* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, .logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: capitalize;
}

h1 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
}

:root {
    --primary-red: #be1010;
    --primary-blue: #6096fd;
    --heading-black: #111111;
    --body-grey: #646464;
    --light-bg: #eaedff;
    --border-light: #c3ccff;
    --accent-color: #be1010;
    --primary-color: #be1010;
    --secondary-color: #1e293b;
    --gold: #f59e0b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --card-shadow: 0 4px 20px rgba(0,0,0,0.03);
    --hover-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    /* Additional Luxe Tokens */
    --tech-teal: #0d9488;
    --solar-amber: #f59e0b;
    --gold-bright: #ffca2c;
}

body {
  background-color: #ffffff;
  color: var(--body-grey);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(190, 16, 16, 0.1); }
  50% { box-shadow: 0 0 20px rgba(190, 16, 16, 0.1); }
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 100px 0;
}

section:nth-of-type(even) {
  background-color: var(--light-bg);
}

/* Scroll Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--accent-color);
  z-index: 2000;
  width: 0;
  transition: width 0.1s ease;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid #f1f5f9;
  padding: 1rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: visible; /* Critical: allows dropdown to extend outside nav */
}

/* ── Premium Product Cards (Professional Refinement) ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.product-card, .prod-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 100%;
}

.product-card:hover, .prod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-blue);
}

.product-card img, .prod-img-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover img, .prod-card:hover img {
    transform: scale(1.08);
}

.product-card h3, .prod-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1.5rem 0 0.8rem;
    color: #1e293b;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.product-card p, .prod-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-grey);
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-card .cta-button, .prod-info .view-btn, .cta-button {
    position: relative;
    padding: 16px 35px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.4s ease;
    background: #111;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.product-card .cta-button::before, .prod-info .view-btn::before, .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.product-card .cta-button:hover::before, .prod-info .view-btn:hover::before, .cta-button:hover::before {
    left: 0;
}

.product-card .cta-button:hover, .prod-info .view-btn:hover, .cta-button:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(190, 16, 16, 0.2);
}

nav.scrolled {
  background: #ffffff !important; /* Fully opaque white when scrolled */
  padding: 0.6rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #f1f5f9;
}



nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* No position:relative here — dropdown anchors to .dropdown li instead */
}

.logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

footer .logo img {
  height: 55px;
  /* No filter — colored logo displays properly on dark footer */
}

.logo img:hover {
  transform: scale(1.05);
}

.logo span {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.brand-red {
  color: var(--accent-color);
  font-weight: 900;
}

.brand-dark {
  color: #1f2937;
  font-weight: 800;
}

footer .brand-dark {
  color: #ffffff; /* Contrast for darker footer background */
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  background: var(--primary-red);
}

/* ========================================================
   PRODUCTS DROPDOWN MENU
   ======================================================== */
.dropdown {
  position: relative; /* Anchor dropdown to the Products li, not the page */
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background-color: #ffffff;
  box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  z-index: 1050;
  border-top: 3px solid var(--primary-red);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

/* Invisible hover bridge */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}

/* ========================================================
   UTILITY BAR (Top Bar - Match Reference Site)
   ======================================================== */
.utility-bar {
    background: var(--accent-color); /* Deep Red */
    padding: 8px 0;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 400;
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.utility-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.utility-sep {
    opacity: 0.3;
}

.utility-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.utility-social a {
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
    background: rgba(255,255,255,0.08);
}

.utility-social a:hover {
    background: #ffffff;
    color: var(--accent-color) !important;
    transform: translateY(-3px);
    border-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/* Dropdown item links */
.dropdown-content a {
  color: #333333 !important;
  padding: 13px 22px;
  text-decoration: none;
  display: block !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.25s ease;
  position: relative;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #fff5f5;
  color: var(--primary-red) !important;
  padding-left: 30px;
}

.dropdown-content a::before {
  content: '›';
  position: absolute;
  left: 12px;
  opacity: 0;
  color: var(--primary-red);
  transition: opacity 0.2s ease;
}

.dropdown-content a:hover::before {
  opacity: 1;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .dropdown-content { position: static; width: 100%; padding: 10px; box-shadow: none; border: none; margin-top: 0; }
    .dropdown:hover .dropdown-content { display: block; }
}


/* Scrolled Navbar Style */
nav.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Nav Actions & Translator */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


.hero {
  padding: 0 !important; /* Forces removal of inherited section padding for a flush banner */
  width: 100%;
  height: 85vh; /* Set consistent height for banner */
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
}

.hero-slider {
  display: flex;
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
  width: 200%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Kenburns animation applied exclusively to img to keep text crisp and still */

.slide {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  background-color: var(--primary-color);
  transform-origin: center;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes sure the image doesn't stretch or squash un-proportionally */
  object-position: center center;
  display: block;
  animation: slowZoom 20s infinite alternate linear;
  /* Use will-change to optimize smooth hardware-accelerated animations across scroll */
  will-change: transform;
}

@keyframes slowZoom {
  0% { transform: translateY(var(--scroll-y, 0px)) scale(1.05); }
  100% { transform: translateY(var(--scroll-y, 0px)) scale(1.15); }
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--primary-red);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Slider Progress Bar */
.slider-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 30;
}

.slider-progress-bar {
  height: 100%;
  background: var(--primary-red);
  width: 0%; /* Will be animated via class */
}

/* ── Infinite Professional Logo Ticker ── */
.dist-ticker {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 60px 0;
    position: relative;
    /* Engineering Grid Background */
    background-image: 
        linear-gradient(rgba(185, 28, 28, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 28, 28, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center;
    /* Premium Edge Fade */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.dist-ticker-track {
    display: flex;
    white-space: nowrap;
    gap: 4rem;
    animation: dist-scroll 40s linear infinite;
    align-items: center;
}
@media (max-width: 768px) {
    .dist-ticker-track { gap: 2rem; }
}

@keyframes dist-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 4rem)); }
}

.brand-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    transition: transform 0.3s ease;
    opacity: 1; /* Keep full visibility */
}

.brand-item:hover {
    transform: scale(1.1);
}

/* ── ThreeD Power Inspired Partner Badges ── */
.partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 30px 60px;
    border-radius: 4px; /* Industrial Sharp Edges */
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Very subtle base shadow */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    flex-shrink: 0;
}

.partner-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Lift effect like threedpower */
    border-color: var(--accent-color);
}

.badge-icon {
    width: 280px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s ease;
    filter: grayscale(1) opacity(0.4); /* Clean Monochrome */
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-badge:hover .badge-icon {
    filter: grayscale(0) opacity(1); /* Sharp Color Reveal */
}

.company-name {
    font-size: 1.3rem;
    font-weight: 950;
    color: #1e293b;
    letter-spacing: 0.8px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.brand-logo-text { font-size: 3rem; font-weight: 950; letter-spacing: -2px; margin: 0; line-height: 1; }

.logo-skf { color: #004b87; font-family: 'Arial Narrow', sans-serif; border-bottom: 5px solid #ed1c24; }
.logo-taparia { border: 4px double #004b87; padding: 5px 15px; color: #004b87; font-size: 1.5rem; letter-spacing: 2px; }
.logo-hitachi { font-family: 'Times New Roman', serif; color: #000; letter-spacing: 0; }
.logo-hitachi span { color: #e31e24; display: block; font-size: 0.6rem; font-family: sans-serif; font-weight: 800; border-top: 2px solid #e31e24; margin-top: 2px; }
.logo-caparo { 
    color: #0f172a; 
    font-weight: 950; 
    font-size: 1.8rem; 
    letter-spacing: 5px; 
    text-transform: uppercase;
    border: 3px double #1e293b;
    border-radius: 60px;
    padding: 6px 35px;
    position: relative;
    display: inline-block;
}

.logo-caparo::after {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border: 1px solid #cbd5e1;
    border-radius: 64px;
    opacity: 0.5;
}

.logo-caparo-sub {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #475569;
    letter-spacing: 4px;
    margin-top: 15px;
    display: block;
}

.brand-item:hover .logo-caparo {
    color: #000;
    border-color: #000;
    transform: scale(1.05);
}
.logo-maxspare { 
    background: linear-gradient(135deg, #e11d48, #9f1239);
    color: white; 
    padding: 12px 30px; 
    font-weight: 950; 
    font-size: 1.5rem; 
    letter-spacing: 2px;
    border-radius: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
}
.logo-maxspare span { 
    font-size: 0.7rem; 
    color: rgba(255,255,255,0.9); 
    display: block; 
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 4px;
}
.logo-norton { color: #1d4ed8; transform: skew(-15deg); border-bottom: 4px solid #1d4ed8; }
.logo-addison { font-style: italic; color: #1e3a8a; border: 2px solid #1e3a8a; border-radius: 50% / 100%; padding: 5px 25px; }
.logo-totem { color: #854d0e; display: flex; align-items: center; gap: 8px; }

.logo-safeclean {
    color: #0c4a6e; 
    font-weight: 950;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-align: center;
}
.logo-safeclean span {
    color: #166534;
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 10px;
    padding: 5px 15px;
    border: 1px solid #dcfce7;
    background: #f0fdf4;
    border-radius: 4px;
}

.slider-progress-active {
  animation: progressBarRun 6s linear forwards;
}

@keyframes progressBarRun {
  from { width: 0%; }
  to { width: 100%; }
}

.slide-content-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: transparent !important;
  text-align: center;
}

/* Animations for active slide content */
.hero-content h1, 
.hero-content p, 
.hero-content .hero-subtitle, 
.hero-content .cta-button {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide.active-content .hero-content h1,
.slide.active-content .hero-content p,
.slide.active-content .hero-content .hero-subtitle,
.slide.active-content .hero-content .cta-button {
  opacity: 1;
  transform: translateY(0);
}

.slide.active-content .hero-content .hero-subtitle { transition-delay: 0.1s; }
.slide.active-content .hero-content h1 { transition-delay: 0.2s; }
.slide.active-content .hero-content p { transition-delay: 0.3s; }
.slide.active-content .hero-content .cta-button { transition-delay: 0.4s; }

.hero-subtitle {
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  display: block;
  font-size: 0.9rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero h1 {
  font-size: 70px;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff !important;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.3rem;
  color: #f8fafc !important; /* Crisp white */
  margin-bottom: 3.5rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 3px 15px rgba(0,0,0,0.9);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #111;
  color: white !important;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(190, 16, 16, 0.3);
}

.secondary-cta {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: white !important;
}

.secondary-cta:hover {
  border-color: var(--accent-color) !important;
}


/* Section Header (Two-Tone Style) */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 45px;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-header h2 span {
  color: var(--accent-color);
}

.section-header .line {
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  width: 40px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
}

/* ========================================================
   HIGH-FIDELITY INDUSTRIAL FOOTER (Solar Amber & Tech Teal)
   ======================================================== */
footer {
  padding: 100px 0 40px;
  background: var(--primary-red);
  position: relative;
  overflow: hidden;
  color: white;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 10px;
}

.footer-col p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary-red);
  opacity: 0.5;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(8px);
}

.footer-links a:hover i {
  opacity: 1;
  transform: scale(1.2);
}

/* Contact Module */
.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.1rem;
  transition: 0.3s;
}

.footer-contact-item:hover i {
  background: var(--primary-red);
  color: #0f172a;
  transform: translateY(-3px);
}

.contact-text h6 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.contact-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Social Strip */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--primary-red);
  color: #0f172a;
  border-color: var(--primary-red);
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.85rem;
}

.brand-accent { color: #fdfdfd; font-weight: 800; }

/* ── Master Hero Design (From Image Reference) ── */
.master-hero {
    height: 500px;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('images/hero_2_resized.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.master-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 2;
}

.hero-tag {
    color: #be1010;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: block;
}

.master-hero h1 {
    font-size: 5rem;
    font-weight: 950;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.master-hero .hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.master-hero .hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.master-hero .hero-breadcrumb .dot {
    width: 8px;
    height: 8px;
    background: #be1010;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .master-hero { height: 350px; }
    .master-hero h1 { font-size: 2.8rem; }
    .hero-tag { font-size: 0.75rem; letter-spacing: 3px; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* Stat Cards */
.stat-section {
  padding: 60px 0;
  background: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .stat-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-item h3 { font-size: 2.5rem; }
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-item h3 span {
    font-size: 3.5rem;
}

.stat-item p {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Trust Ribbon */
.trust-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 3rem 2rem;
  background: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-item i {
  color: var(--primary-red);
  font-size: 1.2rem;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-red);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 2rem;
}

.feature-card h4 {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.brand-grid span {
  transition: var(--transition);
  cursor: default;
}

.brand-grid span:hover {
  color: var(--primary-red);
  transform: scale(1.1);
  opacity: 1;
}

/* ═══════════════════════════════════════════
   MOBILE STYLES  (≤ 992px)
═══════════════════════════════════════════ */
@media (max-width: 992px) {

  /* ── General layout ── */
  html, body { overflow-x: hidden !important; width: 100%; max-width: 100vw; margin: 0; padding: 0; }
  main { overflow-x: hidden !important; width: 100%; }
  .container { padding: 0 1rem !important; max-width: 100%; width: 100%; overflow-x: hidden; }
  section { padding: 50px 0 !important; }
  /* Override inline paddings on index.html sections */
  #products { padding: 50px 0 30px !important; }
  #partners { padding: 0 0 50px !important; }
  #customers { padding: 50px 0 !important; }
  #quality   { padding: 50px 0 !important; }
  h1 { font-size: 2.2rem !important; letter-spacing: -1px; }
  .section-header h2 { font-size: 1.7rem !important; }
  .section-header p { font-size: 0.9rem !important; }

  /* ── Hero Section ── */
  .hero { 
    height: 70svh; 
    min-height: 420px; 
    max-height: 600px; 
    width: 100%; 
  }
  .hero-slider { width: 200% !important; height: 100%; }
  .slide { position: relative; overflow: hidden; }
  /* Fix image display on mobile — ensure full image is visible and centered */
  .slide img {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    animation: none !important; /* Disable ken-burns on mobile for performance & full-image view */
  }
  /* Lighter overlay so image is clearly visible on mobile */
  .slide::after {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%) !important;
  }
  .slide-content-overlay { 
    position: absolute !important; 
    inset: 0 !important; 
    display: flex !important;
    align-items: center !important; /* Center vertically to avoid floating buttons at bottom */
    justify-content: center !important;
    background: none !important; /* Overlay handled by .slide::after */
  }
  .slide-content-overlay::after { display: none !important; }
  .hero-content { 
    padding: 1rem 42px !important; /* Strict 42px horizontal padding clears the 36px arrows on sides */
    text-align: center !important; /* Center text */
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }
  .hero-content h1 { 
    font-size: 1.75rem !important; 
    line-height: 1.15 !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 0.6rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
  }
  .hero-content p { 
    font-size: 0.85rem !important; 
    line-height: 1.5 !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 1.2rem !important;
    color: #e2e8f0 !important;
    padding-right: 0 !important; /* Removed right padding padding since text is centered */
  }
  .hero-subtitle { 
    font-size: 0.65rem !important; 
    letter-spacing: 2px !important; 
    margin-bottom: 0.6rem !important;
    color: #ef4444 !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .slide.active-content .hero-content h1,
  .slide.active-content .hero-content p,
  .slide.active-content .hero-content .hero-subtitle,
  .slide.active-content .hero-content .cta-button {
    opacity: 1 !important;
    transform: none !important;
  }
  .cta-button { 
    padding: 12px 24px !important; 
    font-size: 0.8rem !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .slider-arrow { 
    width: 32px !important; 
    height: 32px !important; 
    font-size: 0.85rem !important; 
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .prev-arrow { left: 5px !important; }
  .next-arrow { right: 5px !important; }
  .slider-dots { bottom: 15px !important; }

  /* ── Utility Bar ── */
  .utility-bar { padding: 8px 0; }
  .utility-bar .container { 
    flex-direction: column !important; /* Stack vertically */
    align-items: center !important;
    padding: 0 0.5rem !important;
    gap: 6px !important;
  }
  .utility-left { flex: 1; width: 100%; text-align: center; }
  .utility-info { 
    display: flex !important;
    flex-direction: column !important; 
    gap: 4px !important; 
    font-size: 0.75rem;
    align-items: center;
    justify-content: center;
    white-space: normal !important;
    text-align: center;
    width: 100%;
  }
  /* On mobile: keep both but styled compactly */
  .utility-info span { display: inline-flex !important; align-items: center; justify-content: center; width: 100%; }
  .utility-info .utility-sep { display: none !important; } /* Hide separator as elements are stacked */
  .utility-social { 
    display: flex !important;
    gap: 0.5rem; 
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .utility-social a { width: 28px; height: 28px; font-size: 0.8rem; border-radius: 4px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; border: none; }

  /* ── Floating Actions ── */
  .floating-actions { 
    bottom: 30px !important; 
    right: 15px !important; 
    gap: 12px !important;
    transform: none !important; /* Removed scale which was pushing the button out of view */
  }
  .action-btn { 
    width: 48px !important; 
    height: 48px !important; 
    font-size: 1.2rem !important; 
    box-shadow: 0 6px 16px rgba(0,0,0,0.25) !important;
  }

  /* ── Navbar ── */
  /* CRITICAL: z-index:auto removes nav's stacking context so nav-links.active
     (z-index:10001) participates in ROOT stacking context and layers above
     the overlay (z-index:10000). Without this, nav's stacking context
     (z-index:1000) traps the drawer inside it — overlay beats it and
     blocks all touch/click events on menu items. */
  nav {
    padding: 0.5rem 0;
    overflow: visible;
    z-index: auto !important;
  }
  nav .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; }

  /* Logo */
  .logo img { height: 38px !important; }
  .logo span { font-size: 0.9rem !important; font-weight: 900; letter-spacing: -0.3px; white-space: nowrap; }
  .logo a { gap: 8px !important; flex-direction: row !important; }

  /* Nav Actions — hamburger sits above normal content */
  .nav-actions { display: flex; align-items: center; flex-shrink: 0; gap: 0.5rem; }

  /* ── CRITICAL: Hide desktop nav links on mobile/tablet ── */
  .nav-links {
    display: none !important;
  }

  /* ── Menu Button (hamburger) ── */
  .menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    position: relative;
    z-index: 5;
  }
  .menu-btn i { font-size: 1.2rem; color: #1f2937 !important; }


  /* Mobile menu items - compact, no huge gaps */
  .nav-links li {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
  }
  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.2rem !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    min-height: unset !important;
  }
  .nav-links > li > a::after { display: none !important; }
  .nav-links > li > a:hover { background: #fef2f2; color: var(--accent-color); }

  /* Mobile menu header (logo + close btn inside menu) */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 2px solid var(--accent-color);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .mobile-menu-header .m-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 80%;
  }
  .mobile-menu-header .m-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }
  .mobile-menu-header .m-logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .menu-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #374151;
    cursor: pointer;
    line-height: 1;
  }

  /* Products expand btn */
  .mobile-expand-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.25s;
    user-select: none;
  }
  .mobile-expand-btn.open {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: rotate(45deg);
  }

  /* Mobile dropdown submenu */
  .dropdown-content {
    display: none !important;
    position: static !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #fafafa;
    padding: 0;
    margin: 0;
    min-width: unset;
  }
  .dropdown-content.mobile-open { display: block !important; }
  .dropdown-content a {
    padding: 0.85rem 2rem !important;
    font-size: 0.95rem !important;
    color: #374151 !important;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .dropdown-content a::before { content: '›'; color: var(--accent-color); font-size: 1.2rem; }
  .dropdown-content a:hover { background: #fef2f2; color: var(--accent-color) !important; }



  /* ── Product Grid ── */
  .product-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }

  /* ── Partners Grid ── */
  .partners-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .partner-badge {
    padding: 20px 30px !important;
  }


  /* ── Quality Card ── */
  .quality-card-wrapper { flex-direction: column !important; padding: 1.5rem !important; gap: 1.5rem !important; border-radius: 16px !important; }
  .quality-card-wrapper > div { min-width: unset !important; width: 100% !important; }
  .quality-card-wrapper h2 { font-size: 1.8rem !important; }
  .quality-card-wrapper p { font-size: 0.95rem !important; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  footer { padding: 3rem 0 1.5rem; }

  /* ── Stats ── */
  .stat-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-item h3 { font-size: 2.5rem; }

  /* ── Floating Actions — handled above in utility bar section ── */

  /* ── Master Hero (Inner pages) ── */
  .master-hero { height: 280px; }
  .master-hero h1 { font-size: 2.2rem; }

  /* ── Trust Ribbon ── */
  .trust-ribbon { gap: 1.5rem; padding: 1.5rem 1rem; flex-wrap: wrap; }
  .trust-item { font-size: 0.78rem; gap: 0.4rem; }



  /* Catalog nav scrollable */
  .cat-nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.6rem 1rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 1.2rem;
    scrollbar-width: none;
  }
  .cat-nav-links::-webkit-scrollbar { display: none; }
  .catalog-header h2 { font-size: 1.6rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .prod-card__img-wrap,
  .prod-card__icon-placeholder { height: 200px; }
}

/* menu-btn, mobile-menu-header, mobile-overlay hidden on DESKTOP only */
@media (min-width: 993px) {
  .menu-btn { display: none !important; }
  .mobile-menu-header { display: none !important; }
  .mobile-overlay { display: none !important; }
  .mobile-expand-btn { display: none !important; }
}

/* Floating Contact Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999; /* BELOW mobile nav drawer (10001) and overlay (9998) */
}

/* Hide floating buttons when mobile menu is open */
body.menu-open .floating-actions {
  display: none;
}

.action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.action-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: #3B82F6; }
#back-to-top { background-color: var(--secondary-color); border: 1px solid var(--border-color); color: var(--accent-color); display: none; }

/* Client Marquee */
.marquee-container {
  overflow: hidden;
  background: white;
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee-content {
  display: flex;
  gap: 5rem;
  animation: scroll 30s linear infinite;
  width: max-content;
  align-items: center;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.6;
  white-space: nowrap;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 3rem;
  opacity: 0.05;
  color: var(--accent-color);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(190, 16, 16, 0.1);
}

.client-meta h5 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.client-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================================
   PREMIUM WORLD-CLASS UI/UX UPGRADES (NEW ELEMENTS)
   ======================================================== */

/* UTILITY TOP BAR */
.utility-bar {
  background: var(--accent-color); /* Corporate Dark Blue */
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 0.6rem 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.utility-info i {
  color: var(--primary-red); /* Brand Action Blue */
  margin-right: 0.4rem;
}
.utility-social {
  display: flex;
  gap: 1rem;
}
.utility-social a {
  color: #e2e8f0;
  text-decoration: none;
  transition: var(--transition);
}
.utility-social a:hover {
  color: var(--primary-red);
}


/* ========================================================
   PREMIUM WORLD-CLASS UI/UX UPGRADES (5 NEW ELEMENTS)
   ======================================================== */

/* 1. Parallax Scrolling Depth Effect */
.catalog-hero, .contact-hero, .about-hero {
  background-attachment: fixed !important;
}

/* 2. Custom Gold & Navy Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--secondary-color);
  border-left: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-red), var(--accent-color));
  border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* 3. WhatsApp Pulse / Breathing Animation */
@keyframes intensePulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-btn {
  animation: intensePulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* 4. Product Image Zoom / Hover Scale Effect */
/* Makes card images smoothly zoom in when hovered */
.product-detail-card img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.product-detail-card:hover img {
  transform: scale(1.08) !important;
}
/* Ensure the rounded border doesn't break when zooming */
.product-detail-card {
  overflow: hidden;
}

/* Image wrapper in About page */
.story-grid img {
  transition: transform 0.8s ease;
}
.story-grid > div:nth-child(2):hover img {
  transform: scale(1.05);
}

/* 5. Button Glow & Ripple Effect */
.cta-button {
  position: relative;
  overflow: hidden;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.5s ease;
}
.cta-button:hover::before {
  left: 100%;
}
/* Brand Ticker (Infinite Scroll) */
.brands-section {
  padding: 4rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.brands-section::before,
.brands-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-section::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.brands-section::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.brand-track {
  display: flex;
  width: calc(300px * 16);
  animation: scrollTrack 30s linear infinite;
  align-items: center;
}

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-300px * 8)); }
}

.brand-item {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 2rem;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
  user-select: none;
  flex-shrink: 0;
}

.brand-item:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.brand-item i {
  font-size: 2.5rem;
  color: #cc0000; /* Use brand red */
}

.brand-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #334155;
  text-transform: uppercase;
}

.brands-section:hover .brand-track {
  animation-play-state: paused;
}

/* 6. Modern Toast Notification System */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  transform: translateX(120%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: auto;
  border-left: 5px solid var(--accent-color);
  font-weight: 500;
}

.toast.show {
  transform: translateX(0);
}

.toast i {
  font-size: 1.2rem;
}

.toast-success { border-left-color: #10b981; }
.toast-error { border-left-color: #ef4444; }
.toast-warning { border-left-color: #f59e0b; }

@media (max-width: 480px) {
  #toast-container {
    top: auto;
    bottom: 20px;
    right: 10px;
    left: 10px;
  }
  .toast {
    min-width: calc(100vw - 20px);
  }
}

/* ── Modern Professional Luxe Enhancements ── */
:root {
    /* Main branding remains consistent (Red/Gold) */
    /* Local tokens for luxe components can be added here if needed */
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fadeInUp { animation: fadeInUp 0.8s forwards ease-out; }
.slideInRight { animation: slideInRight 0.8s forwards ease-out; }

/* Enhanced Shadow System */
.shadow-luxe { box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.05); }
.shadow-hover { transition: box-shadow 0.3s ease; }
.shadow-hover:hover { box-shadow: 0 40px 60px -15px rgba(15, 23, 42, 0.2); }

/* Glassmorphism Utilities */
.glass { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); }
.glass-dark { background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); }

/* Luxury Buttons */
.btn-luxe {
    background: linear-gradient(135deg, #2563eb, #1e4db7);
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(30, 77, 183, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-luxe:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(30, 77, 183, 0.6);
    color: white;
    filter: brightness(1.1);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Transitions */
section { position: relative; z-index: 1; }
