/* ==========================================================
   1. SISTEM DE VARIABILE UNIVERSALE (THEMING)
   ========================================================== */

:root {
  /* Default: Tema GLAMOUR (Saloane) */
  --color-primary: #c9a84c;
  --color-secondary: #0a0a0a;
  --color-accent: #ffffff;
  --bg-main: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #1a1a1a;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-color: rgba(201, 168, 76, 0.15);
  --border-light: rgba(255, 255, 255, 0.06);
  --radius: 4px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
}
/* --- TEME SALOANE / BEAUTY --- */
.theme-elegant {
  --color-primary: #d4a574;
  --color-secondary: #1a1a2e;
  --color-accent: #ffffff;
  --bg-main: #fdf2f8;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --text-main: #1a1a2e;
  --text-muted: #666666;
  --border-color: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.03);
  --radius: 16px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.theme-fresh {
  --color-primary: #14b8a6;
  --color-secondary: #0f172a;
  --color-accent: #ffffff;
  --bg-main: #f0fdf4;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #555555;
  --border-color: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.04);
  --radius: 12px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
}
/* --- TEME MEDICALE --- */
.theme-clasic {
  --color-primary: #2563eb;
  --color-secondary: #ffffff;
  --color-accent: #3b82f6;
  --bg-main: #f8fafc;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --border-light: #cbd5e1;
  --radius: 12px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.theme-tehnologic {
  --color-primary: #06b6d4;
  --color-secondary: #0f172a;
  --color-accent: #22d3ee;
  --bg-main: #0f172a;
  --bg-alt: #1e293b;
  --bg-card: rgba(30, 41, 59, 0.5);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(6, 182, 212, 0.15);
  --border-light: rgba(255, 255, 255, 0.05);
  --radius: 8px;
  --shadow-sm: 0 8px 32px rgba(6, 182, 212, 0.08);
}

.theme-wellness {
  --color-primary: #6b8e6b;
  --color-secondary: #ffffff;
  --color-accent: #8fb38f;
  --bg-main: #f5f5f0;
  --bg-alt: #eae8e0;
  --bg-card: #ffffff;
  --text-main: #1a2e1a;
  --text-muted: #4a5e4a;
  --border-color: rgba(107, 142, 107, 0.15);
  --border-light: rgba(107, 142, 107, 0.08);
  --radius: 20px;
  --shadow-sm: 0 4px 20px rgba(26, 46, 26, 0.05);
}

/* --- TEMA MODERN (STOMATOLOGIE PREMIUM) --- */
.theme-modern {
  --color-primary: #0ea5e9; /* Albastru medical de încredere */
  --color-secondary: #0f172a; /* Navy dark */
  --color-accent: #38bdf8;
  --bg-main: #f8fafc;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: rgba(14, 165, 233, 0.15);
  --border-light: rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Banner Finanțare / Rate */
.banner-rate {
  background: linear-gradient(135deg, var(--color-secondary), #1e293b);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 40px rgba(15,23,42,0.2);
  margin-top: 3.5rem;
}
.banner-rate-text h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0.5rem; }
.banner-rate-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.banner-rate-logos { display: flex; gap: 1rem; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1rem 1.5rem; border-radius: 8px; }
.banner-rate-logos span { font-weight: 800; font-size: 1.2rem; color: var(--color-primary); display: flex; align-items: center; gap: 8px;}

@media (max-width: 768px) {
  .banner-rate { flex-direction: column; text-align: center; padding: 1.5rem; }
  .banner-rate-logos { flex-direction: column; width: 100%; }
}

.theme-warm {
  --color-primary: #722f37;
  --color-secondary: #faf5ef;
  --color-accent: #c4973b;
  --bg-main: #faf5ef;
  --bg-alt: #f0e8da;
  --bg-card: #ffffff;
  --text-main: #3d2c1e;
  --text-muted: #5a4333;
  --border-color: #d4c4a8;
  --border-light: #e3d7c3;
  --radius: 8px;
  --shadow-sm: 0 4px 16px rgba(61, 44, 30, 0.08);
}

.theme-bold {
  --color-primary: #e63946;
  --color-secondary: #1a1a1a;
  --color-accent: #f4a261;
  --bg-main: #0a0a0a;
  --bg-alt: #141414;
  --bg-card: #1c1c1c;
  --text-main: #ffffff;
  --text-muted: #999999;
  --border-color: rgba(230, 57, 70, 0.2);
  --border-light: rgba(255, 255, 255, 0.05);
  --radius: 12px;
  --shadow-sm: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Adaugă textură subtilă doar pentru tema Warm (Rustic) */
body.theme-warm {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(61, 44, 30, 0.008) 2px, rgba(61, 44, 30, 0.008) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(61, 44, 30, 0.006) 2px, rgba(61, 44, 30, 0.006) 4px);
}
/* --- TEME CONSTRUCȚII --- */
.theme-corporate {
  --color-primary: #1e88e5;
  --color-secondary: #0d1b2a;
  --color-accent: #1976d2;
  --bg-main: #0d1b2a;
  --bg-alt: #1b2838;
  --bg-card: rgba(13, 27, 42, 0.6);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-color: rgba(30, 136, 229, 0.2);
  --border-light: rgba(255, 255, 255, 0.08);
  --radius: 6px;
  --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.theme-industrial {
  --color-primary: #eab308;
  --color-secondary: #1c1c1c;
  --color-accent: #facc15;
  --bg-main: #1c1c1c;
  --bg-alt: #242424;
  --bg-card: #2a2a2a;
  --text-main: #f5f5f5;
  --text-muted: #a3a3a3;
  --border-color: #3a3a3a;
  --border-light: rgba(255, 255, 255, 0.05);
  --radius: 4px;
  --shadow-sm: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.theme-residential {
  --color-primary: #4a7c59;
  --color-secondary: #2d2418;
  --color-accent: #8fb38f;
  --bg-main: #faf5ef;
  --bg-alt: #f0ebe3;
  --bg-card: #ffffff;
  --text-main: #2d2418;
  --text-muted: #6b5d4f;
  --border-color: rgba(74, 124, 89, 0.2);
  --border-light: rgba(45, 36, 24, 0.08);
  --radius: 16px;
  --shadow-sm: 0 12px 40px rgba(45, 36, 24, 0.12);
}
/* ==========================================================
   2. STILURI GLOBALE 
   ========================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body, 'Space Grotesk'), sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, 'Syne'), sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-family: var(--font-body, 'Space Grotesk'), sans-serif;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all 0.3s ease; border: none; text-align: center;
  justify-content: center; letter-spacing: 1px; text-transform: uppercase;
}

.theme-wellness .btn, .theme-clasic .btn { border-radius: 50px; }

.btn--primary { background-color: var(--color-primary); color: var(--color-secondary); }
.btn--primary:hover { background-color: var(--color-accent); color: var(--color-secondary); transform: translateY(-2px); box-shadow: 0 8px 30px var(--border-color); }
.btn--outline { background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn--outline:hover { background-color: var(--color-primary); color: var(--color-secondary); }
.btn--whatsapp { background-color: #25d366; color: #fff; }
.btn--whatsapp:hover { background-color: #1fb855; transform: translateY(-2px); }
.btn--full { width: 100%; }

/* --- Section Common --- */
.section { padding: 5rem 0; }
.section:nth-child(even) { background-color: var(--bg-alt); }
.section:nth-child(odd) { background-color: var(--bg-main); }

.section-label {
  display: inline-block; font-family: var(--font-body, 'Space Grotesk'), sans-serif;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem;
}
.section-label--center { display: block; text-align: center; }
.section-title { font-size: 2.5rem; color: var(--text-main); margin-bottom: 1rem; font-weight: 800; }
.section-title--center { text-align: center; margin-bottom: 3rem; }

[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate].animate-in { opacity: 1; transform: translateY(0); }

/* ===========================
   NAVBAR (HAMBURGER MEREU ACTIV)
   =========================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 0; transition: all 0.4s ease; background: transparent; }
.navbar--scrolled { background: var(--bg-card); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 0.75rem 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--border-color); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-logo-img { height: 44px; width: auto; max-width: 100%; object-fit: contain; }
.navbar-logo-text { font-family: var(--font-heading, 'Syne'), sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: 1px; transition: color 0.4s ease; }
.navbar--scrolled .navbar-logo-text { color: var(--color-primary); }

/* Butonul de Profil (Vizibil) */
.navbar-profile-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--color-primary); color: var(--color-primary); transition: all 0.3s ease; background: transparent; }
.navbar-profile-btn:hover { background-color: var(--color-primary); color: var(--color-secondary); }
.navbar-profile-btn svg { width: 18px; height: 18px; }

/* Butonul Hamburger (Vizibil mereu) */
.navbar-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1002; position: relative; }

/* Forțăm barele să fie MEREU albe (indiferent de scroll sau stare) pentru a contrasta cu fundalul închis */
.navbar-toggle-bar { display: block; width: 26px; height: 2px; background-color: #ffffff !important; border-radius: 2px; transition: all 0.3s ease; }

.navbar-toggle--active .navbar-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle--active .navbar-toggle-bar:nth-child(2) { opacity: 0; }
.navbar-toggle--active .navbar-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar-toggle--active .navbar-toggle-bar:nth-child(2) { opacity: 0; }
.navbar-toggle--active .navbar-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Meniul Ascuns (Off-canvas) */
.navbar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.navbar-overlay.active { opacity: 1; visibility: visible; }

.navbar-menu { 
  position: fixed; top: 0; right: -100%; width: 320px; max-width: 80vw; height: 100vh; 
  background: var(--bg-main); 
  display: flex; flex-direction: column; padding: 6rem 2rem 2rem; 
  box-shadow: -10px 0 40px rgba(0,0,0,0.5); border-left: 1px solid var(--border-color); 
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001;
  overflow-y: auto;
}
.navbar-menu--open { right: 0; }
.navbar-menu li { width: 100%; margin-bottom: 0.5rem; }

.navbar-link { display: block; padding: 1rem 0; font-size: 1.1rem; font-weight: 500; color: var(--text-main); border-bottom: 1px solid var(--border-light); transition: all 0.3s ease; }
.navbar-link:hover { color: var(--color-primary); padding-left: 10px; border-bottom-color: var(--color-primary); }

.navbar-link--cta { background-color: var(--color-primary); color: var(--color-secondary) !important; margin-top: 1.5rem; text-align: center; border-radius: var(--radius); border: none; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; padding: 1rem; }
.navbar-link--cta:hover { background-color: var(--color-accent); padding-left: 1rem; }
/* ===========================
   HERO
   =========================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; text-align: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, var(--bg-main) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 3; color: #fff; padding: 0 1.25rem; max-width: 750px; }
.hero-label { font-family: var(--font-body, 'Space Grotesk'), sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 6px; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.25rem; }
.hero-title { font-size: 4.5rem; font-weight: 800; margin-bottom: 1rem; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.hero-tagline { font-size: 1.15rem; font-weight: 300; opacity: 0.85; margin-bottom: 2.5rem; line-height: 1.7; color: rgba(255, 255, 255, 0.8); }

/* ===========================
   ANNOUNCEMENTS
   =========================== */
.section--announcements { padding: 4rem 0; }
.announcements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.announcement-card { background: var(--bg-card); border-radius: var(--radius); padding: 1.75rem; border-left: 4px solid var(--color-primary); box-shadow: var(--shadow-sm); }
.announcement-date { font-size: 0.8rem; font-weight: 600; color: var(--color-primary); text-transform: uppercase; letter-spacing: 1px; }
.announcement-title { font-size: 1.25rem; margin: 0.5rem 0; color: var(--text-main); }
.announcement-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   ABOUT
   =========================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-description { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.about-image-wrapper { position: relative; }
.about-image { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-image-decoration { position: absolute; top: -15px; right: -15px; width: 100%; height: 100%; border: 2px solid var(--color-primary); border-radius: var(--radius); z-index: -1; }

/* ===========================
   SERVICES
   =========================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.service-card { background: var(--bg-card); border-radius: var(--radius); padding: 2rem; text-align: center; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.service-icon { width: 60px; height: 60px; border-radius: var(--radius); background: var(--bg-alt); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--color-primary); }
.service-icon svg { width: 28px; height: 28px; }
.service-name { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text-main); }
.service-description { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ===========================
   PRICING
   =========================== */
.pricing-categories { max-width: 800px; margin: 0 auto; }
.pricing-category { margin-bottom: 2.5rem; }
.pricing-category-title { font-size: 1.5rem; padding-bottom: 0.75rem; margin-bottom: 1.25rem; border-bottom: 2px solid var(--color-primary); color: var(--text-main); }
.pricing-item { display: flex; align-items: baseline; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); }
.pricing-item:last-child { border-bottom: none; }
.pricing-item-info { flex-shrink: 0; }
.pricing-item-name { font-family: var(--font-body, 'Space Grotesk'), sans-serif; font-size: 1rem; font-weight: 600; color: var(--text-main); }
.pricing-item-description { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem; }
.pricing-item-dots { flex: 1; margin: 0 0.75rem; border-bottom: 2px dotted var(--border-color); min-width: 30px; position: relative; top: -4px; }
.pricing-item-price { font-family: var(--font-heading, 'Syne'), sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--color-primary); white-space: nowrap; flex-shrink: 0; }

/* ===========================
   MENU (RESTAURANT SPECIFIC)
   =========================== */
.menu-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.menu-category { background: var(--bg-card); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.menu-category-title { font-size: 1.5rem; color: var(--color-primary); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--border-color); text-align: center; }
.menu-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; width: 100%; }
.menu-item-name { font-size: 1.05rem; font-weight: 700; color: var(--text-main); }
.menu-item-price { font-family: var(--font-heading), sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--color-primary); white-space: nowrap; }
.menu-item-description { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.menu-item--with-photo { display: grid; grid-template-columns: 70px 1fr; align-items: center; }
.menu-item-photo { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius); }

/* ===========================
   GALLERY
   =========================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-color); position: relative; }
.gallery-image { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-image { transform: scale(1.05); }

/* ===========================
   LOCATION & PROGRAM
   =========================== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.schedule { margin: 1.5rem 0 2rem; }
.schedule-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); }
.schedule-day { font-weight: 600; font-size: 0.95rem; color: var(--text-main); }
.schedule-time { color: var(--color-primary); font-weight: 500; }
.location-address, .location-phone { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.95rem; color: var(--text-muted); }
.location-address svg, .location-phone svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; }
.location-phone a { color: var(--color-primary); font-weight: 600; }
.location-map iframe { border-radius: var(--radius); width: 100%; border: 1px solid var(--border-color); }

/* ===========================
   REVIEWS
   =========================== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--bg-card); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.review-stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; }
.star-filled { color: #f59e0b; fill: #f59e0b; }
.star-filled svg, .star-empty svg { width: 18px; height: 18px; }
.star-empty { color: var(--border-light); }
.review-text { font-style: italic; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; font-size: 0.95rem; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--color-primary); }

/* --- Formulare Client --- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: var(--font-body, 'Space Grotesk'), sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .booking-summary textarea, #rest-message { width: 100%; padding: 1rem 1.25rem; background-color: var(--bg-main); border: 1px solid var(--border-color); border-radius: var(--radius); color: var(--text-main); font-family: var(--font-body, 'Space Grotesk'), sans-serif; font-size: 1rem; outline: none; }
.form-group input:focus, .form-group select:focus, .booking-summary textarea:focus, #rest-message:focus { border-color: var(--color-primary); box-shadow: 0 0 10px rgba(0,0,0,0.05); }

/* ===========================
   BOOKING (MERO STYLE + RESTAURANT STYLE)
   =========================== */
.booking-wrapper { max-width: 800px; margin: 0 auto; }
#bookingCalendarUi, #restaurantBookingUi, #constructiiBookingUi { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.calendar-service-select { margin-bottom: 2rem; }
.calendar-service-select label { display: block; font-family: var(--font-body, 'Space Grotesk'), sans-serif; font-weight: 600; color: var(--color-primary); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.calendar-service-select select { width: 100%; padding: 1rem; background: var(--bg-main); border: 1px solid var(--border-color); color: var(--text-main); font-family: var(--font-body, 'Space Grotesk'), sans-serif; font-size: 1rem; outline: none; cursor: pointer; border-radius: var(--radius); }
.calendar-header { display: flex; justify-content: center; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-light); }
.calendar-nav { display: flex; align-items: center; gap: 1rem; }
.calendar-nav h4 { font-family: var(--font-body, 'Space Grotesk'), sans-serif; font-size: 1.2rem; min-width: 150px; text-align: center; margin: 0; }
.nav-arrow { background: var(--bg-main); border: 1px solid var(--border-color); color: var(--color-primary); border-radius: 4px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.nav-arrow:hover { background: var(--color-primary); color: var(--color-secondary); }
.calendar-picker { position: relative; }
.picker-label { cursor: pointer; color: var(--text-muted); }
.hidden-date-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.calendar-days-strip { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 1rem; margin-bottom: 1.5rem; scrollbar-width: thin; }
.day-btn { flex: 0 0 calc(100% / 5 - 0.75rem); min-width: 70px; background: var(--bg-main); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 0.75rem 0.5rem; display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: all 0.3s ease; }
.day-btn .day-name { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.25rem; }
.day-btn .day-number { font-size: 1.25rem; font-weight: 700; color: var(--text-main); }
.day-btn.active { background: var(--color-primary); border-color: var(--color-primary); }
.day-btn.active .day-name, .day-btn.active .day-number { color: var(--color-secondary); }
.day-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 0.75rem; margin-bottom: 2rem; }
.slot-btn { background: var(--bg-main); border: 1px solid var(--border-color); color: var(--text-main); padding: 0.75rem 0.5rem; border-radius: var(--radius); font-weight: 500; cursor: pointer; transition: all 0.2s ease; }
.slot-btn.selected { background: var(--color-primary); color: var(--color-secondary); border-color: var(--color-primary); font-weight: 700; }
.slot-btn:disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.booking-summary { background: var(--bg-main); padding: 1.5rem; border-left: 3px solid var(--color-primary); margin-top: 2rem; border-radius: var(--radius); }
.booking-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 3rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); }

/* ===========================
   CONTACT CTA
   =========================== */
.contact-cta-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2.5rem; text-align: center; color: var(--text-main); }
.contact-cta-title { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--text-main); }
.contact-cta-text { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.contact-social .social-link { width: 44px; height: 44px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.contact-social .social-link:hover { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-secondary); }

/* ===========================
   FOOTER
   =========================== */
.footer { background-color: var(--bg-card); color: var(--text-muted); padding-top: 4rem; border-top: 1px solid var(--border-color); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-name { font-size: 1.5rem; color: var(--text-main); margin-bottom: 0.5rem; }
.footer-heading { font-family: var(--font-body), sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-main); margin-bottom: 1.25rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-contact a { color: var(--text-muted); transition: color 0.3s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-primary); }
.footer-bottom { border-top: 1px solid var(--border-light); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* ===========================
   FLOATING BUTTONS (WHATSAPP & BOOKING)
   =========================== */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; background-color: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 999; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: translateY(-5px); }

.booking-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; background-color: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-secondary); box-shadow: 0 4px 20px var(--border-color); z-index: 999; transition: transform 0.3s ease; }
.booking-float:hover { transform: translateY(-5px); box-shadow: 0 8px 25px var(--border-color); }

/* Dacă ambele butoane sunt active simultan, îl mutăm pe cel de WhatsApp mai la stânga */
.whatsapp-float.has-booking { right: 5.5rem; }

/* ===========================
   TEMA MEDICAL - EXCEPTII
   =========================== */
.theme-tehnologic .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 100px; background: rgba(6, 182, 212, 0.12); border: 1px solid rgba(6, 182, 212, 0.25); color: var(--color-primary); margin-bottom: 28px; }
.theme-tehnologic .hero-grid-overlay { position: absolute; inset: 0; z-index: 2; background-image: linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.theme-tehnologic .about-image-glow { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 70%; height: 40px; background: var(--color-primary); filter: blur(40px); opacity: 0.15; border-radius: 50%; pointer-events: none; }
.theme-wellness .hero-subtitle { font-family: var(--font-heading), serif; font-style: italic; font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 36px; }
/* ===========================
   TEMA SALOANE - EXCEPTII
   =========================== */
/* Tema Elegant - Butoane complet rotunde (tip pastilă) */
.theme-elegant .btn {
  border-radius: 50px;
}
.theme-elegant .about-image, 
.theme-elegant .about-image-decoration {
  border-radius: 20px;
}
.theme-elegant .service-icon {
  border-radius: 50%;
  background: #fdf2f8;
}

/* Tema Fresh - Iconițe cu gradient și tranziții mai moi */
.theme-fresh .service-icon {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
  border: none;
}
.theme-fresh .service-card:hover .service-icon {
  background: var(--color-primary);
  color: #fff;
}
.theme-fresh .gallery-item {
  border: none;
}
/* ==========================================================
   CONSTRUCȚII (SPECIFIC)
   ========================================================== */

/* Statistici "Despre Noi" */
.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.about-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Secțiunea Proiecte / Portofoliu */
.projects-categories {
  max-width: 900px;
  margin: 0 auto;
}

.project-category {
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.project-category-title {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.project-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.project-item:last-child { border-bottom: none; }

.project-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.project-item-name { font-weight: 700; color: var(--text-main); }
.project-item-price { color: var(--color-primary); font-weight: 800; }
.project-item-description { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Indicator Scroll Hero */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  opacity: 0.6;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
/* ===========================
   RESPONSIVITATE
   =========================== */
@media (max-width: 900px) {
  .hero-title { font-size: 2.75rem; }
  .about-grid, .location-grid, .contact-grid, .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 640px) {
  .navbar-profile-btn { display: none !important; } /* Ascunde iconița rotundă sus pe mobil */
  .section { padding: 3.5rem 0; }
  .hero-title { font-size: 2.25rem; }
  .section-title { font-size: 1.75rem; margin-bottom: 2rem; }
  .navbar-logo-text { font-size: 1.25rem; }
  .navbar-logo-img { max-width: 160px; }
  .services-grid, .reviews-grid, .form-row, .announcements-grid, .menu-categories, .about-stats {
  grid-template-columns: 1fr;
  flex-direction: column;
}
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .pricing-item { flex-wrap: wrap; }
  .pricing-item-dots { display: none; }
  .pricing-item-price { width: 100%; text-align: left; margin-top: 0.25rem; }
  .auth-buttons { flex-direction: column; }
  #bookingCalendarUi, #restaurantBookingUi, #constructiiBookingUi { padding: 1.25rem; }
  .day-btn { flex: 0 0 calc(100% / 4 - 0.75rem); }
  .calendar-slots-grid { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); }
}

/* MODALE (Contul Meu) */
.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1.25rem; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.modal-overlay[style*="display: flex"] { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); width: 100%; max-width: 420px; padding: 3rem 2.5rem; position: relative; box-shadow: var(--shadow-sm); }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: transparent; border: none; color: var(--text-muted); cursor: pointer; transition: color 0.3s ease; }
.modal-close:hover { color: var(--color-primary); }
/* ==========================================================
   EXCEPȚII HERO (CUSTOMIZARE PE TEME)
   ========================================================== */

/* --- Tema FRESH: Aliniere la stânga --- */
.theme-fresh .hero { justify-content: flex-start; text-align: left; }
.theme-fresh .hero-content { margin-left: 8%; text-align: left; }
.theme-fresh .hero-actions { justify-content: flex-start; }

/* --- Tema BOLD: Diagonala de jos --- */
.theme-bold .hero { position: relative; }
.theme-bold .hero__divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: var(--bg-main); /* Culoarea secțiunii următoare */
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}
.theme-bold .hero-title { font-size: clamp(3rem, 10vw, 7rem); text-transform: uppercase; }

/* --- Tema TEHNOLOGIC: Grid și Badge --- */
.theme-tehnologic .hero-badge {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--color-primary);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
}

/* --- Tema INDUSTRIAL: Badge galben robust --- */
.theme-industrial .hero-badge {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.35);
  color: var(--color-primary);
  border-radius: 4px; /* Mai pătrat */
}

/* --- Tema WELLNESS: Subtitlu Italic --- */
.theme-wellness .hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.8;
}
/* --- DECORURI IMAGINI "DESPRE NOI" --- */

/* Tema Tehnologic: Efect de strălucire cyan sub poză [cite: 710] */
.theme-tehnologic .about-image-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: var(--color-primary);
  filter: blur(40px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

/* Construcții (Corporate/Industrial): Accent tip bordură decalată [cite: 833, 915] */
.theme-corporate .about-image-accent,
.theme-industrial .about-image-accent,
.theme-residential .about-image-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

/* Tema Warm: Cadru de tip "hârtie" cu bordură punctată și ornament */
.theme-warm .frame-decorative {
  position: relative;
  padding: 12px;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
}
.theme-warm .frame-decorative::before {
  content: '\2767'; /* Ornament floral rustic */
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-main);
  padding: 0 10px;
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* Tema Elegant: Rotunjire mai mare pentru poză */
.theme-elegant .about-image, 
.theme-elegant .about-image-decoration {
  border-radius: 20px;
}

/* Aliniere text Tema BOLD [cite: 1077] */
.theme-bold .despre__text {
  border-left: 5px solid var(--color-primary);
  padding-left: 2rem;
}
/* --- SERVICII & MENIU: STILURI SPECIFICE --- */

/* Standardizare item list (Prețuri/Meniu) */
.list-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.item-info { flex: 1; }
.item-header { display: flex; align-items: baseline; justify-content: space-between; width: 100%; }
.item-dots { flex: 1; border-bottom: 1px dotted var(--border-color); margin: 0 10px; position: relative; top: -4px; }
.item-price { font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.item-description { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Tema WARM: Restaurante Rustice */
.theme-warm .section-ornament { display: block; text-align: center; color: var(--warm-border); letter-spacing: 0.8em; margin-bottom: 1rem; }
.theme-warm .menu-category-title { 
    text-align: center; border-bottom: 1px dashed var(--border-color); padding-bottom: 1rem; position: relative; 
}
.theme-warm .menu-category-title::after {
    content: '\2766'; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    background: var(--bg-main); padding: 0 8px; color: var(--color-primary); font-size: 0.9rem;
}

/* Tema BOLD: Diagonale și Contrast */
.theme-bold .section--pricing-menu { position: relative; background: var(--color-black); color: #fff; }
.theme-bold .item-name { text-transform: uppercase; font-weight: 900; }
.theme-bold .item-price { color: var(--color-accent); font-size: 1.2rem; }
.theme-bold .section__divider--light {
  position: absolute; bottom: -1px; left: 0; width: 100%; height: 60px;
  background: var(--bg-alt); clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
}

/* Tema INDUSTRIAL: Linii de accent sub carduri */
.theme-industrial .service-card { position: relative; overflow: hidden; border: 1px solid var(--border-color); }
.theme-industrial .service-border { 
    position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; 
    background: var(--color-primary); transform: scaleX(0); transition: transform 0.4s ease;
}
.theme-industrial .service-card:hover .service-border { transform: scaleX(1); }

/* Tema FRESH: Carduri pt categorii de prețuri */
.theme-fresh .pricing-category { background: var(--bg-main); border-radius: 16px; padding: 2rem; border: 1px solid var(--border-light); margin-bottom: 2rem; }

/* Poze Meniu */
.list-item--with-photo { display: grid; grid-template-columns: 80px 1fr; align-items: center; }
.item-photo { width: 80px; height: 65px; object-fit: cover; border-radius: var(--radius); }
/* --- GALERIE: EXCEPȚII PE TEME --- */

/* Tema MODERN (Stomatologie): Portofoliu Cazuri Clinice */
.theme-modern .gallery-item {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-color);
}
.theme-modern .gallery-item::after {
  content: 'Caz Finalizat ✦';
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.theme-modern .gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Tema BOLD (Restaurant): Grid Asimetric */
.theme-bold .galerie__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.theme-bold .gallery-grid {
  grid-auto-rows: 220px;
}
@media (max-width: 900px) {
  .theme-bold .gallery-grid { grid-auto-rows: 200px; }
  .theme-bold .galerie__item--large { grid-column: span 1; grid-row: span 1; }
}

/* Construcții: Overlay cu iconiță Maximize */
.theme-corporate .gallery-overlay,
.theme-industrial .gallery-overlay,
.theme-residential .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}
.theme-corporate .gallery-item:hover .gallery-overlay,
.theme-industrial .gallery-item:hover .gallery-overlay,
.theme-residential .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Tema WARM: Cadru ca un tablou */
.theme-warm .gallery-frame {
  border: 3px solid var(--border-color);
  border-radius: var(--radius);
  padding: 6px;
  background-color: var(--bg-main);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.theme-warm .gallery-frame::before,
.theme-warm .gallery-frame::after {
  content: '\2726'; /* Stea decorativă */
  position: absolute;
  font-size: 0.6rem;
  color: var(--color-primary);
  z-index: 2;
}
.theme-warm .gallery-frame::before { top: -2px; left: -2px; }
.theme-warm .gallery-frame::after { bottom: -2px; right: -2px; }
.theme-warm .gallery-frame:hover { transform: scale(1.02); }
.theme-warm .gallery-frame img { border-radius: calc(var(--radius) - 4px); }


/* --- PROGRAM ȘI CONTACT: EXCEPȚII PE TEME --- */

/* Tema BOLD & WARM: Stil de card la secțiunea de Program */
.theme-bold .program-card, .theme-warm .program-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.theme-bold .program-card-title, .theme-warm .program-card-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.3rem; color: var(--color-primary);
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

/* Linii punctate pentru tema Warm în program */
.theme-warm .schedule-dots {
  flex: 1; border-bottom: 1px dotted var(--border-color); min-width: 20px; margin-bottom: 3px;
}

/* Background gradient pentru CTA Contact Construcții Corporate */
.theme-corporate .contact-cta-card {
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.12) 0%, rgba(30, 136, 229, 0.04) 100%);
  border: 1px solid var(--border-color);
}
/* ==========================================================
   PORTAL CLIENT (NAVIGARE TIP LISTĂ)
   ========================================================== */

#accountModal .modal-content {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    /* Culorile vin automat din temă prin var(--bg-card) */
}

.acc-header {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    text-align: center;
}

/* Buton Înapoi */
.acc-back-btn {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: none; /* Ascuns pe pagina principală */
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lista principală de butoane (Meniu vertical) */
.acc-menu-list {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 8px;
}

.acc-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03); /* Foarte subtil pe teme închise */
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.theme-elegant .acc-menu-item, .theme-fresh .acc-menu-item, .theme-clasic .acc-menu-item {
   background: rgba(0, 0, 0, 0.03); /* Pentru teme luminoase */
}

.acc-menu-item:hover {
    border-color: var(--color-primary);
    background: rgba(201, 168, 76, 0.05); /* Nuantă generică soft */
}

.acc-menu-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acc-menu-icon svg {
    color: var(--color-primary);
}

/* Structură View-uri */
.acc-view {
    display: none;
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.acc-view.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Footer Deconectare */
.acc-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.btn-logout-soft {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-logout-soft:hover {
    color: #ef4444;
}

/* Input-uri în interiorul form-urilor */
.acc-view .form-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.acc-view input {
    background: rgba(0,0,0,0.1); /* Adaptabil la tema închisă/deschisă */
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text-main);
    width: 100%;
    margin-bottom: 1rem;
}
.section-ornament {
    display: none;
}
/* Corectare dimensiune pentru iconițele FontAwesome (ex: dintele) */
.service-icon .fa-solid, 
.service-icon .fa-regular {
  font-size: 30px; /* Mărește sau micșorează valoarea dacă vrei (ex: 28px sau 36px) */
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}