/* 
========================================================================
   ELECTROVOX ENTERPRISES - PREMIUM FUTURISTIC CORPORATE STYLESHEET
   Author: Antigravity Web Design Agency
   Description: Standard CSS3 with CSS Variables, Flexbox, Grid, Glassmorphism, 
                glowing gradients, scroll triggers and premium futuristic assets.
========================================================================
*/

/* ---------------------------------------------------------------------
   1. GOOGLE FONTS & UTILITIES
   --------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Color Tokens - Premium White & High-Voltage Yellow */
  --bg-dark-raw: 255, 255, 255;
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f3f3f3;
  
  --accent-raw: 230, 184, 0;
  --accent: #ffcc00;
  --accent-hover: #e6b800;
  --accent-glow: rgba(230, 184, 0, 0.08);
  --accent-glow-strong: rgba(230, 184, 0, 0.25);
  
  --text-primary: #111111;
  --text-secondary: #333333;
  --text-muted: #666666;
  
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(230, 184, 0, 0.15);
  --glass-border-hover: rgba(230, 184, 0, 0.4);
  
  /* Fonts */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Layout Spaces */
  --header-height: 80px;
  --section-padding: 100px;
  
  /* System Transitions (Smooth easing curve, matches Framer Motion) */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* Base resets & behavior */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  line-height: 1.6;
}

/* Custom Scrollbar - Futuristic glowing trail */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Selection highlight */
::selection {
  background-color: var(--accent);
  color: #000000;
}

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;
  outline: none;
}

ul {
  list-style: none;
}

/* ---------------------------------------------------------------------
   2. PRELOADER & BACK TO TOP & WHATSAPP FLOATER
   --------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.preloader-logo {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 221, 0, 0.3));
  animation: logoPulse 2s infinite ease-in-out;
}

.preloader-bar {
  width: 150px;
  height: 2px;
  background: rgba(255, 221, 0, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-progress {
  width: 100%;
  height: 100%;
  background: var(--accent);
  position: absolute;
  left: -100%;
  animation: preloaderAnim 1.8s infinite cubic-bezier(0.85, 0, 0.15, 1);
  box-shadow: 0 0 8px var(--accent);
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.8; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes preloaderAnim {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* Back to Top & Floating WhatsApp */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 900;
}

.btn-floating {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-back-to-top {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-back-to-top:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 12px 35px rgba(255, 221, 0, 0.3);
  transform: translateY(-5px);
}

/* ---------------------------------------------------------------------
   3. BACKGROUND & DECORATIVE MATRICES
   --------------------------------------------------------------------- */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  overflow: hidden;
  pointer-events: none;
}

.bg-glow-1 {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 221, 0, 0.04) 0%, rgba(0,0,0,0) 70%);
  top: -10%;
  right: -10%;
  filter: blur(80px);
  animation: floatSlow 25s infinite ease-in-out;
}

.bg-glow-2 {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 221, 0, 0.03) 0%, rgba(0,0,0,0) 70%);
  bottom: -10%;
  left: -20%;
  filter: blur(100px);
  animation: floatSlow 35s infinite ease-in-out alternate;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 221, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 221, 0, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  opacity: 0.7;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 8%) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ---------------------------------------------------------------------
   4. TYPOGRAPHY & BUTTONS & CONTAINER
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* Animated Headline Component */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(255, 221, 0, 0.05);
  border: 1px solid rgba(255, 221, 0, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-title span {
  background: linear-gradient(135deg, #111111 40%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Premium Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.btn-primary {
  background: var(--accent);
  color: #000000;
  border: none;
  box-shadow: 0 8px 30px rgba(255, 221, 0, 0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: none;
}

.btn-primary:hover::after {
  left: 120%;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 221, 0, 0.05);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 221, 0, 0.1);
  transform: translateY(-3px);
}

.btn svg {
  transition: var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Glassmorphism utility card */
/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: var(--scroll-percent, 0%);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
  z-index: 99999;
  pointer-events: none;
  box-shadow: 0 2px 10px var(--accent-glow-strong);
  transition: width 0.1s ease-out;
}

.glass-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(230, 184, 0, 0.08), transparent 80%);
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 0 0 30px rgba(230, 184, 0, 0.03);
  transform: translateY(-5px);
}

/* ---------------------------------------------------------------------
   5. STICKY NAVIGATION BAR
   --------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: 70px;
  border-bottom: 1px solid rgba(255, 221, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  height: 50px;
  display: flex;
  align-items: center;
}

.nav-brand svg {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 221, 0, 0.15));
}

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

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
  box-shadow: 0 0 8px var(--accent);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.navbar .btn-nav {
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Mobile Menu Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 22px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-toggle span.mid {
  width: 75%;
  align-self: flex-end;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.open span.mid {
  opacity: 0;
  transform: translateX(-20px);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------------------------------------------------------------------
   6. HERO SECTION
   --------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 221, 0, 0.05);
  border: 1px solid rgba(255, 221, 0, 0.15);
  border-radius: 30px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseNeon 1.5s infinite ease-in-out;
}

.hero-badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.hero-title span {
  display: block;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-hover) 30%, #111111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-circle-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 221, 0, 0.08) 0%, transparent 70%);
  filter: blur(30px);
  animation: breathGlow 8s infinite ease-in-out;
}

.hero-ring-1, .hero-ring-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 221, 0, 0.15);
  pointer-events: none;
}

.hero-ring-1 {
  width: 420px;
  height: 420px;
  animation: rotateClockwise 25s infinite linear;
}

.hero-ring-2 {
  width: 300px;
  height: 300px;
  border-color: rgba(255, 221, 0, 0.08);
  animation: rotateCounter 35s infinite linear;
}

.hero-display-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  perspective: 1000px;
}

.hero-card {
  width: 100%;
  padding: 30px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(25px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06), 0 0 40px rgba(230, 184, 0, 0.03);
  transform: rotateY(-8deg) rotateX(10deg);
  transition: transform 0.5s ease-out;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.hero-card:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-fan-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  margin-bottom: 25px;
}

.hero-card-brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hero-card-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hero-card-badge {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating HUD Elements */
.hud-element {
  position: absolute;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(230, 184, 0, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  pointer-events: none;
}

.hud-1 {
  top: 15%;
  right: -5%;
}

.hud-2 {
  bottom: 10%;
  left: -8%;
}

.hud-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 221, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
}

.hud-text p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.hud-text span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulseNeon {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 5px var(--accent); }
  50% { opacity: 1; box-shadow: 0 0 15px var(--accent); }
}

@keyframes breathGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes rotateClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateCounter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes hoverFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatHud1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(5px); }
}

@keyframes floatHud2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(12px) translateX(-4px); }
}

/* ---------------------------------------------------------------------
   7. ABOUT SECTION & TRUST INDICATORS
   --------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-graphics {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card-back {
  position: absolute;
  width: 85%;
  height: 90%;
  bottom: -20px;
  right: -20px;
  border: 1px solid rgba(255, 221, 0, 0.1);
  border-radius: 20px;
  background: var(--bg-secondary);
  z-index: 1;
  pointer-events: none;
}

.about-main-card {
  position: relative;
  z-index: 5;
  padding: 45px;
  width: 100%;
}

.about-tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 25px;
}

.about-points {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.about-point {
  display: flex;
  gap: 15px;
}

.about-point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 3px;
}

.about-point-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.about-point-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-card-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-desc {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Core Values cards list */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  padding: 30px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 221, 0, 0.08);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------------------------------------------------------------------
   8. BRANDS & PRODUCTS SECTION
   --------------------------------------------------------------------- */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 221, 0, 0.05);
  box-shadow: 0 0 15px var(--accent-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image-box {
  background: rgba(0, 0, 0, 0.015);
  height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 20px;
  overflow: hidden;
}

.product-image-box img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-box img {
  transform: scale(1.1) translateY(-5px);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #000000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: auto;
}

.product-tag {
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.product-action {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 1px solid rgba(255, 221, 0, 0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.product-action:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 221, 0, 0.25);
}

/* ---------------------------------------------------------------------
   9. WHY CHOOSE US & COUNTERS
   --------------------------------------------------------------------- */
.why-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

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

.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-bullet {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(0,0,0,0.01);
  border-left: 3px solid transparent;
}

.why-bullet:hover {
  border-left-color: var(--accent);
  background: rgba(230,184,0,0.02);
}

.why-bullet-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 221, 0, 0.08);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.why-bullet-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-bullet-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Animated Counters Block */
.counters-wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.counter-card {
  padding: 30px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.counter-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 221, 0, 0.2);
}

.counter-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.counter-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ---------------------------------------------------------------------
   10. SERVICES SECTION
   --------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 221, 0, 0.08) 0%, transparent 60%);
  width: 150px;
  height: 150px;
  transform: translate(50px, -50px);
  pointer-events: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 221, 0, 0.08);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  z-index: 5;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 5;
}

.service-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 5;
}

.service-link svg {
  transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

/* ---------------------------------------------------------------------
   11. PORTFOLIO & SHOWCASE GALLERY
   --------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-image-box {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  overflow: hidden;
}

.gallery-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

.gallery-category {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.2rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

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

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

.gallery-item:hover .gallery-category,
.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* ---------------------------------------------------------------------
   12. TESTIMONIALS SECTION (SLIDER/CAROUSEL)
   --------------------------------------------------------------------- */
.testimonial-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 40px;
}

.testimonial-card {
  padding: 50px;
  position: relative;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(15px);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: 45px;
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.08;
  font-family: var(--font-display);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: #222;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Slider indicators and arrows */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 221, 0, 0.2);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 221, 0, 0.3);
}

/* ---------------------------------------------------------------------
   13. FAQ SECTION (ACCORDIONS)
   --------------------------------------------------------------------- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.faq-trigger:hover,
.faq-item.active .faq-trigger {
  border-color: var(--accent);
  background: rgba(255, 221, 0, 0.02);
}

.faq-trigger span {
  padding-right: 20px;
}

.faq-trigger-icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-trigger-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.3);
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 12px 12px;
  transition: max-height 0.4s ease-out, border-color 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-content {
  border-color: var(--glass-border);
  max-height: 300px; /* Large enough to fit text */
}

.faq-inner {
  padding: 30px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   14. CONTACT SECTION (FORM & LOCAL MARKUP CODES)
   --------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  padding: 30px;
  display: flex;
  gap: 20px;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 221, 0, 0.08);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-card-details p,
.contact-card-details a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-card-details a:hover {
  color: var(--accent);
}

/* Business Hours Badge List */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.hours-day {
  color: var(--text-secondary);
}

.hours-time {
  color: var(--accent);
  font-weight: 600;
}

/* Interactive Futuristic Form */
.contact-form-box {
  padding: 45px;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.form-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.form-input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.015);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

textarea.form-input {
  resize: vertical;
  min-height: 130px;
}

.form-input:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(230, 184, 0, 0.05);
}

/* Validation styling */
.form-input.error {
  border-color: #ff3333;
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.05);
}

.error-msg {
  font-size: 0.75rem;
  color: #ff3333;
  position: absolute;
  bottom: -18px;
  left: 0;
  font-weight: 500;
  opacity: 0;
  transition: var(--transition-fast);
}

.error-msg.visible {
  opacity: 1;
}

.contact-form .btn-submit {
  width: 100%;
  margin-top: 10px;
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 0 0 20px rgba(230, 184, 0, 0.1);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  color: var(--accent);
  font-size: 1.3rem;
}

.toast-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.toast-msg {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Map placeholder widget with premium outline */
.map-container {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 30px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.map-placeholder-icon {
  font-size: 2.2rem;
  color: var(--accent);
  animation: hoverFloat 3s infinite ease-in-out;
}

.map-placeholder p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.map-btn {
  padding: 8px 18px;
  font-size: 0.75rem;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------
   15. FOOTER DESIGN
   --------------------------------------------------------------------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(230, 184, 0, 0.15);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
  align-self: flex-start;
  filter: drop-shadow(0 0 10px rgba(255, 221, 0, 0.15));
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '▪';
  color: var(--accent);
  font-size: 0.6rem;
  transition: var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--accent);
  width: 16px;
  margin-top: 3px;
}

.footer-newsletter h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.5);
  transition: var(--transition-fast);
}

.newsletter-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 221, 0, 0.05);
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 0.85rem;
  width: 60%;
}

.newsletter-btn {
  background: var(--accent);
  color: #000000;
  border: none;
  padding: 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-terms {
  display: flex;
  gap: 20px;
}

.footer-terms a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-terms a:hover {
  color: var(--accent);
}

/* ---------------------------------------------------------------------
   16. ENTRANCE & SCROLL REVEAL ANIMATIONS (FRAMER-MOTION RECREATION)
   --------------------------------------------------------------------- */
/* Initial states for scroll elements */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays for grid items */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------------------------------------------------------------------
   17. MOBILE-FIRST RESPONSIVE MEDIA QUERIES
   --------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (Max 1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-graphics {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-card-back {
    display: none; /* Simplify on tablets */
  }
  
  .why-grid .about-graphics {
    order: 2;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
}

/* Tablets (Max 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid rgba(230, 184, 0, 0.15);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }
  
  .nav-cta {
    display: none; /* Hide button nav on mobile for clean header */
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge,
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 50px;
  }

  .hero-ring-1 {
    width: 320px;
    height: 320px;
  }

  .hero-ring-2 {
    width: 250px;
    height: 250px;
  }
  
  .hero-circle-glow {
    width: 250px;
    height: 250px;
  }
  
  .hud-1 {
    right: 0;
    top: 10%;
  }

  .hud-2 {
    left: 0;
    bottom: 5%;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .counters-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }
  
  .faq-trigger {
    padding: 20px 25px;
    font-size: 1rem;
  }
}

/* Small Phones (Max 480px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .products-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.wide {
    grid-column: span 1;
  }

  .contact-form-box {
    padding: 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
