/* ==========================================================================
   SERVIGARAJE DESIGN SYSTEM - MODERN AUTOMOTIVE DARK LUXURY
   ========================================================================== */

:root {
  --bg-dark: #070709;
  --bg-surface-1: #0E0F14;
  --bg-surface-2: #14161F;
  --bg-glass: rgba(14, 15, 20, 0.82);
  --bg-glass-card: rgba(20, 22, 31, 0.72);

  --accent-red: #E50914;
  --accent-red-bright: #FF1E27;
  --accent-red-dark: #9E0007;
  --accent-orange: #FF4500;
  --accent-green: #25D366;
  --accent-gold: #FFB703;

  --text-pure: #FFFFFF;
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-active: rgba(229, 9, 20, 0.5);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.65);
  --shadow-glow-red: 0 0 25px rgba(229, 9, 20, 0.35);
  --shadow-glow-cyan: 0 0 25px rgba(229, 9, 20, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-dark);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-red-bright) 70%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Header Structure */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red-bright);
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #FF1E27 0%, #B30006 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FF333B 0%, #CC0008 100%);
  box-shadow: 0 8px 28px rgba(229, 9, 20, 0.6);
  color: #FFFFFF;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 80%
  );
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  25%, 100% { transform: translateX(100%) rotate(30deg); }
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.35);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.top-bar {
  background: #05070B;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.top-bar-contact {
  display: flex;
  gap: 1.5rem;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.top-bar-contact a:hover {
  color: var(--accent-cyan);
}

/* Main Navbar */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background: rgba(8, 10, 15, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-custom-logo {
  height: 38px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-custom-logo {
  transform: scale(1.03);
}

.footer-custom-logo {
  height: 42px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(158, 0, 7, 0.4));
  border: 1px solid var(--accent-red-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red-bright);
  box-shadow: var(--shadow-glow-red);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.logo-title .highlight {
  color: var(--accent-red-bright);
}

.logo-subtitle {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-pure);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red-bright);
  transition: width var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--text-pure);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.45;
  filter: saturate(1.1);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 2;
}

.glow-orb-1 {
  width: 450px;
  height: 450px;
  background: rgba(229, 9, 20, 0.18);
  top: 10%;
  left: -100px;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 69, 0, 0.15);
  bottom: 5%;
  right: -80px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(14, 15, 20, 0.85);
  border: 1px solid var(--border-active);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-red-bright);
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-red-bright);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-md);
}

.trust-icon {
  font-size: 1.6rem;
}

.trust-pill strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-pure);
  font-family: var(--font-heading);
}

.trust-pill small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-section {
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.2rem 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-pure);
  background: linear-gradient(135deg, #FFFFFF, var(--accent-red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.stat-divider {
  width: 1px;
  height: 45px;
  background: var(--border-glass);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.service-tab-btn {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-tab-btn:hover, .service-tab-btn.active {
  background: var(--accent-red-bright);
  color: #FFFFFF;
  border-color: var(--accent-red-bright);
  box-shadow: 0 0 18px rgba(229, 9, 20, 0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.service-card {
  position: relative;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-lg), 0 0 22px rgba(229, 9, 20, 0.25);
}

.service-badge-popular {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(229, 9, 20, 0.2);
  color: var(--accent-red-bright);
  border: 1px solid rgba(229, 9, 20, 0.4);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red-bright);
  margin-bottom: 1.4rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 0.86rem;
  color: var(--text-main);
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-red-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ==========================================================================
   BEFORE & AFTER DETAILING SHOWCASE
   ========================================================================== */

.detailing-showcase-section {
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.showcase-info .section-title {
  font-size: 2.4rem;
}

.showcase-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.comparison-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.point-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.point-icon {
  font-size: 1.4rem;
}

.point-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.point-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Interactive Slider Box */
.showcase-slider-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.before-after-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: ew-resize;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.before-image-wrap .before-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.slider-badge {
  position: absolute;
  top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.badge-before {
  left: 1rem;
  background: rgba(40, 44, 52, 0.85);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-after {
  right: 1rem;
  background: rgba(229, 9, 20, 0.85);
  color: #FFFFFF;
  border: 1px solid rgba(255, 30, 39, 0.5);
}

/* Handle */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 4px;
  background: var(--accent-red-bright);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.8);
}

.handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  color: #070709;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
  border: 2px solid var(--accent-red-bright);
}

.slider-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* ==========================================================================
   FACILITY & MECHANICS BANNER
   ========================================================================== */

.mechanics-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.mechanics-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.mech-feature {
  display: flex;
  gap: 0.8rem;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  padding: 1.1rem;
  border-radius: var(--radius-md);
}

.mech-icon {
  font-size: 1.5rem;
}

.mech-feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.mech-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.mechanics-image-wrap {
  position: relative;
}

.img-rounded {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   QUICK QUOTE CALCULATOR (WHATSAPP GENERATOR)
   ========================================================================== */

.quote-card {
  background: linear-gradient(135deg, rgba(20, 22, 31, 0.95), rgba(14, 15, 20, 0.98));
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow-red);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red-bright), var(--accent-orange));
}

.quote-card-header {
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-pure);
}

.form-control {
  background: rgba(7, 7, 9, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-red-bright);
  box-shadow: 0 0 14px rgba(229, 9, 20, 0.35);
  background: #070709;
}

.form-control option {
  background: #0E0F14;
  color: #FFFFFF;
}

.form-help-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.8rem;
}

/* ==========================================================================
   INSTAGRAM / WORKS GALLERY
   ========================================================================== */

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(7,7,9,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(229, 9, 20, 0.25);
  color: var(--accent-red-bright);
  border: 1px solid var(--accent-red-bright);
}

.gallery-action {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ==========================================================================
   LOCATION & GOOGLE MAPS SECTION
   ========================================================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}

.location-info-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red-bright);
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.info-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.map-embed-wrapper {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(110%);
}

.map-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(7, 7, 9, 0.92);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-container {
  max-width: 800px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--border-active);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-pure);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--accent-red-bright);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background: #040406;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.2rem 0 1.6rem 0;
  max-width: 380px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-links a:hover {
  color: var(--accent-red-bright);
  border-color: var(--accent-red-bright);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #FFFFFF;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links-col a:hover {
  color: var(--accent-red-bright);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.floating-tooltip {
  background: rgba(15, 19, 29, 0.95);
  border: 1px solid var(--border-glass);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: bounce-subtle 3s infinite;
}

.whatsapp-icon-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-normal);
}

.floating-whatsapp:hover .whatsapp-icon-btn {
  transform: scale(1.1);
}

.online-indicator {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  background: #00FF66;
  border: 2px solid #090B10;
  border-radius: 50%;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .showcase-grid,
  .mechanics-banner,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .before-after-wrapper {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .top-bar-contact {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #090B10;
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

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

  .mechanics-features-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-tooltip {
    display: none;
  }
}
