/* ============================================
   CITY MOBILE HUB — Design System & Styles
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --clr-bg-primary: #0a0a0f;
  --clr-bg-secondary: #0f1629;
  --clr-bg-card: rgba(15, 22, 41, 0.7);
  --clr-bg-card-hover: rgba(20, 30, 55, 0.85);
  --clr-gold: #f5a623;
  --clr-gold-light: #ffd675;
  --clr-blue: #3b82f6;
  --clr-blue-light: #60a5fa;
  --clr-cyan: #06d6a0;
  --clr-green: #10b981;
  --clr-red: #ef4444;
  --clr-purple: #a855f7;
  --clr-text: #ffffff;
  --clr-text-muted: #94a3b8;
  --clr-text-dim: #64748b;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-hover: rgba(245, 166, 35, 0.3);
  --clr-glass: rgba(255, 255, 255, 0.05);
  --clr-glass-strong: rgba(255, 255, 255, 0.1);
  --clr-overlay: rgba(10, 10, 15, 0.85);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #f5a623, #ffd675);
  --grad-blue: linear-gradient(135deg, #3b82f6, #60a5fa);
  --grad-dark: linear-gradient(180deg, #0a0a0f 0%, #0f1629 100%);
  --grad-card: linear-gradient(145deg, rgba(15, 22, 41, 0.8), rgba(10, 10, 15, 0.9));
  --grad-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  --grad-hero: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
               radial-gradient(ellipse at 80% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-gold: 0 0 20px rgba(245, 166, 35, 0.3);
  --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
  --shadow-glow-cyan: 0 0 20px rgba(6, 214, 160, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--clr-bg-primary);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--clr-bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--clr-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--clr-text) 0%, var(--clr-text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

.animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s var(--transition-spring);
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: background var(--transition-base), padding var(--transition-base),
              box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--clr-border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  z-index: 1001;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--clr-bg-primary);
  position: relative;
  overflow: hidden;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shine);
  animation: shimmer 3s infinite;
}

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

.nav-logo span:first-of-type { color: var(--clr-text); }
.nav-logo span:nth-of-type(2) { color: var(--clr-gold); }
.nav-logo span:last-of-type { color: var(--clr-text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--clr-text);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--grad-gold);
  color: var(--clr-bg-primary) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-full);
  font-size: 0.85rem !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg-primary);
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center top, transparent 0%, rgba(10, 10, 15, 0.6) 70%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.85) 100%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* --- Centered Hero Content --- */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 130px var(--space-xl) var(--space-2xl);
}

.hero-pre-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CM Gear Logo */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-cm-logo {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 25px rgba(245, 166, 35, 0.5)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.3));
  animation: logoFloat 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  letter-spacing: 0.02em;
}

.hero-title .text-city { color: var(--clr-text); }
.hero-title .text-mobile {
  color: var(--clr-gold);
  text-shadow: 0 0 50px rgba(245, 166, 35, 0.4), 0 0 100px rgba(245, 166, 35, 0.15);
}
.hero-title .text-hub { color: var(--clr-text); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  font-weight: 400;
  letter-spacing: 0.05em;
  min-height: 2em;
}

.hero-tagline .typewriter {
  color: var(--clr-cyan);
  font-weight: 600;
  border-right: 2px solid var(--clr-cyan);
  padding-right: 4px;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Service Info Pills */
.hero-pills {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--transition-base);
  min-width: 200px;
}

.hero-pill:hover {
  border-color: var(--clr-gold);
  background: rgba(245, 166, 35, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.1);
}

.hero-pill-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hero-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 0.08em;
}

.hero-pill small {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  font-weight: 400;
}

/* Brand Color Pills */
.hero-brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-brand-pill {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  cursor: default;
}

.hero-brand-pill:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.7s forwards;
  opacity: 0;
  margin-bottom: var(--space-lg);
}

/* Instagram Link */
.hero-contact-row {
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.hero-social-link {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  transition: color var(--transition-fast);
}

.hero-social-link:hover {
  color: var(--clr-gold);
}

/* Photo Strip */
.hero-photos-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  width: 100%;
  max-width: 1200px;
  margin: var(--space-xl) auto 0;
  padding: 0 var(--space-xl);
  animation: fadeInUp 1s ease 0.9s forwards;
  opacity: 0;
}

.hero-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
  cursor: default;
}

.hero-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-photo-card:hover img {
  transform: scale(1.08);
}

.hero-photo-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-gold);
}

/* Stats Strip */
.hero-stats-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  width: 100%;
  max-width: 900px;
  margin: var(--space-2xl) auto var(--space-xl);
  padding: var(--space-lg) var(--space-2xl);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
  flex: 1;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* About / Shop Gallery Section */
.about {
  background: var(--clr-bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.about-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition-base);
}

.about-gallery-item:hover {
  transform: translateY(-4px);
}

.about-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-gallery-item:hover img {
  transform: scale(1.05);
}

.about-gallery-item:first-child {
  grid-column: 1 / -1;
}

.about-gallery-item:first-child img {
  height: 260px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about-content .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content > p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-highlight-card {
  padding: var(--space-md);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.about-highlight-card:hover {
  border-color: var(--clr-border-hover);
}

.about-highlight-card .icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.about-highlight-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-highlight-card p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--clr-bg-primary);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-shine);
  animation: shimmer 3s infinite;
}

.btn-secondary {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}

.btn-secondary:hover {
  border-color: var(--clr-gold);
  background: rgba(245, 166, 35, 0.05);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Brands Scroll */
.hero-brands {
  margin-top: var(--space-3xl);
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
}

.hero-brands-label {
  font-size: 0.75rem;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.brands-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-text-dim);
  transition: var(--transition-base);
  cursor: default;
  letter-spacing: 0.05em;
}

.brand-item:hover {
  color: var(--clr-gold);
  transform: scale(1.1);
}

/* ---------- Services Section ---------- */
.services {
  background: var(--clr-bg-primary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(245, 166, 35, 0.05);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- Products Section ---------- */
.products {
  background: var(--clr-bg-secondary);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: default;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--clr-bg-primary), transparent);
  pointer-events: none;
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.product-card-body p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

.product-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-sm);
  transition: transform var(--transition-spring);
}

.product-card:hover .product-emoji {
  transform: scale(1.2) rotate(-5deg);
}

/* Accessory Icon Grid (no-image variant) */
.product-icon-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
}

.product-icon-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg);
}

.product-icon-card .icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
  transition: transform var(--transition-spring);
}

.product-icon-card:hover .icon {
  transform: scale(1.2) rotate(-8deg);
}

.product-icon-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.product-icon-card p {
  color: var(--clr-text-muted);
  font-size: 0.8rem;
}

/* ---------- Repair Section ---------- */
.repair {
  background: var(--clr-bg-primary);
  position: relative;
}

.repair-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.repair-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.repair-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.repair-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  pointer-events: none;
}

.repair-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-gold);
}

.repair-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.repair-content .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.repair-content > p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
  font-size: 1.05rem;
  line-height: 1.7;
}

.repair-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.repair-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.repair-feature:hover {
  border-color: var(--clr-border-hover);
  background: rgba(245, 166, 35, 0.03);
}

.repair-feature .icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.repair-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.repair-feature-text p {
  color: var(--clr-text-muted);
  font-size: 0.8rem;
}

.repair-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.1), rgba(6, 214, 160, 0.05));
  border: 1px solid rgba(6, 214, 160, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-cyan);
  position: relative;
  overflow: hidden;
}

.repair-guarantee::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 214, 160, 0.1), transparent);
  animation: shimmer 3s infinite;
}

/* ---------- Brand Carousel Section ---------- */
.brands {
  background: var(--clr-bg-secondary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.brands-carousel {
  display: flex;
  gap: var(--space-3xl);
  animation: scrollBrands 20s linear infinite;
  width: max-content;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--clr-text-dim);
  white-space: nowrap;
  transition: var(--transition-base);
  cursor: default;
  min-width: 140px;
}

.brand-logo:hover {
  border-color: var(--clr-border-hover);
  color: var(--clr-gold);
  background: rgba(245, 166, 35, 0.05);
}

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

/* ---------- Instagram Section ---------- */
.instagram {
  background: var(--clr-bg-primary);
  position: relative;
}

.instagram::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.instagram-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.instagram-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.1);
}

.instagram-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--clr-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-card:hover .instagram-card-image img {
  transform: scale(1.05);
}

.instagram-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-card:hover .instagram-card-overlay {
  opacity: 1;
}

.instagram-card-overlay span {
  font-size: 1.5rem;
}

.instagram-card-body {
  padding: var(--space-md);
}

.instagram-card-body p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-embed-wrapper {
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.instagram-cta {
  text-align: center;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
}

/* ---------- Location Section ---------- */
.location {
  background: var(--clr-bg-secondary);
  position: relative;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  aspect-ratio: 4/3;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.85) contrast(1.1) saturate(0.8) hue-rotate(200deg);
}

.location-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.location-info > p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.contact-item:hover {
  border-color: var(--clr-border-hover);
  background: rgba(245, 166, 35, 0.03);
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item-text p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

.contact-item-text a {
  color: var(--clr-gold);
}

.contact-item-text a:hover {
  text-decoration: underline;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}

.hours-day {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.hours-time {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-bg-primary);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--clr-gold);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  color: var(--clr-text);
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--clr-gold);
  padding-left: var(--space-sm);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--clr-text-dim);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  color: var(--clr-text-dim);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--clr-gold);
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: calc(var(--space-xl) + 70px);
  z-index: 999;
  width: 45px;
  height: 45px;
  background: var(--clr-glass-strong);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-text);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

.back-to-top:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--clr-gold);
  transform: translateY(-3px);
}

/* ---------- Legal Pages ---------- */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--clr-bg-primary);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-updated {
  color: var(--clr-text-dim);
  font-size: 0.85rem;
  margin-bottom: var(--space-3xl);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--clr-text);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--clr-border);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--clr-gold);
}

.legal-content p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: none;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  position: relative;
  padding-left: var(--space-lg);
}

.legal-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-weight: 700;
}

.legal-content strong {
  color: var(--clr-text);
  font-weight: 600;
}

.legal-content .legal-highlight {
  background: var(--clr-glass);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-gold);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
}

.legal-content .legal-highlight p {
  margin-bottom: 0;
  color: var(--clr-text);
}

.legal-contact-box {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.legal-contact-box h3 {
  color: var(--clr-text);
  margin-top: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: var(--space-2xl);
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-card:first-child img {
    height: 200px;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .repair-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .location-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-section: 4rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-center {
    padding-top: 110px;
  }

  .hero-cm-logo {
    width: 80px;
    height: 80px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-pill {
    min-width: 100%;
  }

  .hero-photos-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0 var(--space-md);
  }

  .hero-photo-card img {
    height: 120px;
  }

  .hero-stats-strip {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
    width: 90%;
  }

  .hero-stat-divider {
    width: 100%;
    height: 1px;
    margin: var(--space-sm) 0;
  }

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

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-brand-strip {
    justify-content: center;
  }

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

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .whatsapp-float {
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .back-to-top {
    right: calc(var(--space-lg) + 65px);
    bottom: var(--space-lg);
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .brands-scroll {
    gap: var(--space-lg);
  }

  .brand-item {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 var(--space-md);
  }
}
