        :root {
            --primary: #003366; /* Navy Blue Clasic */
            --accent: #d93025; /* Rosu Standard */
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f9f9f9;
        }

        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; color: var(--text-dark); line-height: 1.6; }
        
        header { background: white; padding: 15px 5%; border-bottom: 3px solid var(--accent); display: flex; justify-content: space-between; align-items: center; }
	header { background: white; padding: 10px 5%; border-bottom: 3px solid var(--accent); display: flex; justify-content: space-between; align-items: center; }
	

	.logo-link {
	    display: flex;
	    align-items: center;
	    text-decoration: none;
	}

	.logo-img {
	    height: 100px;
	    width: auto;
	    display: block;
	}


        /* HERO SECTION */
        .hero {
            padding: 80px 5%; color: white; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px;
        }
        .hero-text { flex: 1; min-width: 300px; }
        .hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
        .hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 25px; }

        /* CALCULATOR (Design Clasic, Solid) */
        .calculator-box {
            background: white; padding: 10px; border-radius: 5px; width: 100%; max-width: 350px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2); color: #333;
        }
        .calculator-box h3 { margin-top: 0; color: var(--primary); text-align: center; border-bottom: 1px solid #eee; padding-bottom: 15px; }
        
        input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; margin-bottom: 15px; font-size: 1rem; }
        label { font-weight: bold; font-size: 0.9rem; color: #555; display: block; margin-bottom: 5px; }

        .btn-cta {
            background: var(--accent); color: white; border: none; padding: 15px; width: 100%;
            font-size: 1.1rem; font-weight: bold; border-radius: 4px; cursor: pointer; display: block; text-align: center; text-decoration: none;
        }
        .btn-cta:hover { background: #b92b22; }

        /* CONTENT SEO */
        .container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
        .section-title { text-align: center; color: var(--primary); font-size: 2rem; margin-bottom: 40px; }
        
        .text-block { margin-bottom: 40px; }
        .text-block h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 15px; }
        .text-block p { color: var(--text-light); text-align: justify; }

        /* GRID SERVICII */
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .card { background: white; padding: 25px; border: 1px solid #eee; border-radius: 5px; text-align: center; }
        .card h3 { color: var(--primary); }

        /* STEP BY STEP */
        .steps { background: var(--bg-light); padding: 60px 0; }
        .step-item { display: flex; margin-bottom: 20px; align-items: flex-start; }
        .step-number { background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 15px; flex-shrink: 0; }

        /* FAQ */
        .faq-section { background: white; border-top: 1px solid #eee; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        .faq-item h4 { color: var(--primary); margin-bottom: 5px; font-size: 1.1rem; }

        /* FOOTER */
        footer { background: #222; color: #ccc; padding: 40px 0; text-align: center; font-size: 0.9rem; }
        footer a { color: white; }

        /* UTILS */
        .hidden { display: none; }
        .result-box { background: #e8f5e9; border: 1px solid #4caf50; padding: 15px; text-align: center; margin: 15px 0; border-radius: 4px; }
        .price-tag { font-size: 2rem; color: #2e7d32; font-weight: bold; }

	/* --- LISTA OFERTE (Preturi Multiple) --- */
.oferte-container {
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.oferta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.oferta-item:last-child {
    border-bottom: none;
}

.oferta-item:hover {
    background-color: #f9f9f9;
}

.serviciu-nume {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    text-transform: capitalize; /* Face prima litera mare */
}

.serviciu-pret {
    font-size: 1.1rem;
    color: var(--primary); /* Albastru Navy */
    font-weight: bold;
}

.badge-ieftin {
    background-color: #e6fffa;
    color: #047857;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    border: 1px solid #b7eb8f;
}
/* 1. LATIREA FERESTREI CALCULATORULUI */
.calculator-box {
    background: white; 
    padding: 30px; 
    border-radius: 8px; 
    width: 100%; 
    max-width: 500px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
    color: #333;
}

/* 2. ETICHETA "CEL MAI BUN PRET" - ROSU */
.badge-ieftin {
    background-color: #ffebee; /* Fundal roz pal */
    color: #d93025;            /* Text Rosu Aprins */
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    border: 1px solid #ffcdd2; /* Bordura rosie fina */
    font-weight: bold;
    white-space: nowrap;       /* Sa nu rupa textul */
}

/* Grup pentru butoane (sa stea frumos) */
.action-buttons {
    display: none; /* Ascuns initial */
    gap: 10px;
    margin-top: 15px;
}

/* --- FIX ALINIERE BUTOANE --- */
.action-buttons {
    display: none; /* Ascuns initial (JS il face flex) */
    gap: 15px;     /* Spatiu intre butoane */
    margin-top: 20px;
    align-items: stretch; /* Le forteaza sa aiba aceeasi inaltime */
}

/* Stil pentru butonul verde (Link-ul) sa se comporte bine in Flex */
.btn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0; /* Scoatem orice margine veche care strica alinierea */
    box-sizing: border-box;
}

/* Butonul Gri */
.btn-secondary {
    background-color: #f1f3f4;
    color: #333;
    border: 1px solid #ccc;
    padding: 0 15px; /* Padding doar lateral, inaltimea e data de flex */
    font-size: 0.9rem; /* Un pic mai mic scrisul */
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap; /* Sa nu rupa textul pe 2 randuri */
    transition: background 0.2s;
    margin: 0;
}
.btn-secondary:hover {
    background-color: #e8eaed;
}

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-text { margin-bottom: 30px; }
    .calculator-box {
    	background: white; padding: 20px; border-radius: 5px; width: 100%; max-width: 410px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2); color: #333;
    }
}

@media (min-width: 1024px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-text { margin-bottom: 30px; }
    .calculator-box {
    	background: white; padding: 20px; border-radius: 5px; width: 100%; max-width: 510px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2); color: #333;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .container {
	padding: 20px;
    }
    .hero { flex-direction: column; text-align: center; }
    .hero-text { margin-bottom: 30px; }
    .calculator-box {
    	background: white; padding: 20px; border-radius: 5px; width: 100%; max-width: 510px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2); color: #333;
    }

}
/* Stiluri pentru Meniul din Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: white;
    border-bottom: 3px solid #d93025; /* Rosu accent */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Spatiu intre linkuri */
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: #f0f7ff;
    color: #003366; /* Albastru */
}

.nav-link.active {
    background-color: #003366;
    color: white;
}

.phone-number {
    font-weight: bold;
    color: #555;
    font-size: 0.9rem;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

/* Pe mobil, le punem una sub alta sau reducem spatiul */
@media (max-width: 600px) {
    header { flex-direction: column; gap: 10px; }
    .header-right { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .phone-number { border-left: none; padding-left: 0; }
}
