:root {
    --primary-color: #0d6efd; /* A strong blue */
    --secondary-color: #6f42c1; /* A deep purple */
    --accent-color: #dc3545; /* A vibrant RED */
    --dark-color: #212529;
    --light-gray: #f8f9fa;
    --primary-shadow: rgba(13, 110, 253, 0.2);
    --success-color: #198754; /* Verde Bootstrap */
    --success-light-bg: rgba(25, 135, 84, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding-top: 72px; /* Offset for fixed navbar */
    background-color: var(--light-gray); /* Fundal general gri deschis */
    font-size: 1rem;
}

/* --- Navbar --- */
.navbar {
    transition: background-color 0.3s ease;
}
.navbar .btn-accent {
    padding: 8px 20px;
}

/* --- Hero Section with Background Video --- */
.hero-section {
    position: relative;
    color: white;
    min-height: 480px; /* Redus puțin */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark-color); /* Fallback dacă video nu merge */
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    opacity: 0.6; /* Puțin transparent */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.5); /* Overlay mai subtil */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 2.6rem; /* Puțin mai mic */
}
.hero-section p {
    font-size: 1.1rem; /* Puțin mai mic */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
}

/* Mobile fix for Hero Section */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 0;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
        .hero-section p {
        font-size: 1.05rem;
    }
}

/* --- Buttons --- */
.btn-accent {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-accent:hover {
    background-color: #bb2d3b; /* Darker red */
    color: white;
    transform: translateY(-2px);
}

/* --- Custom Card Styling & Micro-interactions --- */
.benefit-card {
    border: none;
    border-radius: 12px;
    background-color: #fff; /* Fundal alb explicit */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--primary-shadow);
}
.benefit-card .card-body {
    font-size: 1rem; /* Ajustat */
    font-weight: 400; /* Normalizat */
}
    .benefit-card h4 {
    font-weight: 600; /* Titluri mai bold */
    font-size: 1.1rem;
    }
.benefit-icon {
    font-size: 2.2rem; /* Puțin mai mic */
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

/* --- NOU: Stiluri Secțiune Calculator & Formular --- */
    #calculator-form-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
        scroll-margin-top: 72px; /* Offset pentru ancoră */
    }

    .calculator-column h3 {
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .calculator-item {
        background-color: var(--light-gray);
        padding: 1rem 1.5rem;
        border-radius: 10px;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .calculator-item .item-details {
        flex-grow: 1;
        margin-right: 1rem;
    }
    .calculator-item h5 {
        font-weight: 600;
        margin-bottom: 0.1rem;
    }
    .calculator-item .text-muted {
        font-size: 0.85rem;
    }
    .calculator-item .input-group-modern {
        margin-top: 0; /* Eliminat margin top */
        flex-shrink: 0; /* Previne micșorarea */
    }

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px; /* Redus */
    height: 30px; /* Redus */
    font-weight: bold;
    font-size: 1rem; /* Redus */
    transition: all 0.2s ease;
    line-height: 1; /* Aliniere mai bună */
}
.quantity-btn:hover {
    background: #0b5ed7;
    transform: scale(1.1);
}
.quantity-input {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px; /* Redus */
    width: 55px; /* Redus */
    height: 35px; /* Redus */
    margin: 0 8px; /* Redus */
    font-weight: 700;
    font-size: 1rem; /* Redus */
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculator-summary {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 1.3rem 1.5rem; /* Redus padding */
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        margin-top: 1.5rem;
    }
.calculator-summary h4 {
    font-weight: 700;
    font-size: 1.6rem; /* Redus */
    margin-bottom: 0.25rem;
}
.calculator-summary .original-price-summary {
        opacity: 0.75;
        text-decoration: line-through;
        font-size: 0.9rem;
    }
.calculator-summary .savings-summary {
        font-weight: 600;
        font-size: 1.1rem;
        color: #90EE90; /* Verde deschis pentru contrast */
        margin-top: 0.25rem;
    }
    .calculator-summary .disclaimer {
        font-size: 0.8rem;
        opacity: 0.8;
        margin-top: 1rem;
        margin-bottom: 0;
    }

/* Stiluri specifice pentru prețuri în calculator-item (dacă e nevoie) */
.item-price-details {
        font-size: 0.8rem;
        margin-top: 0.25rem;
    }
.item-original-price {
        text-decoration: line-through;
        color: var(--accent-color);
    }
.item-discount-applied {
        color: var(--success-color);
        font-weight: 600;
    }

/* --- Stiluri Formular Contact (în coloana din dreapta) --- */
    .form-column h3 {
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

.form-control {
    padding: 12px; /* Redus */
    border-radius: 6px; /* Redus */
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem var(--primary-shadow); /* Redus */
}
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px; /* Redus */
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    border-radius: 6px; /* Redus */
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Redus */
}
.contact-block-aside { /* Stil nou pentru contact în dreapta */
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 1.5rem; /* Spațiu față de formular */
}
.contact-block-aside img {
    width: 100px; /* Redus */
    height: 100px; /* Redus */
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 1rem;
    object-fit: cover;
}
.contact-block-aside h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}
.contact-block-aside .text-muted-light {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1rem;
    }
.contact-block-aside a {
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
    font-weight: 500;
}
.contact-block-aside a:hover {
    opacity: 0.7;
}
.contact-block-aside a i {
    margin-right: 0.5rem;
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    padding: 8px 18px; /* Redus */
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2); /* Redus */
}
.btn-whatsapp:hover {
    background-color: #20b856;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); /* Redus */
}
.btn-whatsapp i {
    font-size: 1.1rem; /* Redus */
    margin-right: 6px; /* Redus */
}

/* NOU: Stiluri pentru Contact Block Compact (lângă formularul superior) */
.contact-block-compact {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem; /* Padding redus */
    border-radius: 10px;
    margin-top: 1.5rem; /* Spațiu față de formular */
    text-align: center; /* Centrare text pe mobil */
}
.contact-block-compact img {
    width: 80px; /* Imagine mai mică */
    height: 80px; /* Imagine mai mică */
    border-radius: 50%;
    border: 3px solid white; /* Bordură mai subțire */
    object-fit: cover;
    margin-bottom: 1rem; /* Spațiu sub imagine pe mobil */
}
    @media (min-width: 992px) { /* Doar pe ecrane mari (lg) */
    .contact-block-compact {
            text-align: left; /* Aliniere stânga pe desktop */
    }
        .contact-block-compact img {
            margin-bottom: 0; /* Fără spațiu sub imagine pe desktop */
    }
    }

.contact-block-compact h5 { /* Nume */
        font-weight: 600;
        margin-bottom: 0.1rem;
        font-size: 1.1rem;
    }
.contact-block-compact .text-muted-light { /* Titlu */
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
.contact-block-compact a { /* Linkuri Tel/Email */
    color: white;
    text-decoration: none;
    display: block; /* Pe rânduri separate */
    margin-bottom: 0.4rem;
    transition: opacity 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem; /* Puțin mai mic */
}
.contact-block-compact a:hover {
    opacity: 0.8;
}
.contact-block-compact a i {
    margin-right: 0.5rem;
    width: 1em; /* Aliniere iconițe */
}
.contact-block-compact .btn-whatsapp { /* Buton WAPP specific */
        margin-top: 0.8rem;
        padding: 6px 16px; /* Buton mai mic */
        font-size: 0.9rem; /* Text buton mai mic */
        width: fit-content;
    }
.contact-block-compact .btn-whatsapp i {
        font-size: 1rem; /* Iconiță buton mai mică */
        margin-right: 5px; /* Spațiu iconiță mai mic */
    }


@media (min-width: 992px) {
    .contact-block-compact .btn-whatsapp {
            margin-left: 0; /* Resetează marginea auto pe desktop */
            margin-right: 0; /* Resetează marginea auto pe desktop */
        }
}

/* NOU: Stil pentru text verde vibrant în tooltip */
.tooltip-highlight-green {
    color: #33FF57 !important; /* Verde mai vibrant */
    font-weight: bold !important; /* Asigură bold */
}

/* Ajustări responsive pentru coloana calculator/formular */
@media (max-width: 991.98px) {
    .calculator-column, .form-column {
        margin-bottom: 2.5rem;
    }
        .contact-block-aside {
            margin-top: 0; /* Eliminăm spațiul extra pe mobil */
        }
}
/* --- Sfârșit Stiluri Secțiune Calculator & Formular --- */

/* --- Service Card Lists --- */
.service-card-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
    font-size: 0.95rem; /* Puțin mai mic în carduri */
}
.service-card-list li {
    position: relative;
    padding-left: 25px; /* Redus */
    margin-bottom: 6px; /* Redus */
}
.service-card-list li::before {
    content: '\F26A'; /* Bootstrap Icon Check */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 1px; /* Ajustare fină */
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9em; /* Iconiță puțin mai mică */
}

/* --- Stiluri Testimoniale (dacă nu există deja) --- */
.testimonial-card {
    border: none;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    height: 100%;
}
.testimonial-logo-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-top: -45px; /* Scoate logo-ul deasupra */
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testimonial-logo-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.testimonial-quote { /* Stilul pentru citat */
    font-style: italic;
    color: #555;
    font-size: 0.95rem; /* Ajustat la fontul general */
}
.testimonial-author { /* Stilul pentru autor */
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
}
.testimonial-card small { /* Stilul pentru funcție/companie */
    font-size: 0.85rem;
}



/* --- Footer --- */
.footer {
    background-color: var(--dark-color);
    color: #ccc;
}

/* --- NOU: Ajustări Specifice Mobile --- */

@media (max-width: 991.98px) { /* Se aplică până la breakpoint-ul 'lg' */
    
    /* 1. Centrare Buton WhatsApp Superior pe Mobil/Tabletă */
    #whatsapp-button-top {
        margin-left: auto; 
        margin-right: auto;
    }

    /* Resetare centrare pe desktop (dacă a fost adăugat margin-auto general) */
        .contact-block-compact .row > div { /* Selectează coloanele din contact block */
            text-align: center; /* Centrează conținutul coloanelor pe mobil */
        }
        .contact-block-compact a:not(.btn-whatsapp) { /* Linkurile tel/mail */
            display: inline-block; /* Le permite să stea una lângă alta dacă încap */
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }
}

@media (max-width: 767.98px) { /* Se aplică până la breakpoint-ul 'md' */

        /* 2. Centrare Item-uri Listă Servicii pe Mobil */
        .service-card-list {
            text-align: center; /* Centrează textul din listă */
            padding-left: 0; /* Eliminăm padding-ul default */
        }
        .service-card-list li {
            padding-left: 0; /* Eliminăm padding-ul specific item-ului */
            margin-bottom: 0.5rem; /* Spațiere între item-uri */
            /* Alinierea iconiței este dificilă cu ::before și text-align center. */
            /* O lăsăm aliniată la stânga textului centrat, e cel mai simplu */
            display: inline-block; /* Permite centrarea relativă la container */
            width: 100%; /* Ocupă lățimea pentru centrare */
            text-align: center;
        }
        .service-card-list li::before {
        /* Poziționăm iconița relativ la textul centrat */
            position: relative; /* Schimbăm din absolute */
            display: inline-block; /* Permite alinierea cu textul */
            margin-right: 0.5em; /* Spațiu între iconiță și text */
            left: 0; /* Resetăm left */
            top: 0; /* Resetăm top */
        }


    /* 3. Layout Calculator pe Mobil (Stack vertical) */
    .calculator-item {
        flex-direction: column; /* Stackează elementele vertical */
        align-items: center; /* Centrează elementele pe orizontală */
        text-align: center; /* Centrează textul */
        padding: 1.5rem 1rem; /* Mărim puțin padding-ul vertical */
    }
    .calculator-item .item-details {
        margin-right: 0; /* Eliminăm marginea dreaptă */
        margin-bottom: 1rem; /* Adăugăm spațiu sub detalii */
        width: 100%; /* Ocupă toată lățimea */
    }
        .calculator-item .item-details .d-flex { /* Containerul H5 + icon */
            justify-content: center; /* Centrează titlul + icon */
        }

    .calculator-item .input-group-modern {
        margin-top: 0.5rem; /* Spațiu mic deasupra butoanelor */
    }
}
/* --- Sfârșit Ajustări Mobile --- */

/* ------------------------------------------- */
/* --- NEW PROMO BANNER & TRUST STRIP CSS --- */
/* ------------------------------------------- */
.hero-offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-left: 5px solid #ffc107; /* Yellow highlight */
}

.offer-badge {
    background-color: #ffc107;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-offer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-offer-text {
    color: #f0f0f0;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.trust-strip {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    color: #333;
}

.trust-strip h4 {
    font-size: 1.2rem;
    color: #495057;
}