:root{
    --primary:#ff5e1f;
    --primary-dark:#eb4d0d;

    --navy:#071225;
    --navy-light:#0f1f3b;

    --text:#0f172a;
    --muted:#64748b;

    --border:#e2e8f0;

    --white:#ffffff;
    --bg:#f8fafc;

    --radius:18px;
    --shadow:0 15px 40px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.wc-container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* ==========================================
   HEADER
========================================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    background:#fff;
    border-bottom:1px solid var(--border);
}

.header-inner{
    height:78px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.site-logo{
    height:46px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.main-nav a{
    color:var(--text);
    font-size:15px;
    font-weight:600;
}

.main-nav a:hover{
    color:var(--primary);
}

.header-cta{
    padding:12px 18px;
    border-radius:12px;

    background:var(--primary);
    color:#fff;
    font-weight:700;
}

.header-cta:hover{
    background:var(--primary-dark);
}

.mobile-menu-btn{
    display:none;

    border:none;
    background:none;

    font-size:28px;
    cursor:pointer;
}

/* ==========================================
   HERO
========================================== */

.hero-section{
    position:relative;

    min-height:760px;

    background:
        linear-gradient(
            90deg,
            rgba(7,18,37,.95) 0%,
            rgba(7,18,37,.85) 50%,
            rgba(7,18,37,.65) 100%
        ),
        url('/assets/images/hero.jpg');

    background-size:cover;
    background-position:center;
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.1fr 500px;

    gap:50px;

    align-items:center;

    padding:70px 20px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-bottom:20px;

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

    padding:10px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.08);
}

.hero-badge span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.hero-content h1{
    color:#fff;

    font-size:64px;
    line-height:1.05;

    font-weight:800;

    margin-bottom:22px;
}

.hero-content h1 strong{
    color:var(--primary);
}

.hero-subtitle{
    color:#e2e8f0;
    font-size:18px;

    margin-bottom:30px;
}

.hero-rating{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:25px;
}

.google-text{
    color:#fff;
    font-weight:700;
}

.stars{
    color:#fbbf24;
    letter-spacing:2px;
}

.rating-text{
    color:#fff;
    font-size:14px;
}

.hero-points{
    display:grid;
    gap:12px;
}

.hero-points div{
    color:#fff;
    font-weight:600;
}

.hero-points span{
    color:#22c55e;
}

/* ==========================================
   BOOKING CARD
========================================== */

.booking-card{
    background:#fff;

    border-radius:24px;

    padding:30px;

    box-shadow:0 30px 70px rgba(0,0,0,.25);
}

.booking-topline{
    display:inline-block;

    background:#ecfdf5;
    color:#15803d;

    padding:8px 14px;
    border-radius:999px;

    font-size:13px;
    font-weight:700;

    margin-bottom:15px;
}

.booking-card h2{
    font-size:30px;
    line-height:1.2;
    margin-bottom:10px;
}

.booking-card p{
    color:var(--muted);
    margin-bottom:20px;
}

.booking-form{
    display:grid;
    gap:15px;
}

.form-field{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.form-field label{
    font-size:13px;
    font-weight:700;
}

.form-field input,
.form-field select{
    height:52px;

    border:1px solid var(--border);

    border-radius:12px;

    padding:0 14px;

    font-family:inherit;
    font-size:14px;
}

.form-field input:focus,
.form-field select:focus{
    outline:none;
    border-color:var(--primary);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 150px;
    gap:12px;
}

.checkbox-line{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:14px;
}

.primary-submit{
    height:58px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:16px;
    font-weight:800;

    cursor:pointer;
}

.primary-submit:hover{
    background:var(--primary-dark);
}

.booking-note{
    text-align:center;
    font-size:13px;
    color:var(--muted);
}

/* ==========================================
   TRUST
========================================== */

.trust-section{
    background:#fff;
    padding:40px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:250px repeat(3,1fr);
    gap:18px;
}

.trust-card{
    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    padding:20px;
}

.main-trust{
    text-align:center;
}

.google-word{
    font-weight:800;
    font-size:24px;
    margin-bottom:10px;
}

.trust-card strong{
    display:block;
    margin-top:10px;
}

/* ==========================================
   STATS
========================================== */

.stats-section{
    background:#fff;
    border-top:1px solid var(--border);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stats-grid div{
    padding:35px 20px;
    text-align:center;
}

.stats-grid strong{
    display:block;
    font-size:34px;
    font-weight:800;
}

.stats-grid span{
    color:var(--muted);
}

/* ==========================================
   GENERIC
========================================== */

.section-block{
    padding:90px 0;
}

.white-section{
    background:#fff;
}

.section-kicker{
    color:var(--primary);
    text-transform:uppercase;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:42px;
    margin-top:10px;
}

/* ==========================================
   COMPARE
========================================== */

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

.compare-copy h2{
    margin:10px 0 15px;
    font-size:42px;
    line-height:1.15;
}

.compare-copy p{
    color:var(--muted);
}

.check-list{
    display:grid;
    gap:12px;
    margin-top:20px;
}

.check-list span{
    color:#22c55e;
}

.compare-table{
    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid var(--border);
}

.compare-row{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
}

.compare-row div{
    padding:16px;
    border-bottom:1px solid var(--border);
}

.compare-head div{
    background:#f1f5f9;
    font-weight:700;
}

.compare-head div:nth-child(2){
    background:var(--primary);
    color:#fff;
}

/* ==========================================
   BENEFITS
========================================== */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.benefit-card{
    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px;

    text-align:center;
}

.benefit-icon{
    font-size:34px;
    margin-bottom:15px;
}

.benefit-card h3{
    margin-bottom:10px;
}

/* ==========================================
   LOCATIONS
========================================== */

.locations-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.location-card{
    background:#fff;

    border-radius:18px;

    border:1px solid var(--border);

    padding:25px;

    text-align:center;
}

.location-card strong{
    display:block;
    margin-bottom:5px;
}

/* ==========================================
   BLOG
========================================== */

.blog-preview-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.blog-preview-card{
    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    overflow:hidden;
}

.blog-image{
    height:180px;

    background:
        linear-gradient(
            rgba(0,0,0,.15),
            rgba(0,0,0,.15)
        ),
        url('/assets/images/blog-default.jpg');

    background-size:cover;
    background-position:center;
}

.blog-preview-content{
    padding:24px;
}

.blog-preview-content span{
    color:var(--primary);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
}

.blog-preview-content h3{
    margin:10px 0;
}

.blog-preview-content p{
    color:var(--muted);
    margin-bottom:15px;
}

.blog-preview-content a{
    color:var(--primary);
    font-weight:700;
}

/* ==========================================
   CTA
========================================== */

.final-cta{
    background:linear-gradient(
        135deg,
        var(--navy),
        var(--navy-light)
    );

    color:#fff;

    border-radius:24px;

    padding:40px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

.final-cta h2{
    margin-bottom:10px;
}

.final-cta a{
    background:var(--primary);

    color:#fff;

    padding:15px 24px;

    border-radius:14px;

    font-weight:800;
}

/* ==========================================
   FOOTER
========================================== */

.site-footer{
    background:#071225;
    color:#fff;

    margin-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;

    padding:60px 20px;
}

.footer-logo{
    height:46px;
    margin-bottom:15px;
}

.footer-grid h3{
    margin-bottom:15px;
}

.footer-grid a{
    display:block;
    color:#cbd5e1;
    margin-bottom:10px;
}

.footer-bottom{
    text-align:center;

    padding:20px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#94a3b8;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .hero-grid,
    .compare-grid,
    .benefits-grid,
    .locations-grid,
    .blog-preview-grid,
    .footer-grid,
    .trust-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:42px;
    }

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

    .main-nav{
        display:none;
    }

    .main-nav.is-open{
        display:flex;

        position:absolute;
        top:78px;
        left:0;
        right:0;

        flex-direction:column;

        background:#fff;

        padding:20px;
    }

    .mobile-menu-btn{
        display:block;
    }

    .header-cta{
        display:none;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .final-cta{
        flex-direction:column;
        text-align:center;
    }
}

/* PAS 2 - SELECTEAZĂ MAȘINA */

.cars-page {
    background: #f8fafc;
}

.cars-hero {
    background: linear-gradient(135deg, #071225, #102342);
    color: #fff;
    padding: 45px 0 55px;
}

.reservation-summary {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3,1fr) auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 42px;
}

.reservation-summary span {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.reservation-summary strong {
    display: block;
    color: #fff;
}

.reservation-summary small {
    color: #cbd5e1;
}

.summary-edit {
    background: #ff5e1f;
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
}

.cars-title {
    max-width: 760px;
}

.cars-title span,
.offer-kicker {
    color: #ff5e1f;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .08em;
    font-size: 13px;
}

.cars-title h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 10px 0 12px;
}

.cars-title p {
    color: #cbd5e1;
    font-size: 17px;
}

.all-inclusive-section {
    padding: 55px 0;
    background: #fff7ed;
}

.offer-header {
    margin-bottom: 28px;
}

.offer-header h2,
.fleet-header h2 {
    font-size: 34px;
    margin: 8px 0;
}

.offer-header p {
    color: #64748b;
    max-width: 720px;
}

.fleet-section {
    padding: 60px 0;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 28px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-pill {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    padding: 10px 16px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
    background: #ff5e1f;
    color: #fff;
    border-color: #ff5e1f;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.car-card {
    position: relative;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15,23,42,.07);
}

.featured-card {
    border: 2px solid #ff5e1f;
    box-shadow: 0 18px 45px rgba(255,94,31,.18);
}

.car-flag {
    position: absolute;
    top: 16px;
    left: -8px;
    z-index: 3;
    background: #ff5e1f;
    color: #fff;
    padding: 9px 18px;
    border-radius: 0 999px 999px 0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0,0,0,.16);
}

.soft-flag {
    background: #0f172a;
}

.car-image {
    aspect-ratio: 4 / 3;
    background: #f6f8fb;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.car-content {
    padding: 22px;
}

.car-content h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 0;
}

.car-content small {
    color: #64748b;
    font-weight: 600;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.car-specs span {
    background: #f1f5f9;
    color: #334155;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.included-box {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 18px;
}

.included-box strong {
    display: block;
    color: #15803d;
}

.included-box span {
    color: #166534;
    font-size: 13px;
}

.car-price {
    margin: 16px 0;
}

.car-price span {
    display: block;
    color: #64748b;
    font-size: 13px;
}

.car-price strong {
    font-size: 28px;
    color: #0f172a;
}

.price-note {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 16px;
}

.car-button {
    display: block;
    width: 100%;
    background: #ff5e1f;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-weight: 900;
}

.car-button:hover {
    background: #eb4d0d;
}

.empty-state {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.empty-state p {
    color: #64748b;
}

@media(max-width: 991px) {
    .reservation-summary,
    .cars-grid {
        grid-template-columns: 1fr;
    }

    .fleet-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cars-title h1 {
        font-size: 36px;
    }

    .car-image {
        height: 190px;
    }
}
.included-strong {
    background: #ecfdf5;
    border: 2px solid #22c55e;
}

.included-strong strong {
    font-size: 16px;
    color: #15803d;
}

.included-strong span {
    display: block;
    font-weight: 800;
    margin-top: 4px;
}

.included-strong em {
    display: block;
    margin-top: 6px;
    font-style: normal;
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
}

.deposit-zero {
    display: block;
    margin-top: 6px;
    color: #16a34a;
    font-size: 13px;
    font-weight: 900;
}
/* ==========================================
   PAS 3 - PERSONALIZEAZĂ REZERVAREA
========================================== */

.customize-page {
    background: #f8fafc;
}

.customize-hero {
    background: linear-gradient(135deg,#071225,#102342);
    padding: 40px 0;
}

.customize-section {
    padding: 50px 0 80px;
}

.customize-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    align-items: start;
}

.booking-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    border: 1px solid #e2e8f0;
}

.sidebar-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #f6f8fb;
}

.sidebar-content {
    padding: 24px;
}

.sidebar-content h2 {
    font-size: 28px;
    margin-bottom: 0;
}

.sidebar-content small {
    color: #64748b;
}

.sidebar-offer-badge {
    background: #ecfdf5;
    color: #15803d;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 12px;
    margin: 15px 0;
    font-weight: 700;
}

.sidebar-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.sidebar-specs span {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.sidebar-price-box {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.sidebar-price-box div {
    background: #f8fafc;
    padding: 14px;
    border-radius: 14px;
}

.sidebar-price-box span {
    display: block;
    color: #64748b;
    font-size: 13px;
}

.sidebar-price-box strong {
    font-size: 22px;
}

.live-total-box {
    background: #071225;
    color: #fff;
    border-radius: 18px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.live-total-box span,
.live-total-box small {
    display: block;
    color: #cbd5e1;
}

.live-total-box strong {
    display: block;
    font-size: 34px;
    margin: 8px 0;
}

.customize-form {
    display: grid;
    gap: 30px;
}

.customize-block {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.block-heading span {
    color: #ff5e1f;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
}

.block-heading h1,
.block-heading h2 {
    font-size: 36px;
    margin: 10px 0;
}

.block-heading p {
    color: #64748b;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 25px;
}

.protection-card {
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px;
    cursor: pointer;
    transition: .2s;
}

.protection-card.selected {
    border-color: #ff5e1f;
    box-shadow: 0 10px 30px rgba(255,94,31,.15);
}

.protection-card input {
    display: none;
}

.protection-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #ff5e1f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.premium-plus-card {
    border-color: #22c55e;
}

.protection-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.protection-title h3 {
    font-size: 24px;
}

.protection-title strong {
    color: #ff5e1f;
}

.protection-details {
    margin: 18px 0;
    display: grid;
    gap: 8px;
    font-size: 14px;
}

.extras-grid {
    display: grid;
    gap: 14px;
    margin-top: 25px;
}

.extra-card {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.extra-card.selected {
    border-color: #22c55e;
    background: #f0fdf4;
}

.extra-card input {
    margin-right: 10px;
}

.extra-card strong {
    display: block;
}

.extra-card span {
    color: #64748b;
    font-size: 14px;
}

.continue-main-btn {
    height: 60px;
    border: none;
    border-radius: 16px;
    background: #ff5e1f;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.mobile-total-bar {
    display: none;
}

@media(max-width: 991px) {

    .customize-grid,
    .protection-grid {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
    }

    .mobile-total-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-top: 1px solid #e2e8f0;
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
    }

    .mobile-total-bar button {
        background: #ff5e1f;
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 12px 18px;
        font-weight: 800;
    }

    .continue-main-btn {
        margin-bottom: 80px;
    }
}
/* ==========================================
   PAS 4 - DATE CLIENT
========================================== */

.client-page {
    background: #f8fafc;
    color: #0f172a;
    min-height: 100vh;
    overflow-x: hidden;
}

.client-page .wc-container {
    width: min(1680px, calc(100% - 48px));
    max-width: none;
}

.client-page .customize-hero {
    background: #f3f6fa;
    padding: 14px 0 8px;
}

.client-hero-head {
    border: 1px solid rgba(226,232,240,.96);
    border-radius: 22px 22px 0 0;
    padding: 16px 16px 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .055);
}

.client-hero-head span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: #fff4e8;
    color: #fd7906;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.client-hero-head h1 {
    margin: 8px 0 0;
    max-width: 720px;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 820;
}

.client-hero-head p {
    max-width: 760px;
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
}

.client-page .reservation-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 14px 16px 16px;
    border: 1px solid rgba(226,232,240,.96);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .055);
}

.client-page .reservation-summary > div {
    min-width: 0;
    flex: 1 1 220px;
    min-height: 48px;
    padding: 8px 12px;
    border: 1px solid #e5eaf2;
    border-radius: 16px;
    background: #f8fafc;
}

.client-page .reservation-summary span {
    display: block;
    color: #64748b;
    font-size: 12px;
    text-transform: none;
    font-weight: 850;
}

.client-page .reservation-summary strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.client-page .reservation-summary small {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #64748b;
    font-weight: 800;
}

.client-section {
    padding: 20px 0 80px;
}

.client-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 20px;
    align-items: start;
}

.client-form {
    display: grid;
    gap: 30px;
    order: 1;
}

.client-page .booking-sidebar {
    order: 2;
    position: sticky;
    top: calc(var(--wc-header-height, 92px) + 14px);
}

.client-page .sidebar-card {
    overflow: hidden;
    border: 1px solid #e5eaf2;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .055);
}

.client-page .sidebar-card img {
    width: 100%;
    height: 178px;
    object-fit: contain;
    background: #f6f8fb;
}

.client-page .sidebar-content {
    padding: 20px;
}

.client-page .sidebar-content h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0;
}

.client-page .sidebar-content > small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.client-page .sidebar-offer-badge {
    margin: 14px 0 0;
    padding: 10px 12px;
    border: 1px solid rgba(253, 121, 6, .24);
    border-radius: 14px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 13px;
    font-weight: 900;
}

.client-block {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #e5eaf2;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .055);
}

.client-block .block-heading span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: #fff4e8;
    color: #fd7906;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.client-block .block-heading h1 {
    margin: 10px 0 6px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 0;
}

.client-block .block-heading p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.45;
}

.client-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 25px 0 20px;
}

.client-form textarea {
    width: 100%;
    resize: vertical;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px;
    font-family: inherit;
    font-size: 14px;
    background: #f8fafc;
}

.client-form textarea:focus {
    outline: none;
    border-color: #ff5e1f;
}

.client-page .form-field label {
    color: #334155;
    font-weight: 850;
}

.client-page .form-field input,
.client-page .form-field select {
    min-height: 52px;
    border-radius: 16px;
    background: #f8fafc;
}

.summary-price-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.summary-price-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-price-list span {
    color: #64748b;
    font-size: 14px;
}

.summary-price-list strong {
    color: #0f172a;
    text-align: right;
}

.summary-price-list small {
    grid-column: 1 / -1;
    margin-top: -6px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.35;
}

.summary-subtitle {
    display: block !important;
    padding: 16px 0 4px !important;
    border-bottom: 0 !important;
}

.summary-subtitle span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.summary-discount-line span,
.summary-discount-line small {
    color: #15803d;
}

.summary-discount-line strong {
    color: #16a34a;
}

.summary-total-line {
    border-top: 2px solid #0f172a;
    border-bottom: none !important;
    padding-top: 18px !important;
    margin-top: 8px;
}

.summary-total-line span,
.summary-total-line strong {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
}

.terms-box {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 18px;
    border-radius: 16px;
}

.terms-box label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #334155;
}

.terms-box input {
    margin-top: 4px;
    accent-color: #ff5e1f;
}

.terms-box a {
    color: #ff5e1f;
    font-weight: 700;
}

.client-reassurance {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    color: #15803d;
    font-size: 14px;
    font-weight: 800;
}

@media(max-width: 991px) {
    .client-page .wc-container {
        width: min(100% - 20px, 720px);
    }

    .client-page .customize-hero {
        padding-top: 10px;
    }

    .client-hero-head {
        padding: 14px 14px 0;
        border-radius: 22px 22px 0 0;
    }

    .client-hero-head h1 {
        font-size: 24px;
    }

    .client-page .reservation-summary {
        padding: 12px 14px 14px;
    }

    .client-page .reservation-summary > div {
        flex-basis: 100%;
    }

    .client-grid,
    .client-form-grid {
        grid-template-columns: 1fr;
    }

    .client-page .booking-sidebar {
        position: static;
    }

    .client-section {
        padding-top: 14px;
    }

    .client-block {
        padding: 20px;
        border-radius: 24px;
    }

    .client-block .block-heading h1 {
        font-size: 25px;
    }
}
/* ==========================================
   PAS 5 - CONFIRMARE REZERVARE
========================================== */

.confirmation-page {
    background: #f8fafc;
    min-height: 80vh;
}

.confirmation-section {
    padding: 70px 0;
}

.confirmation-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 45px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
    text-align: center;
}

.confirmation-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(34,197,94,.25);
}

.confirmation-card h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #0f172a;
}

.confirmation-card > p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.confirmation-code {
    margin: 30px auto;
    display: inline-block;
    background: #fff7ed;
    border: 2px solid #ff5e1f;
    color: #ea580c;
    padding: 14px 22px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
}

.confirmation-code strong {
    display: block;
    font-size: 24px;
    margin-top: 4px;
}

.confirmation-identifiers {
    display: inline-grid;
    gap: 10px;
    text-align: left;
}

.confirmation-identifiers span {
    display: block;
}

.confirmation-summary {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
}

.confirmation-summary div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
}

.confirmation-summary span {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 5px;
}

.confirmation-summary strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
}

.confirmation-summary small {
    display: block;
    color: #64748b;
    margin-top: 4px;
}

.confirmation-note {
    margin-top: 35px;
    padding: 22px;
    border-radius: 18px;
    background: #fff4e8;
    border: 1px solid #ffd7b0;
    color: #1e3a8a;
    text-align: left;
    line-height: 1.7;
}

.confirmation-note strong {
    display: block;
    margin-bottom: 6px;
}

.confirmation-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.confirmation-primary,
.confirmation-secondary {
    min-width: 240px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    transition: .2s;
}

.confirmation-primary {
    background: #ff5e1f;
    color: #fff;
    box-shadow: 0 12px 25px rgba(255,94,31,.25);
}

.confirmation-primary:hover {
    transform: translateY(-2px);
}

.confirmation-secondary {
    background: #25D366;
    color: #fff;
    box-shadow: 0 12px 25px rgba(37,211,102,.25);
}

.confirmation-secondary:hover {
    transform: translateY(-2px);
}

@media(max-width: 768px) {

    .confirmation-section {
        padding: 25px 0 40px;
    }

    .confirmation-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .confirmation-card h1 {
        font-size: 28px;
    }

    .confirmation-summary {
        grid-template-columns: 1fr;
    }

    .confirmation-primary,
    .confirmation-secondary {
        width: 100%;
    }
}
