/* ================================================
   AutoLine Auto Services - style.css
   Tema: Dark / Negru cu accent Roșu
   Autor: Cazacu Cătălin — DAW-251
================================================ */

/* ---- CSS VARIABLES (variabile globale de culori, fonturi) ---- */
:root {
  --bg-dark: #0a0a0a;          /* Fundal principal negru */
  --bg-card: #111111;          /* Fundal carduri */
  --bg-card2: #161616;         /* Fundal carduri secundare */
  --red: #e5192b;              /* Roșu AutoLine (culoarea logo) */
  --red-dark: #b31220;         /* Roșu mai închis hover */
  --white: #ffffff;
  --gray: #888888;             /* Text secundar */
  --gray-light: #cccccc;
  --border: rgba(255,255,255,0.07); /* Borduri subtile */
  --font-title: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --shadow: 0 8px 32px rgba(229,25,43,0.15);
  --transition: all 0.3s ease;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; } /* Scroll lin la click pe linkuri ancoră */

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden; /* Previne scroll orizontal */
}

/* ---- CANVAS BULE (fundal animat) ---- */
/* Canvas-ul e fix, în spatele tuturor elementelor */
#bubblesCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;          /* Sub tot conținutul */
  pointer-events: none; /* Nu blochează click-urile */
}

/* Toate secțiunile stau deasupra canvas-ului */
section, nav, footer { position: relative; z-index: 1; }

/* ---- UTILITĂȚI ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-red { color: var(--red); }
.section { padding: 80px 0; }
.center-btn { text-align: center; margin-top: 48px; }

/* ---- BUTOANE ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229,25,43,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 48px; font-size: 1.1rem; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(229,25,43,0.15);
  color: var(--red);
  border: 1px solid rgba(229,25,43,0.3);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle { color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ================================================
   NAVBAR
================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000; /* Deasupra tuturor */
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}
/* Clasa adăugată prin JS când se scrollează */
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo .logo-img { height: 48px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  color: var(--gray-light);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
/* Link special Admin - cu bordură roșie */
.nav-admin {
  color: var(--red) !important;
  border: 1px solid rgba(229,25,43,0.3);
}
.nav-admin:hover { background: rgba(229,25,43,0.15) !important; }
/* Buton hamburger (mobil) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO SECTION
================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; }
.hero-tag {
  display: inline-block;
  background: rgba(229,25,43,0.1);
  border: 1px solid rgba(229,25,43,0.25);
  color: var(--red);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

/* Statistici hero */
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; }

/* Imaginea hero */
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-img-wrapper { position: relative; max-width: 500px; width: 100%; }
.hero-car-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  border: 1px solid var(--border);
}
/* Badge-uri flotante deasupra imaginii hero */
.floating-badge {
  position: absolute;
  background: rgba(17,17,17,0.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  /* Animație plutire sus-jos */
  animation: float 3s ease-in-out infinite;
}
.badge-1 { top: 20px; left: -20px; color: #4ade80; }
.badge-1 i { color: #4ade80; }
.badge-2 { bottom: 30px; right: -10px; animation-delay: 1.5s; }
/* Animație CSS plutire */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ================================================
   SERVICES GRID
================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
/* Linia roșie animată la hover */
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  border-color: rgba(229,25,43,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(229,25,43,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--red);
}
.service-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.service-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; }

/* ================================================
   WHY US
================================================ */
.why-us { background: rgba(255,255,255,0.02); }
.why-us-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
.why-us-image {
  flex: 1;
  position: relative;
}
.why-us-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
/* Caseta cu recenzie flotantă */
.review-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 12px;
  max-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.review-box p { font-size: 0.85rem; margin: 8px 0; color: var(--gray-light); font-style: italic; }
.review-box span { font-size: 0.8rem; color: var(--gray); }
.why-us-content { flex: 1; }
.why-us-content p { color: var(--gray); margin-bottom: 24px; }
/* Lista de avantaje */
.advantages-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.advantages-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.95rem;
}
.advantages-list li i { color: var(--red); font-size: 1rem; flex-shrink: 0; }

/* ================================================
   TESTIMONIALE
================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(229,25,43,0.25); transform: translateY(-4px); }
.testimonial-stars { font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p { color: var(--gray); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  background: var(--bg-card2); /* placeholder când nu e imagine */
}
.testimonial-author strong { display: block; font-weight: 600; }
.testimonial-author span { font-size: 0.8rem; color: var(--gray); }

/* ================================================
   CTA BAND
================================================ */
.cta-band {
  background: linear-gradient(135deg, #1a0005 0%, #0d0d0d 50%, #1a0005 100%);
  border-top: 1px solid rgba(229,25,43,0.2);
  border-bottom: 1px solid rgba(229,25,43,0.2);
  padding: 80px 24px;
  text-align: center;
  position: relative;
}
.cta-band h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.cta-band p { color: var(--gray); margin-bottom: 32px; font-size: 1.05rem; }

/* ================================================
   FOOTER
================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { height: 44px; object-fit: contain; margin-bottom: 16px; filter: brightness(1.1); }
.footer-col p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }
/* Lista contact cu iconițe */
.contact-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray); font-size: 0.9rem; }
.contact-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
/* Social media */
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}
.social-links a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }

/* ================================================
   PAGINI INTERNE - PAGE HERO (header pagini)
================================================ */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(229,25,43,0.05) 0%, transparent 100%);
}
.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p { color: var(--gray); font-size: 1.05rem; }
/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ================================================
   PAGINA SERVICII
================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.service-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.service-full-card:hover { border-color: rgba(229,25,43,0.3); transform: translateY(-4px); }
.service-full-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--bg-card2);
}
.service-full-body { padding: 28px; }
.service-full-body h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-full-body p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.service-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229,25,43,0.1);
  color: var(--red);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ================================================
   PAGINA DESPRE NOI
================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(229,25,43,0.3); transform: translateY(-4px); }
.team-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-card2);
}
.team-info { padding: 20px; }
.team-info h4 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; }
.team-info span { color: var(--red); font-size: 0.85rem; }
/* Contor statistici în secțiunea Despre */
.stats-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}
.stat-item .lbl { color: var(--gray); font-size: 0.9rem; }

/* ================================================
   PAGINA PROGRAMARE (formular)
================================================ */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.booking-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.booking-info p { color: var(--gray); margin-bottom: 24px; }
.info-items { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; align-items: center; gap: 14px; }
.info-item i {
  width: 44px; height: 44px;
  background: rgba(229,25,43,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-item div strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.info-item div span { color: var(--gray); font-size: 0.85rem; }
/* Formularul de programare */
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.booking-form h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
}
/* Grup câmp formular */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* Stilizare input-uri, select-uri, textarea */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red); /* Bordură roșie la focus */
  background: rgba(229,25,43,0.05);
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 100px; }
/* Grid 2 coloane în formular */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* Mesaj succes după trimitere */
.success-msg {
  display: none;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}
.success-msg.show { display: block; } /* Activat prin JS */

/* ================================================
   PAGINA CONTACT
================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-details h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(229,25,43,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 4px; }
.contact-item p { color: var(--white); font-size: 0.95rem; }
/* Harta (iframe Google Maps) */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}
.map-container iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }
/* Formular contact */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-form h3 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 28px; }

/* ================================================
   PAGINA ADMIN
================================================ */
/* Overlay login admin */
.admin-login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.admin-login-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.admin-login-box .logo-img { height: 52px; margin-bottom: 24px; }
.admin-login-box h2 { font-family: var(--font-title); font-size: 1.8rem; margin-bottom: 8px; }
.admin-login-box p { color: var(--gray); margin-bottom: 28px; font-size: 0.9rem; }
.admin-error {
  background: rgba(229,25,43,0.1);
  border: 1px solid rgba(229,25,43,0.3);
  color: var(--red);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}
/* Dashboard admin (afișat după login) */
.admin-dashboard { display: none; padding: 100px 24px 60px; max-width: 1200px; margin: 0 auto; }
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.admin-header h1 { font-family: var(--font-title); font-size: 2rem; }
/* Carduri statistici admin */
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.admin-stat-card .icon { font-size: 2rem; margin-bottom: 10px; }
.admin-stat-card .num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}
.admin-stat-card .lbl { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }
/* Filtre admin */
.admin-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.admin-filters input,
.admin-filters select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}
.admin-filters input:focus, .admin-filters select:focus { border-color: var(--red); }
/* Tabel programări */
.bookings-table-wrap { overflow-x: auto; }
.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.bookings-table th {
  background: rgba(229,25,43,0.1);
  color: var(--red);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(229,25,43,0.2);
}
.bookings-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--gray-light);
}
.bookings-table tr:hover td { background: rgba(255,255,255,0.02); }
/* Badges status */
.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-block;
}
.status-pending { background: rgba(250,204,21,0.15); color: #facc15; }
.status-confirmed { background: rgba(74,222,128,0.15); color: #4ade80; }
.status-completed { background: rgba(96,165,250,0.15); color: #60a5fa; }
.status-cancelled { background: rgba(229,25,43,0.15); color: var(--red); }
/* Acțiuni din tabel */
.action-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-confirm { background: rgba(74,222,128,0.15); color: #4ade80; }
.btn-confirm:hover { background: #4ade80; color: #000; }
.btn-cancel { background: rgba(229,25,43,0.15); color: var(--red); }
.btn-cancel:hover { background: var(--red); color: var(--white); }
.btn-delete { background: rgba(255,255,255,0.05); color: var(--gray); }
.btn-delete:hover { background: rgba(255,255,255,0.15); color: var(--white); }
/* Tab-uri admin */
.admin-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.admin-tab {
  padding: 10px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gray);
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: var(--transition);
}
.admin-tab.active, .admin-tab:hover {
  background: rgba(229,25,43,0.15);
  border-color: rgba(229,25,43,0.3);
  color: var(--red);
}
/* Mesaj gol (no bookings) */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--gray);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }

/* ================================================
   RESPONSIVE (Mobil)
================================================ */
@media (max-width: 900px) {
  /* Hero pe coloană */
  .hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { width: 100%; }

  /* Why us pe coloană */
  .why-us-inner { flex-direction: column; }
  .review-box { position: static; margin-top: 16px; max-width: 100%; }

  /* Footer grid */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Booking + Contact */
  .booking-wrapper, .contact-wrapper { grid-template-columns: 1fr; }

  /* Admin stats */
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  /* Navbar mobil */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; } /* Activat la click pe hamburger */
  .hamburger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-header { flex-direction: column; gap: 16px; align-items: flex-start; }
}
/* ================================================================
   AutoLine — style.css  |  Tema dark, minimalist, centrat
================================================================ */

/* ---- FONTURI ---- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- VARIABILE ---- */
:root {
  --bg:       #0a0b0e;
  --bg2:      #0f1015;
  --bg3:      #141519;
  --card:     #16181d;
  --card2:    #1c1e24;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);
  --accent:   #c8a96e;        /* auriu cald */
  --accent2:  #e8c98e;
  --white:    #f0f1f3;
  --gray:     #6b7280;
  --gray2:    #9ca3af;
  --success:  #4ade80;
  --warning:  #fbbf24;
  --danger:   #f87171;
  --font:     'DM Sans', sans-serif;
  --font-d:   'DM Serif Display', serif;
  --r:        10px;
  --r2:       14px;
  --transition: all 0.22s ease;
  --shadow:   0 4px 24px rgba(0,0,0,0.4);
  --shadow2:  0 8px 40px rgba(0,0,0,0.55);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* ---- UTILITARE ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.text-accent { color: var(--accent); }
.center  { text-align: center; }

/* ---- BUTOANE ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: var(--r);
  font-family: var(--font); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0b0e;
  box-shadow: 0 4px 16px rgba(200,169,110,0.25);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(200,169,110,0.35); }

.btn-ghost {
  background: transparent; color: var(--gray2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { background: var(--card2); color: var(--white); border-color: rgba(255,255,255,0.2); }

.btn-danger {
  background: rgba(248,113,113,0.1); color: var(--danger);
  border: 1px solid rgba(248,113,113,0.2);
}
.btn-danger:hover { background: rgba(248,113,113,0.18); }

.btn-sm { padding: 7px 16px; font-size: 0.8rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,11,14,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 36px; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-link {
  color: var(--gray); text-decoration: none;
  padding: 6px 14px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link.nav-accent { color: var(--accent); }
.nav-link.nav-accent:hover { background: rgba(200,169,110,0.1); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--gray2); border-radius: 2px; transition: var(--transition); }

/* ---- PAGE HERO (pagini interioare) ---- */
.page-hero {
  padding: 120px 24px 64px;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.page-hero h1 { font-family: var(--font-d); font-size: clamp(2rem,5vw,3rem); font-weight: 400; margin-bottom: 12px; }
.page-hero p  { color: var(--gray2); font-size: 1rem; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 0.8rem; color: var(--gray);
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* ---- TAG ---- */
.tag {
  display: inline-block;
  background: rgba(200,169,110,0.1); color: var(--accent);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 3px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 14px;
}

/* ---- SECTION HEADER ---- */
.sec-header { text-align: center; margin-bottom: 52px; }
.sec-title { font-family: var(--font-d); font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 400; margin-bottom: 10px; }
.sec-sub { color: var(--gray2); max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

/* ---- CARD ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(200,169,110,0.2);
  box-shadow: 0 0 0 1px rgba(200,169,110,0.07), var(--shadow);
}

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ---- BADGE STATUS ---- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
}
.badge-pending   { background: rgba(251,191,36,0.12);  color: var(--warning); }
.badge-confirmed { background: rgba(74,222,128,0.12);  color: var(--success); }
.badge-completed { background: rgba(200,169,110,0.12); color: var(--accent); }
.badge-cancelled { background: rgba(248,113,113,0.12); color: var(--danger); }

/* ---- FORM ELEMENTE ---- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.83rem; font-weight: 500; color: var(--gray2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3); color: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r); padding: 11px 14px;
  font-family: var(--font); font-size: 0.875rem;
  transition: var(--transition); outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* ---- NOTIFICATION TOAST ---- */
#toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--card2); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 14px 20px;
  font-size: 0.87rem; font-weight: 500;
  box-shadow: var(--shadow2);
  transform: translateY(80px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 320px;
}
#toast.show { transform: translateY(0); opacity: 1; }
#toast.success { border-color: rgba(74,222,128,0.3); color: var(--success); }
#toast.error   { border-color: rgba(248,113,113,0.3); color: var(--danger); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 32px;
  width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto;
  transform: scale(0.96); transition: transform 0.2s ease;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.modal-head h3 { font-family: var(--font-d); font-size: 1.4rem; font-weight: 400; }
.modal-close { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1.3rem; line-height: 1; }
.modal-close:hover { color: var(--white); }

/* ================================================================
   HOMEPAGE
================================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
}
.hero-inner { max-width: 760px; }
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400; line-height: 1.12;
  margin-bottom: 18px; letter-spacing: -0.01em;
}
.hero-sub { color: var(--gray2); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

/* Stats row */
.hero-stats {
  display: flex; justify-content: center; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r2);
  overflow: hidden; background: var(--card);
}
.hero-stat {
  flex: 1; padding: 20px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n { font-family: var(--font-d); font-size: 1.8rem; color: var(--accent); line-height: 1; }
.hero-stat-l { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 16px; }
.service-card {
  padding: 28px; cursor: default;
}
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(200,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent); margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(200,169,110,0.18); transform: scale(1.08); }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.service-card p  { color: var(--gray); font-size: 0.875rem; line-height: 1.6; margin-bottom: 12px; }
.service-price { font-size: 0.78rem; color: var(--accent); font-weight: 600; }

/* Why us section */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-img { border-radius: var(--r2); overflow: hidden; }
.why-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--gray2); }
.why-list li i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }

/* Testimoniale */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.testi-card { padding: 28px; }
.testi-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 12px; }
.testi-text { color: var(--gray2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.testi-auth img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border2); }
.testi-auth strong { display: block; font-size: 0.88rem; }
.testi-auth span { font-size: 0.76rem; color: var(--gray); }

/* CTA */
.cta-band {
  background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 72px 24px; text-align: center;
}
.cta-band h2 { font-family: var(--font-d); font-size: clamp(1.6rem,3.5vw,2.2rem); margin-bottom: 10px; }
.cta-band p  { color: var(--gray2); margin-bottom: 28px; }

/* ================================================================
   SERVICII PAGE
================================================================ */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 16px; }
.svc-card-full { padding: 32px; }
.svc-card-full h3 { font-size: 1.05rem; font-weight: 600; margin: 14px 0 8px; }
.svc-card-full p  { color: var(--gray); font-size: 0.875rem; margin-bottom: 16px; }
.svc-price-tag { display: inline-block; background: rgba(200,169,110,0.1); color: var(--accent); padding: 4px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.svc-details { margin-top: 16px; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.svc-details li { font-size: 0.83rem; color: var(--gray2); display: flex; align-items: center; gap: 8px; }
.svc-details li::before { content: '—'; color: var(--accent); }

/* ================================================================
   DESPRE PAGE
================================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 72px; }
.about-intro img { width: 100%; border-radius: var(--r2); object-fit: cover; aspect-ratio: 4/3; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.team-card { padding: 24px; text-align: center; }
.team-card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 2px solid var(--border2); display: block; }
.team-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.team-card span { font-size: 0.78rem; color: var(--gray); }

/* ================================================================
   PROGRAMARE PAGE
================================================================ */
.booking-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; align-items: start; }
.booking-info-panel { position: sticky; top: 80px; }
.booking-info-panel h3 { font-family: var(--font-d); font-size: 1.4rem; margin-bottom: 20px; }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.info-item-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px;
  background: rgba(200,169,110,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.info-item strong { display: block; font-size: 0.87rem; font-weight: 600; margin-bottom: 2px; }
.info-item span   { font-size: 0.8rem; color: var(--gray); }

.booking-form-panel { }
.booking-form-panel h3 { font-family: var(--font-d); font-size: 1.4rem; margin-bottom: 24px; }
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-success {
  text-align: center; padding: 48px 24px; display: none;
}
.booking-success i  { font-size: 3rem; color: var(--success); margin-bottom: 16px; display: block; }
.booking-success h3 { font-family: var(--font-d); font-size: 1.6rem; margin-bottom: 8px; }
.booking-success p  { color: var(--gray2); }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: rgba(200,169,110,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-item h4 { font-size: 0.87rem; font-weight: 600; margin-bottom: 4px; }
.contact-item p  { font-size: 0.83rem; color: var(--gray2); }
.contact-map { border-radius: var(--r2); overflow: hidden; height: 200px; background: var(--card); display: flex; align-items: center; justify-content: center; color: var(--gray); border: 1px solid var(--border); }

/* ================================================================
   ADMIN PAGE
================================================================ */
.login-overlay {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 3000; padding: 20px;
}
.login-box {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--r2); padding: 40px 36px;
  width: 100%; max-width: 380px; text-align: center;
}
.login-box img { height: 44px; margin: 0 auto 20px; display: block; }
.login-box h2 { font-family: var(--font-d); font-size: 1.5rem; margin-bottom: 6px; }
.login-box > p { color: var(--gray2); font-size: 0.87rem; margin-bottom: 28px; }
.login-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.login-error { background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.2); color: var(--danger); border-radius: var(--r); padding: 10px 14px; font-size: 0.83rem; display: none; }

/* Admin layout */
.admin-wrap { padding-top: 62px; min-height: 100vh; }
.admin-body { max-width: 1200px; margin: 0 auto; padding: 36px 24px; }
.admin-top  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.admin-title h1 { font-family: var(--font-d); font-size: 1.7rem; }
.admin-title p  { color: var(--gray); font-size: 0.85rem; margin-top: 2px; }

/* Stat cards */
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.astat { padding: 20px 22px; }
.astat-num { font-family: var(--font-d); font-size: 2rem; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.astat-lbl { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* Filter tabs */
.filter-tabs { display: flex; gap: 4px; margin-bottom: 16px; flex-wrap: wrap; }
.ftab {
  padding: 7px 16px; border-radius: 8px; border: 1px solid transparent;
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  background: none; color: var(--gray); transition: var(--transition);
}
.ftab:hover   { color: var(--white); background: var(--card2); }
.ftab.active  { color: var(--accent); background: rgba(200,169,110,0.08); border-color: rgba(200,169,110,0.2); }

/* Search bar */
.admin-search { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.admin-search input { flex: 1; min-width: 200px; }
.admin-search input, .admin-search select { background: var(--card); border: 1px solid var(--border2); color: var(--white); border-radius: var(--r); padding: 10px 14px; font-size: 0.85rem; outline: none; }
.admin-search input:focus { border-color: var(--accent); }

/* Bookings table */
.table-wrap { overflow-x: auto; }
.bookings-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.bookings-table th {
  padding: 12px 16px; text-align: left;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.bookings-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.bookings-table tr:last-child td { border-bottom: none; }
.bookings-table tr:hover td { background: rgba(255,255,255,0.02); }
.td-actions { display: flex; gap: 6px; }

/* Empty state */
.empty-state { text-align: center; padding: 56px 24px; }
.empty-state i  { font-size: 2.5rem; color: var(--gray); margin-bottom: 14px; display: block; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 6px; }
.empty-state p  { color: var(--gray); font-size: 0.88rem; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; margin-bottom: 40px; }
.footer-logo { height: 34px; margin-bottom: 12px; }
.footer-col > p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; margin-bottom: 18px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray2); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray); font-size: 0.85rem; }
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.social-row { display: flex; gap: 8px; }
.social-row a {
  width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: var(--transition);
}
.social-row a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 16px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  .why-grid, .about-intro, .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .booking-info-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; top: 62px; left: 0; right: 0; background: rgba(10,11,14,0.98); flex-direction: column; padding: 12px; gap: 2px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .bookings-table { min-width: 700px; }
}
