/* =====================================================
   ALN DETAILING AUTO & MOTO — Main Stylesheet
   Theme: Dark Navy + Electric Blue
   Mobile-first | WCAG 2.2 AA
   ===================================================== */

/* === GOOGLE FONTS — loaded async via <link> in HTML === */

/* === CSS VARIABLES (Design System) === */
:root {
  /* — Colors — */
  --bg:             #0D1B2A;
  --surface:        #1B2838;
  --surface-2:      #243447;
  --surface-3:      #2D3F52;
  --accent:         #00B4D8;
  --accent-dark:    #0096C7;
  --accent-light:   #48CAE4;
  --accent-glow:    rgba(0, 180, 216, 0.15);
  --accent-glow-lg: rgba(0, 180, 216, 0.07);
  --text:           #FFFFFF;
  --text-secondary: #CDD8E3;
  --text-muted:     #8B9BB4;
  --border:         rgba(255, 255, 255, 0.08);
  --border-accent:  rgba(0, 180, 216, 0.35);
  --success:        #00C896;
  --gold:           #F4B942;
  --danger:         #FF6B6B;

  /* — Typography — */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* — Spacing — */
  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;
  --s4: 1rem;     --s5: 1.25rem;  --s6: 1.5rem;
  --s8: 2rem;     --s10: 2.5rem;  --s12: 3rem;
  --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  /* — Border Radius — */
  --r-sm:   6px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* — Shadows — */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.25);
  --shadow:        0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.45);
  --shadow-accent: 0 4px 24px rgba(0,180,216,0.3);

  /* — Transitions — */
  --t:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:0.15s cubic-bezier(0.4, 0, 0.2, 1);

  /* — Layout — */
  --container:     1200px;
  --nav-h:         72px;
  --section-py:    5rem;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea { font-family: var(--font); }

/* === UTILITIES === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}
@media (max-width: 768px) { .container { padding: 0 var(--s4); } }

.section {
  padding: var(--section-py) 0;
}
.section-alt {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s12);
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--s4);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent { color: var(--accent); }
.gold   { color: var(--gold); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #0D1B2A;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(0,180,216,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-accent);
}
.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

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

/* === WHATSAPP STICKY BUTTON === */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--t);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
  animation: none;
}
.wa-sticky svg { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================
   NAVIGATION / HEADER
   ============================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
#header.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-sub { font-size: 0.65rem; font-weight: 500; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--s8);
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--t);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: var(--s3); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--s2);
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  padding: var(--s6);
}
.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  display: block;
  padding: var(--s4) 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn-primary {
  display: flex;
  justify-content: center;
  margin-top: var(--s6);
  border-bottom: none;
  color: #0D1B2A;
}
.mobile-menu .btn-primary:hover { color: #0D1B2A; }

/* ============================
   HERO SECTION
   ============================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.93) 0%,
    rgba(13,27,42,0.80) 50%,
    rgba(13,27,42,0.70) 100%
  );
}
/* Fallback gradient if image fails */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1B2838 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--s12)) var(--s6) var(--s12);
  width: 100%;
}

.hero-badge { margin-bottom: var(--s5); }

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s6);
  max-width: 700px;
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--s8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s12);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.hero-stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

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

/* ============================
   DESPRE (WHY ALN)
   ============================ */
#despre { padding: var(--section-py) 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s6); }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--t);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s5);
  font-size: 1.75rem;
  transition: var(--t);
}
.feature-card:hover .feature-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.feature-card:hover .feature-icon svg { stroke: #0D1B2A; }

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--s2);
  color: var(--text);
}
.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================
   SERVICII AUTO (TABS)
   ============================ */
#servicii-auto {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  background: var(--surface-2);
  border-radius: var(--r-lg);
  padding: var(--s2);
  margin-bottom: var(--s10);
  border: 1px solid var(--border);
}

.tab-btn {
  flex: 1;
  min-width: 140px;
  padding: var(--s3) var(--s5);
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--t);
  text-align: center;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.tab-btn.active {
  background: var(--accent);
  color: #0D1B2A;
  box-shadow: var(--shadow-accent);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  align-items: center;
}
@media (min-width: 900px) {
  .service-layout { grid-template-columns: 1fr 1fr; gap: var(--s12); }
  .service-layout.reverse { direction: rtl; }
  .service-layout.reverse > * { direction: ltr; }
}

.service-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t);
}
.service-image:hover img { transform: scale(1.04); }

.service-price-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--surface-3);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s5);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: var(--s5);
}
.service-price-badge strong { font-size: 1.1rem; color: var(--accent); }

.service-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--s4);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--s6);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s8);
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--success);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #0D1B2A;
  border-bottom: 2px solid #0D1B2A;
  transform: rotate(-45deg) translate(1px, -1px);
  display: block;
}

/* Complet ALN bonus box */
.bonus-box {
  background: linear-gradient(135deg, var(--accent-glow), rgba(0,180,216,0.05));
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  padding: var(--s6);
  margin-bottom: var(--s8);
}
.bonus-box h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--s4);
}
.bonus-box li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border);
}
.bonus-box li:last-child { border-bottom: none; }
.bonus-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: var(--accent);
  color: #0D1B2A;
  white-space: nowrap;
  margin-left: auto;
}

/* Complet ALN price table */
.complet-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s8);
}
.complet-price-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s5) var(--s4);
  text-align: center;
  transition: var(--t);
}
.complet-price-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.complet-price-item .vehicle-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s2);
}
.complet-price-item .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* ============================
   SERVICII MOTO
   ============================ */
#servicii-moto {
  padding: var(--section-py) 0;
}

.moto-header-image {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--r-xl);
  margin-bottom: var(--s12);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px) {
  .pricing-cards { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0D1B2A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.featured .pricing-plan { color: var(--accent-light); }

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s2);
}
.pricing-price span { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.featured .pricing-price { color: var(--accent); }

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s8);
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Moto add-ons */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-top: var(--s12);
}
@media (min-width: 768px) {
  .addon-grid { grid-template-columns: repeat(4, 1fr); }
}

.addon-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s5);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--t);
}
.addon-item:hover { border-color: var(--border-accent); color: var(--accent); }
.addon-item .addon-icon { font-size: 1.5rem; margin-bottom: var(--s2); }

/* ============================
   PROTECTII CERAMICE
   ============================ */
#ceramice {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.ceramics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px) {
  .ceramics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .ceramics-grid { grid-template-columns: repeat(4, 1fr); }
}

.ceramic-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  text-align: center;
  position: relative;
  transition: var(--t);
  overflow: hidden;
}
.ceramic-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}
.ceramic-card.highlight {
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(0,180,216,0.05));
  border-color: var(--accent);
}

.ceramic-duration {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}
.highlight .ceramic-duration { color: var(--accent-light); }

.ceramic-price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: var(--s1);
}
.ceramic-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.highlight .ceramic-price { color: var(--accent); }

.ceramic-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--s4);
}

.ceramic-years {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--surface-3);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s4);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}
.highlight .ceramic-years {
  background: var(--accent);
  color: #0D1B2A;
}

.ceramics-note {
  margin-top: var(--s10);
  background: linear-gradient(135deg, var(--accent-glow), rgba(0,180,216,0.04));
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s8);
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
}
.ceramics-note-icon { font-size: 1.5rem; flex-shrink: 0; }
.ceramics-note p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.ceramics-note strong { color: var(--accent); }

/* Additional ceramic services */
.ceramic-extra-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
}
@media (max-width: 640px) { .ceramic-extra-row { grid-template-columns: 1fr; } }

.ceramic-extra-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s5) var(--s4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
  transition: var(--t);
}
.ceramic-extra-card:hover { border-color: var(--border-accent); }
.ceramic-extra-card span:first-child { font-size: 0.9rem; color: var(--text-secondary); }
.ceramic-extra-price { font-weight: 700; color: var(--accent); white-space: nowrap; }

/* ============================
   PACHETE TEMATICE (ACCORDION)
   ============================ */
#pachete {
  padding: var(--section-py) 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.accordion-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.accordion-group:hover { border-color: rgba(255,255,255,0.12); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) var(--s6);
  cursor: pointer;
  transition: background var(--t-fast);
  gap: var(--s4);
}
.accordion-header:hover { background: rgba(255,255,255,0.03); }

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.accordion-group-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.accordion-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.accordion-group-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.accordion-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--t);
  flex-shrink: 0;
}
.accordion-group.open .accordion-chevron { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion-group.open .accordion-body { max-height: 2000px; }

.accordion-body-inner {
  padding: 0 var(--s6) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.package-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s5) var(--s6);
  transition: var(--t);
}
.package-item:hover {
  border-color: var(--border-accent);
  background: var(--surface-3);
}

.package-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s3);
}
.package-item-title { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.package-item-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-full);
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.package-item-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.package-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 3px 10px;
}

/* ============================
   GALERIE
   ============================ */
#galerie {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--surface-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: var(--s5);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.gallery-cta {
  text-align: center;
  margin-top: var(--s10);
}
.gallery-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--s5);
}

/* ============================
   TESTIMONIALE
   ============================ */
#testimoniale {
  padding: var(--section-py) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  position: relative;
  transition: var(--t);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--s5);
  right: var(--s6);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s4);
}
.star { color: var(--gold); font-size: 1rem; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0D1B2A;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.author-vehicle { font-size: 0.78rem; color: var(--text-muted); }

.testimonials-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
  margin-top: var(--s12);
  padding: var(--s8) var(--s6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.rating-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.rating-details { display: flex; flex-direction: column; gap: var(--s1); }
.rating-stars { display: flex; gap: 3px; }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }
.rating-platform {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: var(--r-full);
  border: 1px solid var(--border);
}

/* ============================
   CONTACT
   ============================ */
#contact {
  background: var(--surface);
  padding: var(--section-py) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: var(--s12); align-items: start; }
}

.contact-info { display: flex; flex-direction: column; gap: var(--s6); }

.contact-wa-cta {
  background: linear-gradient(135deg, #1a2f1f 0%, #0f2015 100%);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s6);
  text-align: center;
}
.contact-wa-cta h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--s2);
}
.contact-wa-cta p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--s6);
  line-height: 1.6;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r);
  transition: var(--t);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.contact-details-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text { flex: 1; }
.contact-detail-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-detail-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.contact-detail-value a { color: var(--accent); transition: color var(--t-fast); }
.contact-detail-value a:hover { color: var(--accent-light); }

/* Program tabel */
.schedule-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.schedule-header {
  background: var(--accent-glow);
  border-bottom: 1px solid var(--border-accent);
  padding: var(--s4) var(--s6);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s4) var(--s6);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day { color: var(--text-secondary); font-weight: 500; }
.schedule-time { color: var(--accent); font-weight: 700; }
.schedule-row.today { background: rgba(0,180,216,0.04); }

/* Map */
.contact-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.contact-map iframe {
  width: 100%;
  height: 380px;
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85);
}
@media (min-width: 900px) { .contact-map iframe { height: 460px; } }

/* ============================
   CONDITIONS / NOTICE STRIP
   ============================ */
.conditions-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s6) 0;
}
.conditions-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6);
  justify-content: center;
}
.condition-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.condition-icon { font-size: 1.1rem; }

/* ============================
   FOOTER
   ============================ */
footer {
  background: #090F17;
  border-top: 1px solid var(--border);
  padding: var(--s16) 0 var(--s8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
  margin-bottom: var(--s12);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--s8); }
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.footer-logo img { height: 40px; width: auto; }
.footer-logo-text { font-weight: 800; font-size: 1rem; }
.footer-logo-sub { font-size: 0.65rem; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s5);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--s3);
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--t);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--s5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--accent-light); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: var(--s6);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--accent-light); }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE TWEAKS
   ============================ */
@media (max-width: 640px) {
  :root { --section-py: 3.5rem; }

  .hero-title { font-size: 2.1rem; }
  .hero-stats { gap: var(--s5); }
  .hero-stat-value { font-size: 1.6rem; }

  .features-grid { gap: var(--s4); }
  .feature-card { padding: var(--s6) var(--s4); }

  .tabs-nav { flex-direction: column; }
  .tab-btn { width: 100%; text-align: left; }

  .complet-prices { grid-template-columns: 1fr; gap: var(--s3); }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

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

  .ceramics-note { flex-direction: column; text-align: center; }

  .contact-grid { gap: var(--s6); }

  .footer-grid { gap: var(--s8); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================
   ACTIVE NAV INDICATOR
   ============================ */
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }

/* ============================
   FOCUS / ACCESSIBILITY
   ============================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================
   LOADING SKELETON PULSE
   ============================ */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.skeleton {
  background: var(--surface-2);
  border-radius: var(--r);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
