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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

/* ===========================
   RECENZII+BUTOANE
=========================== */
.review-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.review-button {
    display: inline-block;
    padding: 16px 24px;
    background: #ffbd00;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 15px;
    transition: 0.2s ease;
}

.review-button:hover {
    background: #ffc928;
    transform: translateY(-2px);
}

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

header{
    background:#111;
    padding:15px 20px;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.25);
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
}

nav ul{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    list-style:none;
    margin:0;
    padding:0;
    flex-wrap:wrap;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:700;
    padding:8px 12px;
    border-radius:10px;
    transition:.2s;
}

nav ul li a:hover{
    background:#FFD700;
    color:#111;
}

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

.hero{
    background:#050505;
    padding:28px 20px;
}

.hero-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 320px;
    align-items:center;
    gap:24px;
}

.hero-left{
    color:#fff;
}

.hero-badge{
    display:inline-block;
    background:#FFD700;
    color:#111;
    padding:8px 14px;
    border-radius:10px;
    font-weight:700;
    margin-bottom:16px;
    font-size:14px;
}

.hero-left h1{
    font-size:44px;
    line-height:1.08;
    margin-bottom:14px;
}

.hero-left p{
    font-size:18px;
    color:#d6d6d6;
    margin-bottom:18px;
    max-width:560px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:22px;
}

.hero-features span{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:9px 14px;
    border-radius:999px;
    font-size:14px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:320px;
    height:100%;
    max-height:320px;
    object-fit:cover;
    border-radius:18px;
    border:1px solid rgba(255,215,0,.25);
    box-shadow:0 16px 36px rgba(0,0,0,.45);
    display:block;
}

/* Responsive */

@media (max-width:768px){

    .hero{
        padding:22px 14px;
    }

    .hero-container{
        grid-template-columns:1fr 120px;
        gap:14px;
        align-items:center;
    }

    .hero-left h1{
        font-size:26px;
        margin-bottom:10px;
    }

    .hero-left p{
        font-size:15px;
        margin-bottom:14px;
    }

    .hero-features{
        gap:8px;
        margin-bottom:16px;
    }

    .hero-features span{
        font-size:11px;
        padding:6px 10px;
    }

    .hero-buttons{
        gap:8px;
    }

    .hero-right img{
        width:120px;
        height:120px;
        max-width:none;
        max-height:none;
        object-fit:cover;
        border-radius:14px;
    }
}

/* ===========================
   BUTOANE
=========================== */

.btn{
    display:inline-block;
    background:#FFD700;
    color:#111;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    margin:5px;
    transition:.2s;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(0,0,0,.2);
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

/* ===========================
   SECTIUNI
=========================== */

section{
    padding:70px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    color:#111;
    margin-bottom:50px;
}

/* ===========================
   FORMULAR COMANDA
=========================== */

.booking-box{
    max-width:560px;
    margin:0 auto;
    background:#fff;
    padding:32px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.booking-box h3{
    text-align:center;
    font-size:28px;
    color:#111;
    margin-bottom:24px;
}

.booking-box input,
.booking-box select{
    width:100%;
    padding:15px;
    margin-bottom:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.2s;
    background:#fafafa;
}

.booking-box input:focus,
.booking-box select:focus{
    border-color:#FFD700;
    box-shadow:0 0 0 4px rgba(255,215,0,.25);
    background:#fff;
}

.booking-box button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#25D366;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.booking-box button:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}

/* ===========================
   TARIFE
=========================== */

#preturi{
    background:#FFD700;
    padding:85px 20px 70px;
    position:relative;
}

.pret-title{
    position:absolute;
    top:-24px;
    left:50%;
    transform:translateX(-50%);
    background:#FFD700;
    color:#111;
    padding:14px 28px;
    border-radius:14px 14px 0 0;
    font-size:28px;
    font-weight:700;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.pret-container{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.pret-box{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.12);
}

.pret-box h3{
    font-size:26px;
    margin-bottom:18px;
    color:#111;
}

.pret-box ul{
    padding-left:20px;
}

.pret-box li{
    margin:12px 0;
    font-size:18px;
}

.pret-info{
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#111;
    margin-top:40px;
}

/* ===========================
   SERVICII
=========================== */

#servicii{
    background:#fff;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.service-item{
    background:#fff;
    padding:32px 24px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-item:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.service-icon{
    font-size:52px;
    margin-bottom:18px;
}

.service-item h3{
    font-size:22px;
    color:#111;
    margin-bottom:12px;
}

.service-item p{
    color:#666;
    font-size:15px;
}

/* ===========================
   CONTACT PREMIUM + GOOGLE MAPS
=========================== */

.contact-premium{
    background:#070b16;
    padding:80px 20px;
}

.contact-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:32px;
    align-items:stretch;
}

.contact-left{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-card{
    background:#0f1727;
    border:1px solid rgba(255,215,0,.15);
    border-radius:24px;
    padding:24px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.25s;
}

.contact-card:hover{
    transform:translateY(-3px) scale(1.01);
    border-color:#FFD700;
}

.contact-card .icon{
    width:56px;
    height:56px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-card span{
    display:block;
    color:#8d95a7;
    font-size:14px;
    margin-bottom:6px;
}

.contact-card strong{
    color:#fff;
    font-size:22px;
    line-height:1.3;
}

/* culori iconițe */
.phone .icon{
    background:rgba(239,68,68,.15);
    color:#ff4d4d;
}

.whatsapp .icon{
    background:rgba(37,211,102,.15);
    color:#25D366;
}

.email .icon,
.address .icon,
.schedule .icon{
    background:rgba(255,215,0,.15);
    color:#FFD700;
}

/* card 24/7 */
.schedule{
    background:linear-gradient(135deg,#2a1e00,#1a1400);
}

/* HARTA */
.contact-right{
    background:#0f1727;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(255,215,0,.2);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
    min-height:640px;
}

.contact-right iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/* responsive */
@media (max-width:980px){

    .contact-layout{
        grid-template-columns:1fr;
    }

    .contact-right{
        min-height:380px;
    }

}

@media (max-width:768px){

    .contact-card{
        padding:20px;
    }

    .contact-card strong{
        font-size:18px;
    }

}

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

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

footer p{
    margin:8px 0;
}

footer a{
    color:#FFD700;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

.copyright{
    color:#ccc;
    font-size:15px;
}

/* ===========================
   WHATSAPP FLOAT
=========================== */

.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:88px;
    width:58px;
    height:58px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    z-index:999999;
    box-shadow:0 6px 18px rgba(0,0,0,.35);
    transition:.2s;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

/* ===========================
   BUTON SCROLL
=========================== */

#scrollBtn{
    position:fixed;
    right:18px;
    bottom:18px;
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:#FFD700;
    color:#111;
    font-size:24px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    box-shadow:0 6px 18px rgba(0,0,0,.35);
    transition:.2s;
}

#scrollBtn:hover{
    transform:scale(1.08);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px){

    nav{
        flex-direction:column;
        gap:12px;
    }

    .admin-btn{
        align-self:flex-start;
        margin-left:4px;
    }

    nav ul{
        width:100%;
        justify-content:center;
        gap:10px;
    }

    nav ul li a{
        font-size:14px;
        padding:8px 10px;
        background:#1b1b1b;
    }

    .hero{
        min-height:50vh;
    }

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

    .hero-content p{
        font-size:18px;
    }

    .title{
        font-size:30px;
    }

    .booking-box{
        padding:26px 22px;
    }

    .booking-box h3{
        font-size:24px;
    }

    .pret-title{
        font-size:22px;
        padding:12px 22px;
    }

    .pret-box h3{
        font-size:22px;
    }

    .pret-box li{
        font-size:17px;
    }

    .service-item{
        padding:28px 22px;
    }

    .service-icon{
        font-size:46px;
    }

    .contact-box p{
        font-size:18px;
    }

    .whatsapp-float{
        width:56px;
        height:56px;
        right:14px;
        bottom:82px;
        font-size:28px;
    }

    #scrollBtn{
        width:52px;
        height:52px;
        right:14px;
        bottom:14px;
        font-size:22px;
    }
}

/* ===========================
   FAQ PREMIUM
=========================== */

#faq{
    background:#f8f8f8;
    padding:70px 20px;
}

.faq-box{
    max-width:850px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-box details{
    background:#fff;
    border-radius:16px;
    padding:18px 22px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.2s;
}

.faq-box details[open]{
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.faq-box summary{
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:#111;
    list-style:none;
    position:relative;
    padding-right:28px;
}

.faq-box summary::-webkit-details-marker{
    display:none;
}

.faq-box summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:0;
    font-size:22px;
    color:#FFD700;
    transition:.2s;
}

.faq-box details[open] summary::after{
    transform:rotate(45deg);
}

.faq-box p{
    margin-top:14px;
    color:#555;
    line-height:1.7;
    font-size:16px;
}

@media (max-width:768px){

    .faq-box summary{
        font-size:16px;
    }

    .faq-box p{
        font-size:15px;
    }

}

/* ===========================
   CALCULATOR TARIF PREMIUM
=========================== */

#calculator{
    background:#f4f1e7;
    padding:90px 20px;
}

.calc-badge{
    display:inline-block;
    color:#b08b00;
    font-size:13px;
    letter-spacing:3px;
    margin-bottom:16px;
}

.calc-title{
    font-size:64px;
    line-height:1.05;
    color:#111;
    margin-bottom:18px;
    font-weight:900;
}

.calc-title span{
    background:#FFD700;
    padding:0 10px;
}

.calc-sub{
    color:#666;
    max-width:560px;
    margin-bottom:40px;
    font-size:18px;
}

.calc-box{
    background:#fffdf7;
    border:1px solid #e8e1cf;
    border-radius:28px;
    padding:36px;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.calc-left label{
    display:block;
    color:#777;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:14px;
}

.distance-display{
    font-size:64px;
    color:#111;
    margin-bottom:18px;
}

.distance-display span{
    font-weight:800;
}

#distance{
    width:100%;
    accent-color:#FFD700;
    margin-bottom:10px;
}

.range-labels{
    display:flex;
    justify-content:space-between;
    color:#777;
    font-size:14px;
    margin-bottom:22px;
}

.tarif-pill{
    display:inline-block;
    padding:10px 18px;
    border:1px solid #e5dcc6;
    border-radius:999px;
    font-size:14px;
    color:#333;
    margin-bottom:18px;
}

.calc-note{
    color:#777;
    margin-bottom:24px;
}

.quick-routes{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.quick-routes button{
    background:#fff;
    border:1px solid #e5dcc6;
    border-radius:999px;
    padding:10px 14px;
    cursor:pointer;
    transition:.2s;
}

.quick-routes button:hover{
    border-color:#FFD700;
    transform:translateY(-1px);
}

.calc-right{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:24px;
}

.receipt{
    background:#fff;
    width:100%;
    max-width:320px;
    padding:26px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    position:relative;
}

.receipt::before{
    content:"PREȚ CORECT";
    position:absolute;
    top:18px;
    right:18px;
    border:2px solid #d97706;
    color:#d97706;
    border-radius:50%;
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    text-align:center;
    font-weight:700;
    transform:rotate(-18deg);
}

.receipt h4{
    text-align:center;
    margin-bottom:26px;
    font-size:20px;
    color:#111;
}

.receipt-line{
    display:flex;
    justify-content:space-between;
    margin:14px 0;
    color:#444;
}

.receipt hr{
    border:none;
    border-top:1px dashed #d7d7d7;
    margin:20px 0;
}

.receipt-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    font-weight:800;
    color:#111;
}

.receipt-total strong{
    font-size:34px;
}

.barcode{
    height:48px;
    margin:24px 0 18px;
    background:repeating-linear-gradient(
        to right,
        #111 0,
        #111 2px,
        transparent 2px,
        transparent 4px
    );
}

.receipt-small{
    color:#777;
    font-size:13px;
    text-align:center;
    line-height:1.5;
}

.call-btn{
    display:inline-block;
    background:#111;
    color:#FFD700;
    padding:16px 28px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    transition:.2s;
}

.call-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.15);
}

@media (max-width:900px){

    .calc-title{
        font-size:42px;
    }

    .calc-box{
        grid-template-columns:1fr;
        padding:24px;
    }

    .distance-display{
        font-size:48px;
    }

    .receipt{
        max-width:100%;
    }

}