/* --- 1. RESETARE & SETARI GENERALE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-bg: #050505; /* Negru luxury */
    --card-bg: #111;
    --accent-color: #c5a059; /* Auriu */
    --text-color: #e0e0e0;
    --white: #ffffff;

    /* UX tokens (nou) */
    --stroke: #222;
    --muted: #888;
    --soft: rgba(197, 160, 89, 0.12);
    --soft-2: rgba(197, 160, 89, 0.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-bg);
    overflow-x: hidden; /* Previne scroll orizontal nedorit */
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: var(--accent-color);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Focus accesibil */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid rgba(197,160,89,.75);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Offset pentru ancore (Cuprins) - ca sa nu fie acoperite de header sticky */
:where(h1,h2,h3,h4,section,div)[id] { scroll-margin-top: 100px; }

/* UTIL: linkuri “stacked” (telefon, footer) */
.phone-stack a { display: block; }

/* --- 2. HEADER --- */
.site-header {
    background-color: #000;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }

/* --- 2.1 ZONA LOCATIE (STANGA) --- */
.header-location {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto; /* ✅ FIX: Nu lasam locatia sa se micsoreze/mareasca haotic */
}

.icon-loc {
    width: 32px;
    height: 32px;
    fill: var(--accent-color);
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.4));
}

.loc-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.loc-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loc-counties {
    font-size: 1rem;
    color: #fff;
    white-space: nowrap; /* ✅ FIX: Textul nu se rupe pe doua randuri */
}

.loc-counties strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* --- NAVIGATIE & HAMBURGER --- */
/* ✅ FIX MAJOR: Centrare meniu intre logo si telefon */
.navbar { 
    display: flex; 
    align-items: center;
    flex: 1; /* Ocupa tot spatiul disponibil la mijloc */
    justify-content: center; /* Centreaza link-urile in acest spatiu */
    padding: 0 20px; /* Putin spatiu sa nu atinga marginile */
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* !!! FIX ESENȚIAL: Ascundem elementele speciale de mobil pe Desktop !!! */
.mobile-menu-header,
.mobile-separator,
.btn-mobile-contact {
    display: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap; /* ✅ FIX: Sa nu se rupa textul linkurilor */
}

.nav-link:hover { color: var(--accent-color); }

/* CTA Contact în meniu (Desktop version - if explicit class used elsewhere) */
.btn-contact{
    border: 1px solid rgba(197,160,89,.6);
    padding: 10px 14px;
    border-radius: 6px;
    background: rgba(197,160,89,.08);
}
.btn-contact:hover{
    background: rgba(197,160,89,.16);
    color: #fff;
}

/* Ascundem Hamburgerul pe Desktop */
.hamburger { display: none; cursor: pointer; background: transparent; border: 0; }

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--accent-color);
}

/* TELEFON DREAPTA */
.phone-number { color: var(--accent-color); font-weight: bold; font-size: 1.2rem; display: block; }
.emergency-call p { font-size: 0.8rem; color: #888; margin-bottom: -3px; }

/* ✅ FIX: Dispecerat (header) - numere unul sub altul, aliniat dreapta */
.site-header .emergency-call{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
    white-space: nowrap;
    flex: 0 0 auto; /* ✅ FIX: Nu lasam telefonul sa se striveasca */
}
.site-header .emergency-call p{ margin-bottom: 2px; }
.site-header .emergency-call .phone-number{ line-height: 1.15; }

/* --- 3. HERO SECTION (COMPACT & FRAMED) --- */
.hero {
    background-color: var(--primary-bg);
    padding: 40px 0;
    border-bottom: 1px solid #222;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 70%);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 65vh;
}

.hero-content-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    width: 100%;
}

/* --- ZONA VIDEO (RAMA AURIE) --- */
.hero-video-box {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.video-frame-gold {
    width: 100%;
    position: relative;
    border: 3px solid var(--accent-color);
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.25);
    background: #000;
}

/* IMPORTANT: ca sa nu "crape" pozele in frame */
.video-frame-gold img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.hero-video-element {
    width: 100%;
    display: block;
    border-radius: 2px;
    background: #000;
}

/* --- ZONA DREAPTA (TEXT + MASINA) --- */
.hero-text-car-group {
    flex: 1;
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-content {
    position: relative;
    z-index: 10;
    margin-bottom: -40px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
    color: #fff;
}

.hero-motto-poetic {
    font-size: 1.2rem;
    color: #bbb;
    font-style: italic;
    margin-bottom: 30px;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.hero-offer-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #fff;
}

.gold-icon { color: var(--accent-color); font-size: 1.2rem; }
.highlight-gold { color: var(--accent-color); font-weight: bold; text-shadow: 0 0 10px rgba(197, 160, 89, 0.4); }

/* Butoane si Telefoane */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.desktop-phones-inline a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px dotted var(--accent-color);
    width: fit-content;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}
.btn-primary { background-color: var(--accent-color); color: #000; }
.btn-primary:hover { background-color: #b38f48; }
.btn-secondary { border: 1px solid var(--accent-color); color: var(--accent-color); background: transparent; cursor: pointer; }
.btn-secondary:hover { background-color: var(--accent-color); color: #000; }

/* --- INTEGRARE MASINA --- */
.car-integrated {
    position: relative;
    margin-top: 0px;
    margin-left: 20px;
    z-index: 5;
}

.car-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    transition: transform 0.5s ease;
}

.car-integrated:hover .car-img { transform: scale(1.02); }

/* Umbra podea */
.floor-shadow {
    position: absolute;
    bottom: 10px;
    left: 10%;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
    z-index: -1;
    transform: scaleY(0.5);
}

/* Badge Non-Stop */
.badge-integrated {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--accent-color);
    color: #000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.6);
    animation: pulseBadge 3s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* --- SECTIUNI COMUNE --- */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 10px; color: #fff; }
.section-subtitle { text-align: center; margin-bottom: 50px; color: #888; }

/* ====== NOU: UX pentru paginile de servicii (Cuprins + FAQ) ====== */
.toc-box{
    margin: 18px 0 0 0;
    padding: 16px;
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, #0b0b0b, #070707);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.toc-title{
    color: #fff;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.toc-links{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.toc-links a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(197,160,89,.35);
    background: rgba(197,160,89,.06);
    border-radius: 999px;
    font-size: 0.92rem;
    color: #fff;
    transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.toc-links a:hover{
    transform: translateY(-1px);
    background: rgba(197,160,89,.12);
    border-color: rgba(197,160,89,.55);
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}
.toc-links a::before{
    content: "✦";
    color: var(--accent-color);
    font-weight: 700;
}

/* FAQ “Google-like” */
.faq-block{
    margin-top: 12px;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    overflow: hidden;
    background: #070707;
}
.faq-block details{
    border-top: 1px solid #1f1f1f;
    padding: 0;
}
.faq-block details:first-child{ border-top: none; }

.faq-block summary{
    list-style: none;
    cursor: pointer;
    padding: 16px 16px;
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(180deg, #0b0b0b, #070707);
}
.faq-block summary::-webkit-details-marker { display: none; }

.faq-block summary::after{
    content: "+";
    color: var(--accent-color);
    font-size: 1.35rem;
    line-height: 1;
    flex: 0 0 auto;
    transition: transform .2s ease;
}
.faq-block details[open] summary::after{
    content: "–";
    transform: translateY(-1px);
}

.faq-block details > p{
    padding: 0 16px 16px 16px;
    color: #ccc;
    line-height: 1.8;
    font-size: 1.02rem;
}

/* Mic polish: tipografie pentru paginile de servicii */
main .container p,
main .container li{
    font-size: 1.02rem;
}

main .container ul{
    margin: 10px 0 0 0;
    padding-left: 18px;
}

main .container ul li{
    margin-bottom: 10px;
    border-bottom: 1px solid #141414;
    padding-bottom: 8px;
}

/* IMPORTANT: pe HOME meniu-list e centru; acest override ramane doar pentru MAIN (pagini servicii) */
main .container ul.menu-list{
    padding-left: 0;
}

/* --- SECTIUNEA INGER --- */
.angel-intro {
    background-color: #0a0a0a;
    border-bottom: 1px solid #222;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.angel-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.angel-poster {
    max-width: 400px;
    width: 100%;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    border-radius: 4px;
}

.angel-text {
    flex: 1;
    text-align: left;
}

.angel-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.divider-gold {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 20px;
}

.angel-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 15px;
    font-style: italic;
}

/* --- SECTIUNE DESPRE NOI --- */
.about-section {
    background-color: #0a0a0a;
    border-bottom: 1px solid #222;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 4px;
    display: block;
    filter: brightness(0.8);
}

.text-gold {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.about-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(197,160,89,.55);
    background: radial-gradient(circle at 30% 30%, rgba(197,160,89,.16), rgba(197,160,89,.06));
    box-shadow: 0 0 18px rgba(197, 160, 89, 0.18);
    flex-shrink: 0;
    position: relative;
}

.feature-icon--gold { border-color: rgba(197,160,89,.65); }

/* iconita default: steluta */
.feature-icon::before{
    content: "✦";
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

/* trei iconite diferite */
.about-features .feature-box:nth-child(1) .feature-icon::before{ content: "⟡"; } /* decenta */
.about-features .feature-box:nth-child(2) .feature-icon::before{ content: "✦"; } /* empatie */
.about-features .feature-box:nth-child(3) .feature-icon::before{ content: "◆"; } /* transparenta */

.feature-box strong {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
}

.about-quote{
    margin-top: 18px;
    padding: 18px 18px;
    border-left: 3px solid var(--accent-color);
    background: rgba(197,160,89,.06);
    border-radius: 10px;
    color: #d8d8d8;
    font-style: italic;
}

/* --- SECTIUNEA SERVICII CARUSEL --- */
.services-carousel-section {
    background-color: #050505;
    overflow: hidden;
}

/* --- SECTIUNE BLOG LOCAL --- */
.local-blog-section {
    background-color: #080808;
    border-top: 1px solid #222;
    overflow: hidden;
}

.subsection-title {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 40px 0 20px;
    font-family: 'Merriweather', serif;
}

.services-swiper-container {
    width: 100%;
    padding: 20px 60px 40px 60px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.services-swiper,
.blog-swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* CARDURILE DE SERVICII */
.service-card {
    background: #050505;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.service-card:visited { color: inherit; }

.service-card:hover {
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.3);
    background: #0a0a0a;
    transform: translateY(-5px);
}

/* ACTIVE SLIDE */
.swiper-slide-active.service-card {
    border-width: 2px;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.2);
    background: #080808;
}

.icon-large {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: grayscale(100%) sepia(100%) hue-rotate(5deg) saturate(400%) brightness(0.9) contrast(1.2);
    transition: transform 0.3s;
}

.service-card:hover .icon-large {
    transform: scale(1.1);
    filter: grayscale(100%) sepia(100%) hue-rotate(5deg) saturate(600%) brightness(1.1) contrast(1.2) drop-shadow(0 0 10px var(--accent-color));
}

.service-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Merriweather', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.service-card .btn-detalii {
    margin-top: 15px;
    width: auto;
    padding: 8px 16px;
    font-size: 0.75rem;
}

.swiper-wrapper { display: flex; }

/* Paginare Swiper */
.swiper-pagination-bullet { background: #555; opacity: 1; }
.swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 12px;
    border-radius: 4px;
    transition: width 0.3s;
}

/* Sageti carusel */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    top: 45%;
    margin-top: 0;
}

.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.8);
}

.blog-prev,
.blog-next { color: var(--accent-color); }
.blog-prev:hover,
.blog-next:hover { color: #fff; }

/* --- MENIURI (SWIPER MOBILE / GRID DESKTOP) --- */
.menus-swiper {
    width: 100%;
    padding-bottom: 40px; 
    padding-top: 10px;
    overflow: hidden;
}

.menu-display-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.menu-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

@media (min-width: 900px) {
    .menus-swiper {
        overflow: visible;
        padding-bottom: 0;
    }

    .menu-pagination {
        display: none;
    }

    .menus-grid-display-wrapper {
        display: grid !important; 
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        transform: none !important;
        width: 100% !important;
    }

    .menu-display-card {
        width: auto !important; 
        margin-right: 0 !important;
    }
}

.menu-display-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.3);
    border-color: var(--accent-color);
    background: #161616;
}

.menu-display-card.premium-menu {
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

.menu-display-card.premium-menu:hover {
    box-shadow: 0 0 35px rgba(197, 160, 89, 0.4);
    transform: translateY(-5px); 
}

.menu-header {
    background: #1a1a1a;
    padding: 15px;
    text-align: center;
    color: var(--accent-color);
    font-weight: bold;
    font-family: 'Merriweather', serif;
    border-bottom: 1px dotted #333;
}

.menu-list {
    padding: 20px;
    list-style: none;
    text-align: center;
    flex-grow: 1; 
}

.menu-list li {
    margin-bottom: 8px;
    color: #bbb;
    font-size: 0.9rem;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
}

.menu-list li:last-child { border-bottom: none; }

.btn-detalii {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px;
    width: 80%;
    margin: 0 auto 20px;
    display: block;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
}

.btn-detalii:hover {
    background: var(--accent-color);
    color: #000;
}

.btn-detalii--chip{
    border-radius: 999px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- MODAL FULL-SCREEN --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    width: 100%;
    min-height: 100%;
    padding: 60px 20px;
    position: relative;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.close-modal {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 45px;
    color: var(--accent-color);
    cursor: pointer;
    line-height: 1;
    z-index: 2010;
    background: transparent;
    border: none;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.menu-image-gallery img,
.service-image-wrapper img {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--accent-color);
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.3);
}

.menu-seo-text h2,
.service-seo-text-container h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.menu-seo-text h3,
.service-description-body h3 {
    margin: 30px 0 15px;
    color: var(--accent-color);
    font-size: 1.3rem;
    border-bottom: 1px dotted #333;
    padding-bottom: 10px;
    display: inline-block;
}

.menu-seo-text p,
.service-description-body p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.menu-seo-text ul,
.service-description-body ul {
    padding-left: 20px;
    list-style: none;
}

.menu-seo-text ul li,
.service-description-body ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.service-description-body ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* --- EXTRA SERVICII --- */
.extra-services-box {
    margin-top: 50px;
    text-align: center;
    background: linear-gradient(45deg, #111, #080808);
    padding: 30px;
    border-radius: 8px;
    border-top: 2px solid var(--accent-color);
}

.extra-services-box h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.extra-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.extra-tags span {
    background: #222;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #333;
}

/* --- PACHETE --- */
.package-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto; 
    box-sizing: border-box;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.packages-swiper {
    width: 100%;
    padding-bottom: 40px; 
    padding-top: 15px;    
    overflow: hidden;
}

.package-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}

@media (min-width: 900px) {
    .packages-swiper {
        overflow: visible;
        padding-bottom: 0;
        padding-top: 0;
    }

    .package-pagination {
        display: none;
    }

    .packages-grid-wrapper {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        transform: none !important;
        width: 100% !important;
    }

    .package-card {
        width: auto !important;
        margin-right: 0 !important;
    }
}

.package-header {
    background: rgba(197, 160, 89, 0.1);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}
.package-header h4 { font-size: 1.4rem; margin-bottom: 10px; }
.price { font-size: 2rem; font-weight: 700; color: #fff; }
.price-note { font-size: 0.85rem; color: #888; }
.package-features { padding: 30px 20px; flex-grow: 1; }
.package-features li { margin-bottom: 12px; border-bottom: 1px solid #222; padding-bottom: 8px; font-size: 0.95rem; }
.package-features span { color: var(--accent-color); margin-right: 10px; }
.package-card .btn { margin: 20px; text-align: center; display: block; }

.featured-package {
    border: 2px solid var(--accent-color);
    z-index: 2;
    background: #161616;
}
@media(min-width: 900px){
    .featured-package { transform: scale(1.03); }
    .featured-package:hover { transform: scale(1.03) translateY(-5px); }
}

.ribbon {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent-color); color: #000; padding: 4px 15px;
    font-weight: bold; font-size: 0.75rem; border-radius: 20px;
    z-index: 10;
}

/* --- RECENZII --- */
.reviews-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.review-card {
    background: #111; padding: 30px; border-radius: 8px; max-width: 400px;
    border-left: 3px solid var(--accent-color);
}
.stars { color: var(--accent-color); margin-bottom: 10px; }
.review-text { font-style: italic; color: #ccc; margin-bottom: 15px; }
.client-name { text-align: right; font-weight: bold; color: #fff; }

/* --- CTA --- */
.cta-consulting {
    background: linear-gradient(45deg, #111, #000);
    padding: 50px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.cta-flex { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cta-text h3{ color: #fff; }

/* --- FOOTER --- */
footer { background-color: #000; padding: 60px 0 20px; border-top: 3px solid var(--accent-color); }
.footer-content {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px;
}
.footer-left, .footer-map, .footer-phones { flex: 1; min-width: 280px; }
.footer-left p { margin-bottom: 10px; color: #aaa; }
.footer-left a{ color: #fff; border-bottom: 1px dotted rgba(197,160,89,.35); }
.footer-left a:hover{ color: var(--accent-color); border-bottom-color: rgba(197,160,89,.65); }

.motto-footer { font-style: italic; color: var(--accent-color) !important; margin-bottom: 20px !important; }
.legal-text small { color: #555; }

/* copyright centrat */
.copyright {
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Footer: telefoane spaced */
.footer-phones a {
    margin-top: 6px;
    color: #fff;
    border-bottom: 1px dotted rgba(197,160,89,.45);
    width: fit-content;
}
.footer-phones a:hover{
    color: var(--accent-color);
    border-bottom-color: rgba(197,160,89,.75);
}

/* Footer: locație SVG aurie */
.footer-address-line{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-loc-icon{
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
    filter: drop-shadow(0 0 6px rgba(197,160,89,.25));
    flex: 0 0 auto;
}

/* Footer: Facebook */
.social-links-footer {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-social {
    display: inline-block;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.footer-social svg, .footer-social .fb-icon {
    width: 30px;
    height: 30px;
    fill: var(--accent-color);
}

.footer-social:hover {
    transform: translateY(-3px);
    background: transparent;
    border: none;
    opacity: 0.8;
}

/* ✅ WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex; 
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #ffffff !important; 
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* --- RESPONSIVE MOBILE FIXES --- */
@media (max-width: 900px) {

    /* HEADER & HAMBURGER */
    .header-flex {
        flex-direction: column;
        gap: 10px; 
        text-align: center;
        position: relative; 
    }

    .header-location {
        justify-content: center;
        margin-bottom: 5px;
        padding-right: 50px; 
        padding-left: 50px;
    }

    .hamburger {
        display: block;
        position: absolute; 
        top: 25px;          
        right: 15px;        
        margin: 0;          
        z-index: 200;
    }

    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* MENU LATERAL */
    .nav-menu {
        position: fixed;
        left: -100%; 
        top: 0;
        height: 100vh;
        width: 85%; 
        max-width: 340px;
        background: linear-gradient(170deg, #000000 0%, #1a1a1a 100%); 
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        justify-content: flex-start;
        padding: 30px 25px;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
        box-shadow: 10px 0 40px rgba(0,0,0,0.8); 
        border-right: 1px solid rgba(197, 160, 89, 0.2); 
        z-index: 99999; 
    }

    .nav-menu.active {
        left: 0; 
    }

    .mobile-menu-header {
        display: flex; 
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .logo-container-mobile {
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        border: 1px solid rgba(197,160,89,0.3);
    }

    .mobile-logo-img {
        width: 50px;
        height: auto;
        filter: drop-shadow(0 0 5px rgba(197,160,89,0.5));
    }

    .mobile-brand-name {
        color: var(--accent-color);
        font-family: 'Merriweather', serif;
        font-size: 0.9rem;
        letter-spacing: 2px;
        font-weight: 700;
    }

    .mobile-separator {
        display: block; 
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #333, transparent);
        margin-bottom: 25px;
    }

    .nav-item {
        width: 100%;
        margin: 0;
        text-align: left;
        transform: translateX(-20px);
        opacity: 0;
        transition: 0.3s ease;
    }

    .nav-menu.active .nav-item { transform: translateX(0); opacity: 1; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.1s; } 
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.3s; }

    .nav-link {
        font-size: 1.1rem;
        color: #e0e0e0;
        padding: 15px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link::after {
        content: '›';
        color: var(--accent-color);
        font-size: 1.5rem;
        line-height: 0;
        opacity: 0;
        transition: 0.3s;
    }

    .nav-link:hover {
        color: var(--accent-color);
        background: linear-gradient(90deg, rgba(197,160,89,0.05), transparent);
        padding-left: 20px; 
    }

    .nav-link:hover::after { opacity: 1; transform: translateX(5px); }

    .btn-mobile-contact {
        display: flex; 
        text-align: center;
        justify-content: center;
        border: 1px solid var(--accent-color);
        margin-top: 30px;
        margin-bottom: 20px;
        border-radius: 4px;
        color: var(--accent-color) !important;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 1px;
    }
    .btn-mobile-contact::after { content: none; } 
    .btn-mobile-contact:hover {
        background: var(--accent-color);
        color: #000 !important;
    }

    /* ASCUNDE BUTONUL WHATSAPP CÂND MENIUL E DESCHIS */
    body.menu-open .whatsapp-float {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8);
        pointer-events: none;
    }

    .site-header .emergency-call{
        align-items: center;
        text-align: center;
        margin-bottom: 10px; 
    }

    .hero-content-centered { flex-direction: column; gap: 40px; text-align: center; }
    .hero-video-box { flex: 0 0 auto; width: 80%; max-width: 300px; }
    .hero-text-car-group { align-items: center; width: 100%; }
    .hero-text-content { margin-bottom: 20px; }
    .hero-title{ font-size: 2.6rem; }
    .car-integrated { margin-left: 0; margin-top: 20px; }
    .hero-offer-line { justify-content: center; }

    .services-swiper-container { padding: 20px 0 40px 0; }
    .swiper-button-next,
    .swiper-button-prev { display: none !important; }

    .split-layout { flex-direction: column; text-align: center; }
    .angel-image-wrapper { justify-content: center; }
    .angel-text { text-align: center; }
    .divider-gold { margin: 0 auto 20px auto; }

    .cta-flex { text-align: center; justify-content: center; }
    .featured-package { transform: scale(1); }
    .featured-package:hover { transform: translateY(-5px); }

    .modal-grid { grid-template-columns: 1fr; gap: 20px; }
    .modal-content { padding-top: 80px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text-col { order: 2; }
    .about-image-col { order: 1; }
    .about-title { font-size: 2rem; }

    .toc-links a { width: 100%; justify-content: space-between; }

    /* ✅ WHATSAPP FIXAT JOS DREAPTA PE MOBIL */
    .whatsapp-float {
        bottom: 25px !important;
        right: 20px !important;
        width: 55px;
        height: 55px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.4); 
    }
}

/* --- OPTIMIZARE CARDURI MOBIL (COMPACTE) --- */
@media (max-width: 900px) {
    .menu-header { padding: 10px; font-size: 1.1rem; }
    .menu-list { padding: 10px 15px; }
    .menu-list li { margin-bottom: 4px; padding-bottom: 4px; font-size: 0.85rem; line-height: 1.3; }
    .btn-detalii { margin: 5px auto 15px; padding: 8px; }
    
    .package-header { padding: 15px 10px; }
    .package-header h4 { font-size: 1.2rem; margin-bottom: 5px; }
    .price { font-size: 1.6rem; }
    .package-features { padding: 10px 15px; }
    .package-features li { margin-bottom: 5px; padding-bottom: 5px; font-size: 0.9rem; line-height: 1.3; }
    .package-card .btn { margin: 10px 20px 20px; padding: 10px 20px; }
    
    .menu-display-card, .package-card { min-height: auto; }
}

/* ============================================================
   FIX FINAL: BUTOANE MODAL (Rotunjite, Centrate, Spatiate)
   ============================================================ */

/* 1. Containerul butoanelor - REPARATIE POZITIE */
.modal-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrează butoanele orizontal */
    justify-content: center;
    gap: 15px; /* Spațiu între ele */
    margin-top: 30px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 15px; /* SPAȚIU LATERAL (ca să nu fie lipite de margine) */
    box-sizing: border-box; /* Asigură că padding-ul nu lățește pagina */
}

/* 2. Stilul comun pentru butoane (PILL SHAPE) */
.btn-pill-gold,
.btn-pill-green,
.btn-pill-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ocupă tot spațiul disponibil (minus padding) */
    max-width: 400px; /* Să nu fie gigantice pe tablete */
    padding: 16px 20px;
    border-radius: 50px !important; /* ROTUNJIRE FORTATA */
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Efect la apăsare */
.btn-pill-gold:active,
.btn-pill-green:active,
.btn-pill-outline:active {
    transform: scale(0.96);
}

/* 3. Culori specifice */

/* Auriu (Comandă) */
.btn-pill-gold {
    background: linear-gradient(135deg, #c5a059 0%, #a6853f 100%);
    color: #fff;
}

/* Verde (WhatsApp) */
.btn-pill-green {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

/* Outline (Închide) */
.btn-pill-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color) !important;
    color: var(--accent-color);
    box-shadow: none;
}

/* 4. Fix specific pentru imaginea din modal pe mobil */
@media (max-width: 900px) {
    .menu-image-gallery img {
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-width: 100%;
    }
    
    /* Asigură că textul e centrat sau aliniat frumos */
    .menu-seo-text {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Buton "Vezi Detalii" - Stil Auriu Elegant (Link simplu) */
.btn-gold-details {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-card-link:hover .btn-gold-details,
.btn-gold-details:hover {
    color: #fff;
    border-color: #fff;
    transform: translateX(5px);
}

/* --- FIX: ASCUNDE BUTONUL WHATSAPP PLUTITOR CÂND E DESCHIS UN MODAL --- */
body.modal-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
}

/* ==================================================
   NOU: GDPR COOKIE BANNER (Responsive & Modern)
   ================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95); /* Aproape opac, dark mode */
    border-top: 1px solid var(--accent-color);
    padding: 20px 0;
    z-index: 10000; /* Peste orice alt element (inclusiv WhatsApp) */
    display: none; /* Ascuns implicit, activat din JS */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px); /* Efect modern de sticlă */
}

.cookie-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
}

/* Stil Buton Accept dedicat */
#accept-cookies {
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

/* --- MOBILE SPECIFIC PENTRU COOKIES --- */
@media (max-width: 768px) {
    .cookie-flex {
        flex-direction: column; /* Text sus, buton jos */
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    #accept-cookies {
        width: 100%; /* Buton mare, lat, usor de apasat cu degetul */
        padding: 12px;
        font-size: 1rem;
    }
}