﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUPINO GOMME â€” ULTRA PREMIUM DESIGN v3.0 (APPLE LIQUID GLASS)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* === CUSTOM PROPERTIES === */
:root {
  --primary: #ff9d00;
  --primary-hover: #ffb700;
  --primary-glow: rgba(255, 157, 0, 0.4);
  --primary-deep: #e65c00;
  --accent: #ff7a00;
  --dark-bg: #06070a;
  --dark-surface: #0d0e14;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-hover-border: rgba(255, 255, 255, 0.2);
  --text-main: #f0f2f5;
  --text-muted: #8a929a;
  --header-bg: rgba(6, 7, 10, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-highlight: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(24px) saturate(180%);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.6);
  --transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark-bg);
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--dark-bg); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-deep));
  border-radius: 10px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Animated noise texture overlay */$10.15;
}

/* Animated global aurora glow */
body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 157, 0, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255, 60, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.08) 0%, transparent 50%);
  animation: auroraFloat 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -10;
}

@keyframes auroraFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(3%, -2%) rotate(1deg); }
  66% { transform: translate(-2%, 3%) rotate(-1deg); }
  100% { transform: translate(1%, 1%) rotate(0.5deg); }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--transition-smooth);
}
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 16px; }

/* === GRADIENTS & TEXT EFFECTS === */
.text-gradient {
  background: linear-gradient(135deg, #ffcc00, #ff9d00, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* === BUTTONS â€” ULTRA PREMIUM === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  box-shadow: 
    0 8px 30px var(--primary-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s var(--transition-bounce);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: 0.8s;
  z-index: -10;
}

.btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep), var(--primary));
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s;
  filter: blur(12px);
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(255, 157, 0, 0.5),
    0 0 30px rgba(255, 157, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn:hover::before { left: 100%; }
.btn:hover::after { opacity: 1; }

.btn:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 157, 0, 0.6);
  color: var(--primary);
  box-shadow: 0 4px 20px transparent;
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 15px 40px var(--primary-glow);
}

/* === SECTION TITLES === */
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  text-shadow: 0 0 40px rgba(255, 157, 0, 0.1);
}
.section-title span {
  background: linear-gradient(135deg, #ffcc00, #ff9d00, #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}
.section-title p {
  color: var(--text-muted);
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 300;
}

/* === HEADER â€” LIQUID GLASS === */
.header {
  background: rgba(6, 7, 10, 0.5);
  padding: 18px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(6, 7, 10, 0.7);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s var(--transition-bounce);
}

.logo:hover {
  transform: scale(1.03);
  text-shadow: 0 0 20px rgba(255, 157, 0, 0.3);
}

.logo img {
  height: 50px;
  margin-right: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s var(--transition-bounce);
}

.logo:hover img {
  box-shadow: 0 4px 20px rgba(255, 157, 0, 0.3);
}

.navbar ul { display: flex; gap: 35px; align-items: center; }
.navbar a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  position: relative;
  padding: 5px 0;
  transition: all 0.4s var(--transition-smooth);
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all 0.4s var(--transition-bounce);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

.navbar a:hover, .navbar a.active {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 157, 0, 0.3);
}
.navbar a:hover::after, .navbar a.active::after { width: 100%; }

.navbar a.btn { color: #fff; }
.navbar a.btn::after { display: none; }

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
  transition: all 0.3s;
}
.menu-toggle:hover {
  transform: scale(1.1);
  text-shadow: 0 0 15px var(--primary-glow);
}

/* === HERO SECTION â€” CINEMATIC === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

/* Deep overlay with vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.4) 0%, rgba(6, 7, 10, 0.2) 40%, rgba(6, 7, 10, 0.8) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 30%, var(--dark-bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  font-size: 5rem;
  line-height: 1.05;
  margin-bottom: 28px;
  font-weight: 900;
  text-shadow: 0 10px 40px rgba(0,0,0,0.9);
  letter-spacing: -2.5px;
  animation: heroTextIn 1.2s var(--transition-bounce) forwards;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero h1 span {
  background: linear-gradient(135deg, #ffcc00, #ff9d00, #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  position: relative;
}

/* Animated glow behind hero title span */
.hero h1 span::after {
  content: '';
  position: absolute;
  inset: -10px -20px;
  background: radial-gradient(ellipse, rgba(255, 157, 0, 0.25), transparent 70%);
  filter: blur(25px);
  z-index: -10;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.1); }
}

/* === FLOATING PARTICLES (via JS canvas) === */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* === SECTIONS === */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Section decorative orbs */
.section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 157, 0, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 30px); }
  100% { transform: translate(20px, -20px); }
}

/* === CARD SYSTEM â€” LIQUID GLASS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  padding: 50px 35px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3), 
    inset 0 1px 1px rgba(255, 255, 255, 0.4), 
    inset 0 -1px 1px rgba(255, 255, 255, 0.05);
}

/* Specular highlight for cards */


/* Top accent line */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.4),
    0 0 30px rgba(255, 157, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255,255,255,0.04);
}

.card:hover::after { opacity: 1; }

.card i {
  font-size: 3rem;
  background: linear-gradient(135deg, #ffcc00, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0 0 15px rgba(255, 157, 0, 0.3));
  transition: all 0.5s var(--transition-bounce);
}

.card:hover i {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 25px rgba(255, 157, 0, 0.5));
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.card p { color: var(--text-muted); font-size: 1.08rem; font-weight: 300; line-height: 1.7; }
.card a {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  transition: all 0.4s var(--transition-bounce);
}
.card a:hover { 
  color: #fff; 
  gap: 14px;
  text-shadow: 0 0 10px rgba(255, 157, 0, 0.4);
}

/* === GLASS BOX â€” LIQUID GLASS === */
.glass-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3), 
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.glass-box:hover {
  border-color: rgba(255, 157, 0, 0.15);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 157, 0, 0.05);
}

/* === TYRE BG DECORATIONS === */
.tyre-bg { position: relative; overflow: hidden; }
.tyre-bg::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.tyre-bg::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,100,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(100px);
  animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}

/* === TUTORIAL STEPS â€” LIQUID GLASS === */
.tutorial-step {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 40px;
  margin-bottom: 25px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-left: 5px solid var(--primary);
  transition: all 0.5s var(--transition-bounce);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.tutorial-step::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 157, 0, 0.03));
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

.tutorial-step:hover {
  transform: translateX(15px) scale(1.01);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), -5px 0 20px rgba(255, 157, 0, 0.1);
}

.tutorial-step:hover::after { opacity: 1; }

.step-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  margin-right: 40px;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,157,0,0.15);
  transition: all 0.5s;
  min-width: 80px;
  text-align: center;
}

.tutorial-step:hover .step-number {
  color: rgba(255,157,0,0.1);
  -webkit-text-stroke-color: rgba(255,157,0,0.4);
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(255, 157, 0, 0.2);
}

/* === COMPARISON TABLE â€” LIQUID GLASS === */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 40px;
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.comparison-table th {
  background: rgba(0,0,0,0.6);
  padding: 28px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 2px;
  font-weight: 800;
  position: relative;
}

.comparison-table th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 157, 0, 0.3), transparent);
}

.comparison-table td {
  padding: 25px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: #e0e0e0;
  transition: all 0.3s;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td {
  background: rgba(255,255,255,0.03);
}

/* === LEGAL BOX === */
.legal-box {
  background: linear-gradient(135deg, rgba(255, 157, 0, 0.08), rgba(255, 80, 0, 0.04));
  border: 1px solid rgba(255, 157, 0, 0.2);
  padding: 35px;
  border-radius: 20px;
  margin: 35px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.legal-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 157, 0, 0.08), transparent 60%);
  pointer-events: none;
}

.legal-box h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.5rem; font-weight: 800; }
.legal-box p { color: #f0f0f0; margin-bottom: 0; font-weight: 300; }

/* === SOCIAL ICONS â€” FLOATING 3D === */
.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.social-icons a {
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.5s var(--transition-bounce);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  opacity: 0;
  transition: opacity 0.4s;
}

.social-icons a i { position: relative; z-index: 1; }

.social-icons a:hover {
  transform: scale(1.2) translateY(-8px) rotate(5deg);
  border-color: transparent;
  box-shadow:
    0 15px 35px var(--primary-glow),
    0 0 20px rgba(255, 157, 0, 0.2);
}

.social-icons a:hover::before { opacity: 1; }

/* === WHATSAPP FLOATING BUTTON â€” ULTRA === */
.whatsapp-float {
  position: fixed;
  width: 72px; height: 72px;
  bottom: 40px; right: 40px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 36px;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.4),
    0 0 20px rgba(37, 211, 102, 0.2);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s var(--transition-bounce);
  animation: waPulse 2.5s infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128C7E);
  z-index: -10;
  filter: blur(15px);
  opacity: 0.4;
  animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float:hover::before {
  opacity: 0.6;
  animation: none;
}

@keyframes waPulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); }
  60% { transform: scale(1); }
  80% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* === FOOTER â€” LIQUID GLASS === */
footer {
  background: rgba(6, 7, 10, 0.4);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  padding: 80px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 157, 0, 0.3), transparent);
}

footer p { color: var(--text-muted); font-weight: 300; letter-spacing: 0.5px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ADVANCED ANIMATIONS & MICRO-INTERACTIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Magnetic hover effect class */
.magnetic-hover {
  transition: transform 0.4s var(--transition-bounce);
}

/* Fade-in on scroll (fallback/custom) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--transition-smooth);
}

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

/* Counter animation wrapper */
.counter-value {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffcc00, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.3);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.6s var(--transition-bounce);
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.2);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.4),
    0 0 30px rgba(255, 157, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255,255,255,0.04);
}

.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Testimonials / review stars */
.review-stars {
  color: var(--primary);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 157, 0, 0.3));
}

/* Brands marquee */
.brands-marquee {
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark-bg), transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--dark-bg));
}

.marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track span {
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee-track span:hover {
  color: rgba(255, 157, 0, 0.4);
}

/* CTA Banner â€” LIQUID GLASS */
.cta-banner {
  background: rgba(255, 157, 0, 0.05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 157, 0, 0.2);
  border-radius: 28px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.4);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 157, 0, 0.1), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 35px;
  font-weight: 300;
}

/* Image hover zoom */
.img-hover-zoom {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-strong);
  transition: all 0.5s var(--transition-smooth);
}

.img-hover-zoom img {
  transition: transform 0.8s var(--transition-smooth);
  border-radius: 0;
}

.img-hover-zoom:hover img {
  transform: scale(1.08);
}

.img-hover-zoom:hover {
  border-color: rgba(255, 157, 0, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 157, 0, 0.05);
}

/* Glow divider */
.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 157, 0, 0.3), transparent);
  margin: 80px 0;
  position: relative;
}

.glow-divider::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 200px;
  height: 10px;
  background: radial-gradient(ellipse, rgba(255, 157, 0, 0.2), transparent);
  transform: translateX(-50%);
  filter: blur(5px);
}

/* === MOBILE === */
@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; letter-spacing: -1.5px; }
  .section-title h2 { font-size: 2.4rem; }
  .section { padding: 80px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .menu-toggle { display: block; }
  .navbar {
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: rgba(6, 7, 10, 0.97);
    flex-direction: column;
    padding: 30px;
    border-bottom: 2px solid var(--primary);
    display: none;
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
  }
  .navbar.active { display: flex; animation: mobileMenuIn 0.4s var(--transition-bounce) forwards; }
  .navbar ul { flex-direction: column; gap: 20px; width: 100%; }
  .navbar a::after { transform: translateX(0); left: 0; }

  .tutorial-step { flex-direction: column; text-align: center; }
  .step-number { margin: 0 0 15px 0; font-size: 3rem; }

  .whatsapp-float { bottom: 25px; right: 25px; width: 62px; height: 62px; font-size: 30px; }
  .social-icons { justify-content: center; }

  .cta-banner {
  background: rgba(255, 157, 0, 0.05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 157, 0, 0.2);
  border-radius: 28px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.4);
}
  .cta-banner h2 { font-size: 2rem; }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .section-title h2 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .card {
  background: rgba(255, 255, 255, 0.06);
  padding: 50px 35px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3), 
    inset 0 1px 1px rgba(255, 255, 255, 0.4), 
    inset 0 -1px 1px rgba(255, 255, 255, 0.05);
}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL PROGRESS BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), #ffcc00);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--primary-glow), 0 0 20px rgba(255, 157, 0, 0.2);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLASS BOX AS LINK (Brand Cards)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
a.glass-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3), 
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

a.glass-box:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 157, 0, 0.25);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 157, 0, 0.08);
}

a.glass-box:hover i {
  transform: scale(1.2) rotate(-8deg);
}

a.glass-box:hover span {
  gap: 12px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TYPED TEXT CURSOR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.typed-text {
  border-right: 3px solid var(--primary);
  padding-right: 5px;
  animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {
  0%, 100% { border-color: var(--primary); }
  50% { border-color: transparent; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHIMMER TEXT EFFECT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.shimmer {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerEffect 3s ease-in-out infinite;
}

@keyframes shimmerEffect {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ENHANCED REVIEW STARS ANIMATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.review-stars {
  color: var(--primary);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 157, 0, 0.3));
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 157, 0, 0.3)); }
  50% { filter: drop-shadow(0 0 16px rgba(255, 157, 0, 0.6)); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING BADGE (Partner/Rain Tyre)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero div[style*="inline-block"][style*="border-radius: 50px"] {
  animation: badgeFloat 3s ease-in-out infinite;
}

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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ENHANCED GRID IMAGE GLOW
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.img-hover-zoom::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(255, 157, 0, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.img-hover-zoom:hover::after {
  opacity: 1;
}

/* Position relative for after pseudo */
.img-hover-zoom {
  position: relative;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NUOVI STILI (LIQUID GLASS)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Language Switcher - Liquid Glass */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 3px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.lang-switcher button {
  padding: 6px 14px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  letter-spacing: 0.5px;
}

.lang-switcher button.active {
  background: rgba(255, 157, 0, 0.2);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(255,157,0,0.2);
}

.lang-switcher button:hover:not(.active) {
  color: #fff;
}

/* AC + WiFi Notice Box */
.comfort-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.4s var(--transition-smooth);
}

.comfort-notice:hover {
  border-color: rgba(255, 157, 0, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.comfort-notice i {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.comfort-notice span {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Gallery Empty State */
.gallery-empty {
  text-align: center;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.gallery-empty i {
  font-size: 4rem;
  margin-bottom: 25px;
  display: inline-block;
  background: linear-gradient(135deg, #ffcc00, #ff9d00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255,157,0,0.3));
}

.gallery-empty h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.gallery-empty p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 30px;
}

/* Recommended Badge */
.badge-recommended {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255, 157, 0, 0.2), rgba(255, 100, 0, 0.1));
  border: 1px solid rgba(255, 157, 0, 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(255, 157, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 157, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.1); }
  50% { box-shadow: 0 4px 25px rgba(255, 157, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1); }
}





/* Failsafe for AOS */
body.aos-failsafe [data-aos] { opacity: 1 !important; transform: none !important; }


/* ========== ADVANCED CHROMATIC ABERRATION LIQUID GLASS (Jh3y Port) ========== */
.card, .glass-box, .stat-item, .cta-banner, .header, .comfort-notice, .gallery-empty, .lang-switcher {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) saturate(1.5) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(15px) saturate(1.5) brightness(1.1) !important;
    box-shadow: 
      inset 0 0 2px 1px rgba(255, 255, 255, 0.15),
      inset 0 0 10px 4px rgba(255, 255, 255, 0.1),
      0px 4px 16px rgba(0, 0, 0, 0.2), 
      0px 8px 24px rgba(0, 0, 0, 0.3),
      0px 16px 56px rgba(0, 0, 0, 0.4) !important;
    border: none !important;
}

/* Ensure no pseudo-elements from earlier interfere */
.card::before, .glass-box::before, .stat-item::before, .cta-banner::before, .header::before, .gallery-empty::before, .comfort-notice::before,
.card::after, .glass-box::after, .stat-item::after, .cta-banner::after, .header::after, .gallery-empty::after, .comfort-notice::after {
    display: none !important;
}

/* Subtle Levitation for Images */
.img-hover-zoom {
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- LIQUID SLIDING SWITCHER --- */
.lang-switcher {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.lang-switcher::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.4), rgba(255, 100, 0, 0.2));
    border-radius: 50px;
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 2px 10px rgba(255,157,0,0.3);
}

.lang-switcher[data-active="it"]::before {
    transform: translateX(0);
}

.lang-switcher[data-active="en"]::before {
    transform: translateX(100%);
}

.lang-switcher button {
    background: transparent !important;
    box-shadow: none !important;
    color: #a0a5aa;
    position: relative;
    z-index: 2;
}

.lang-switcher button.active {
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
    background: transparent !important;
    box-shadow: none !important;
}

/* Responsive & Mobile Enhancements */
body {
    overflow-x: hidden;
}
@media (max-width: 480px) {
    .glass-box, .card, .cta-banner {
        padding: 30px 20px !important;
    }
    .hero p {
        font-size: 1.1rem !important;
        margin-bottom: 25px !important;
    }
    .lang-switcher button {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

.social-icons a:hover {
    background: var(--primary) !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,157,0,0.4);
}

/* --- MOBILE OPTIMIZATIONS (ADDED) --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
    }
    h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    .hero {
        min-height: 50vh !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }
    .hero p {
        font-size: 1.1rem !important;
    }
    .container {
        padding: 0 15px !important;
    }
    .glass-box, .card, .stat-item {
        padding: 20px !important;
    }
    .section {
        padding: 50px 0 !important;
    }
    /* Make grids properly 1 column on very small phones */
    .services-grid, [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    /* Specific overrides for tables/specs */
    [style*="repeat(3, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
    }
}
