/* --- VARIABILE --- */
:root {
    /* Paleta clientului - Intensificată */
    --clr-dusty-pink: #d1706a; 
    --clr-sand: #e0b98f;       
    --clr-sage: #9cb08b;       
    
    /* Culori UI Light Mode */
    --bg-main: #ffffff;
    --bg-secondary: #fdfaf7; 
    --bg-tertiary: #f4f7f2;  
    --text-main: #2c3e50;
    --text-muted: #5a6c7d;
    --card-bg: #ffffff;
    --border-color: #eee;
    
    /* Typography & Effects */
    --font-heading: 'Lora', serif;       /* Font nou pentru titluri (elegant și calm) */
    --font-body: 'Poppins', sans-serif;  /* Font nou pentru texte (curat și modern) */
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- DARK MODE --- */
[data-theme="dark"] {
    --bg-main: #121212;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #1f221e; 
    --text-main: #f0f0f0;
    --text-muted: #b0b0b0;
    --card-bg: #222222;
    --border-color: #333;
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.4);
    
    --clr-dusty-pink: #d98580; 
    --clr-sand: #d1ba9f;
    --clr-sage: #a1ae94;
}

/* --- RESET & BAZĂ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius-md); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 0; }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-tertiary { background-color: var(--bg-tertiary); }
.mt-5 { margin-top: 50px; }
.text-center { text-align: center; }

/* --- BUTOANE --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--clr-dusty-pink);
    color: #fff;
    box-shadow: 0 10px 20px rgba(209, 112, 106, 0.3);
}

.btn-primary:hover {
    background-color: #bd5e58;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(209, 112, 106, 0.4);
    color: #fff;
}

.btn-block { width: 100%; display: block; text-align: center; }

/* --- NAVBAR --- */
header {
    background-color: rgba(var(--bg-main), 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

[data-theme="dark"] header { background-color: rgba(18, 18, 18, 0.98); }
[data-theme="light"] header { background-color: rgba(255, 255, 255, 0.98); }

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Spațiu între pictogramă și text */
    transition: var(--transition);
}
.logo:hover {
    transform: translateY(-2px);
}

/* Stilizare pictograma SVG */
.logo-icon {
    width: 45px;
    height: 45px;
    color: var(--clr-sage); /* Culoarea salvie pe Light Mode */
    transition: var(--transition);
}

/* Adaptare logo pe Dark Mode */
[data-theme="dark"] .logo-icon {
    color: var(--clr-dusty-pink); /* Roz prăfuit pe Dark Mode pentru contrast */
}

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

.logo-name {
    font-family: var(--font-heading); /* Fontul 'Lora' */
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-dusty-pink); /* Culoarea roz pudră intensă solicitată */
}

.logo-title {
    font-size: 0.75rem;
    color: var(--clr-sage);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Ajustare logo pe mobil */
@media (max-width: 768px) {
    .logo-icon { width: 35px; height: 35px; }
    .logo-name { font-size: 1.1rem; }
    .logo-title { font-size: 0.65rem; letter-spacing: 1px; }
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links ul { display: flex; gap: 25px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.nav-links a:hover { color: var(--clr-dusty-pink); }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.8rem; color: var(--text-main); cursor: pointer; padding: 5px; }

.theme-btn { background: var(--bg-secondary); border: 1px solid var(--border-color); color: var(--text-main); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.theme-btn:hover { background: var(--clr-sand); color: #fff; border-color: var(--clr-sand); }

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-secondary) 100%); }

/* Setări Hero pentru PC (Stânga Text - Dreapta Poza) */
.hero-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
}

.hero-text h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 35px; max-width: 500px; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); border: 10px solid var(--card-bg); aspect-ratio: 4/5; object-fit: cover; }

/* --- TITLURI --- */
.section-title { font-size: 2.5rem; position: relative; margin-bottom: 20px; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background-color: var(--clr-sage); margin-top: 15px; border-radius: 2px; }
.text-center.section-title::after { margin: 15px auto 0; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* --- DESPRE MINE --- */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; height: 500px; }
.img-back { position: absolute; top: 0; left: 0; width: 70%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-soft); border: 8px solid var(--card-bg); }
.img-front { position: absolute; bottom: 0; right: 0; width: 65%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-soft); border: 8px solid var(--card-bg); z-index: 2; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.1rem; }
.credentials { margin-top: 30px; }
.credentials li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-weight: 600; }
.credentials i { color: var(--clr-sage); background: rgba(156, 176, 139, 0.2); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* --- SERVICII --- */
.service-category h3 { font-size: 1.8rem; color: var(--clr-dusty-pink); margin-bottom: 30px; border-left: 4px solid var(--clr-dusty-pink); padding-left: 15px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-grid.three-cols { grid-template-columns: repeat(3, 1fr); }
.service-card { background: var(--card-bg); padding: 25px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); transition: var(--transition); border: 1px solid var(--border-color); }
.service-card:hover { transform: translateY(-10px); border-color: var(--clr-sand); }
/* Stilizare imagine servicii cu efect de tranziție */
.service-card img { 
    width: 100%; 
    aspect-ratio: 4/3; 
    object-fit: cover; 
    margin-bottom: 20px; 
    border-radius: var(--radius-md); 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Animație fluidă */
}

/* Efectul de mărire a imaginii când pui mouse-ul pe cardul de serviciu */
.service-card:hover img {
    transform: scale(1.06); /* Mărește imaginea cu 6% */
}
.service-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* --- GALERIE --- */
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
}

.gallery-grid img { 
    width: 100%; 
    aspect-ratio: 1/1; 
    object-fit: cover; 
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Efect mai lent și fin */
    cursor: pointer; 
    position: relative;
    z-index: 1; /* O ține la nivelul normal */
}

.gallery-grid img:hover { 
    transform: scale(1.12); /* Mărește poza cu 12% (mai vizibil) */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); /* Adaugă o umbră mare sub ea */
    z-index: 10; /* O aduce vizual în fața celorlalte poze din grilă */
    border-radius: var(--radius-md); /* Îi rotunjește fin colțurile când iese în afară */
}

/* --- CONTACT --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-details { margin-bottom: 30px; }
.contact-details li { margin-bottom: 20px; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.contact-details i { color: var(--clr-dusty-pink); font-size: 1.2rem; }
.map-container { margin-top: 30px; }
.contact-form-wrapper { background: var(--card-bg); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.contact-form h3 { font-size: 2rem; margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }

/* AICI S-A MODIFICAT: Am adăugat "select" și săgeata personalizată */
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; 
    padding: 15px; 
    border: 1px solid var(--border-color); 
    border-radius: var(--radius-md); 
    background: var(--bg-main); 
    color: var(--text-main); 
    font-family: var(--font-body); 
    transition: var(--transition); 
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    outline: none; 
    border-color: var(--clr-dusty-pink); 
    box-shadow: 0 0 0 3px rgba(209, 112, 106, 0.2); 
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6c7d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}
/* PÂNĂ AICI S-A MODIFICAT */

.form-status { margin-top: 15px; text-align: center; font-weight: bold; }

/* --- FOOTER RESTRUCTURAT --- */
footer { 
    background: #111; 
    color: #fff; 
    padding: 70px 0 20px; 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 { 
    color: var(--clr-dusty-pink); 
    margin-bottom: 5px; 
    font-size: 1.8rem; 
}

.footer-brand p { 
    color: #aaa; 
    font-size: 0.95rem; 
    margin-bottom: 25px; 
}

.footer-social { 
    display: flex; 
    gap: 15px; 
}

.footer-social a { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.1); 
    border-radius: 50%; 
    transition: var(--transition); 
    color: #fff;
}

.footer-social a:hover { 
    background: var(--clr-dusty-pink); 
    transform: translateY(-3px); 
}

.footer-contact h3 {
    color: var(--clr-sand);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--clr-sage);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-contact a {
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--clr-dusty-pink);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-badges a {
    display: block;
    max-width: 220px; /* Lățimea ideală pentru badge-urile ANPC */
    transition: transform 0.3s;
}

.footer-badges a:hover {
    transform: scale(1.03);
}

.footer-badges img {
    width: 100%;
    border-radius: 5px;
}

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 20px; 
    text-align: center; 
    color: #777; 
    font-size: 0.9rem; 
}

/* Adaptare Footer pentru Mobil */
@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .footer-badges { align-items: center; }
}

/* --- WHATSAPP FLOATING (Identic FloArt) --- */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.float-wa:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --- BARA DE COOKIES --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 15px 0; /* Am micșorat spațiul sus/jos de la 20px la 15px */
    transform: translateY(110%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Am micșorat distanța dintre text și butoane */
    align-items: center;
}

.cookie-text p {
    font-size: 0.8rem; /* Font mai mic pentru mobil */
    color: var(--text-muted);
    line-height: 1.4; /* Spațiere mai mică între rânduri */
    text-align: center; /* Centrat dă impresia de ordine pe mobil */
    margin: 0;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Distanță mai mică între butoane */
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-sm {
    padding: 8px 15px; /* Butoane mai subțiri */
    font-size: 0.8rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--bg-secondary);
    color: var(--text-main);
    border-color: var(--text-muted);
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--clr-dusty-pink);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.cookie-link:hover {
    color: var(--clr-sage);
    text-decoration: underline;
}

/* Adaptare Cookies pe Desktop (așezare pe orizontală) */
@media (min-width: 992px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .cookie-text {
        flex: 1;
        padding-right: 40px;
    }
    .cookie-buttons {
        flex: 0 0 auto;
        flex-direction: column;
        align-items: stretch;
        width: auto;
    }
}

/* --- MODAL POP-UP (POLITICA COOKIES) --- */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show-modal {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: var(--card-bg);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show-modal .cookie-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--clr-dusty-pink);
    transform: scale(1.1);
}

.modal-title {
    padding: 30px 40px 15px;
    margin: 0;
    font-size: 1.8rem;
    color: var(--clr-dusty-pink);
    border-bottom: 1px solid var(--border-color);
}

.modal-body {
    padding: 20px 40px 40px;
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin: 25px 0 10px;
}

.modal-body p, .modal-body ul {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
}

.modal-body a {
    color: var(--clr-dusty-pink);
    text-decoration: underline;
}

.modal-divider {
    border: none;
    border-top: 1px dashed var(--border-color);
    margin: 30px 0;
}

.modal-footer-text {
    font-size: 0.85rem !important;
    text-align: center;
}

@media (max-width: 768px) {
    .modal-title { padding: 25px 20px 15px; font-size: 1.4rem; }
    .modal-body { padding: 15px 20px 25px; }
    .close-modal { top: 15px; right: 15px; }
}

/* --- RESPONSIVE MOBILE FIXES --- */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 2.8rem; }
    .about-container, .contact-container { grid-template-columns: 1fr; }
    .about-images { height: 400px; margin-bottom: 40px; }
    .service-grid, .service-grid.three-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    
    /* REPARARE MENIU MOBIL - Acum funcționează perfect */
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        display: none; /* Ascuns implicit pe mobil */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
        flex-direction: column;
    }
    
    .nav-links.active {
        display: flex; /* Afișat la click */
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 15px;
    }
    
    .nav-links a { padding: 10px; display: block; }

    .theme-btn { margin: 15px auto 0; } /* Centrare buton moon/sun in meniu */
    
    /* --- HERO PE MOBIL: IMAGINEA SUS, TEXTUL JOS --- */
    .hero-container { 
        display: flex; 
        flex-direction: column-reverse; 
        text-align: center; 
        padding-top: 40px; 
        gap: 30px; 
    }
    .hero-text p { margin: 0 auto 30px; }
    
    /* Celelalte elemente pe o singură coloană */
    .service-grid, .service-grid.three-cols { grid-template-columns: 1fr; }
    
    /* Adaptare WhatsApp pe mobil */
    .float-wa { width: 60px; height: 60px; font-size: 30px; bottom: 20px; right: 20px; }
}

/* --- TESTIMONIALE (CARUSEL) --- */
.reviews-swiper {
    padding: 20px 10px 70px; /* Lasă loc jos pentru punctele de navigare */
    position: relative;
}

.swiper-slide {
    height: auto; /* Forțează cardurile să aibă aceeași înălțime */
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 4px solid var(--clr-sand);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(224, 185, 143, 0.2);
}

.review-text { 
    font-size: 1.05rem; 
    color: var(--text-muted); 
    font-style: italic; 
    margin-bottom: 25px; 
    line-height: 1.6; 
} /* Am șters flex-grow ca să nu mai tragă de text */

.stars { 
    color: #ffc107; 
    margin-bottom: 8px; 
    font-size: 1.1rem; 
}

.reviewer-name { 
    font-weight: 700; 
    color: var(--clr-dusty-pink); 
    font-size: 1.1rem; 
    font-family: var(--font-heading); 
    margin-bottom: 5px;
}

.reviewer-source { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}

.reviewer-source i { color: #4285F4; }

/* Stilizare butoane și puncte Swiper pe culorile site-ului */
.swiper-button-next, .swiper-button-prev {
    color: var(--clr-dusty-pink) !important;
    transform: scale(0.7);
}
.swiper-pagination-bullet-active {
    background: var(--clr-dusty-pink) !important;
}

/* --- PROGRAMARE ONLINE CUSTOM --- */
.booking-wrapper {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    border-top: 5px solid var(--clr-dusty-pink);
    max-width: 900px;
    margin: 0 auto;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-step-title {
    font-size: 1.2rem;
    color: var(--clr-dusty-pink);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--bg-secondary);
    padding-bottom: 10px;
}

.booking-step-title i {
    color: var(--clr-sage);
}

.row-group {
    display: flex;
    gap: 15px;
}

.half-group {
    flex: 1;
}

/* Stilizare specială pentru Select-uri și Date (ca să arate premium) */
select, input[type="date"] {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6c7d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.booking-footer {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.booking-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

@media (max-width: 768px) {
    .booking-wrapper {
        padding: 25px;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .row-group {
        flex-direction: column;
    }
}
