/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(90deg, #0056b3, #007bff);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(90deg, #004494, #0056b3);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}
.btn-secondary {
    background-color: #f8f9fa;
    color: #0056b3;
    border: 2px solid #0056b3;
}
.btn-secondary:hover {
    background-color: #0056b3;
    color: white;
}
.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #222;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ===== HEADER ===== */
.site-header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #0056b3;
}
.logo h1 .city {
    color: #dc3545;
    font-weight: 800;
}
.logo .tagline {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}
.logo i {
    margin-right: 10px;
    color: #007bff;
}
.main-nav ul {
    display: flex;
    gap: 25px;
}
.main-nav a {
    font-weight: 600;
    color: #444;
    padding: 8px 5px;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
    color: #007bff;
    border-bottom-color: #007bff;
}
.main-nav i {
    margin-right: 8px;
    font-size: 0.9em;
}
.header-phone .call-button {
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}
.header-phone .call-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}
.menu-toggle {
    display: none;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(0, 40, 85, 0.85), rgba(0, 40, 85, 0.9)), url('../imagine/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 35px;
    font-weight: 600;
}
.hero-subtitle strong {
    color: #ffcc00;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.hero-note {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
}
.hero-note i {
    margin-right: 10px;
}

/* ===== SERVICII RAPIDE ===== */
.services-quick {
    padding: 80px 0;
    background-color: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    border-top: 5px solid #007bff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.service-link {
    color: #007bff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-link:hover {
    color: #0056b3;
    gap: 12px;
}

/* ===== SERVICII COMPLETE ===== */
.services-full {
    padding: 80px 0;
    background-color: #f1f7ff;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.service-column {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.service-column h3 {
    color: #0056b3;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-column ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
    display: flex;
    align-items: center;
}
.service-column ul li:before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 12px;
}
.cta-center {
    text-align: center;
}

/* ===== DE CE SA NE ALEGI ===== */
.why-us {
    padding: 80px 0;
    background-color: white;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature {
    text-align: center;
    padding: 30px 20px;
}
.feature i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}
.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.feature p {
    color: #666;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col p {
    margin-bottom: 20px;
    line-height: 1.7;
}
.footer-phone {
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}
.footer-phone a {
    color: #4dabf7;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col ul li a:hover {
    color: #4dabf7;
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.footer-note {
    color: #ffcc00;
    font-weight: 600;
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content h2 { font-size: 2.2rem; }
    .section-title { font-size: 1.9rem; }
}
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 20px; }
    .main-nav { width: 100%; }
    .main-nav ul { flex-direction: column; gap: 10px; display: none; }
    .main-nav ul.show { display: flex; }
    .menu-toggle { display: block; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .services-grid, .features { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 60px 0; }
    .services-quick, .services-full, .why-us { padding: 60px 0; }
}
@media (max-width: 576px) {
    .services-grid, .features, .services-list, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h2 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .btn { padding: 10px 22px; font-size: 15px; }
    .logo h1 { font-size: 1.5rem; }
}