/* --- GLOBAL --- */
:root {
    --primary: #0d2c54;
    --primary-dark: #071a33;
    --accent: #f39c12;
    --accent-hover: #d35400;
    --text-dark: #2c3e50;
    --text-light: #95a5a6;
    --bg-light: #f9fbfd;
}
body { font-family: 'Segoe UI', 'Helvetica Neue', sans-serif; color: var(--text-dark); background: #fff; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--primary); letter-spacing: -0.5px; }
a { text-decoration: none; transition: all 0.3s ease; }

/* --- NAVBAR --- */
.navbar { background: rgba(13, 44, 84, 0.98); backdrop-filter: blur(10px); padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.navbar-brand { font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; }
.nav-link { font-weight: 500; font-size: 0.95rem; margin-left: 20px; color: rgba(255,255,255,0.8) !important; position: relative; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background: var(--accent); transition: 0.3s; }
.nav-link:hover { color: #fff !important; }
.nav-link:hover::after { width: 100%; }

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    padding: 220px 0 150px;
    color: white;
    text-align: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,44,84,0.95) 0%, rgba(13,44,84,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.25rem; font-weight: 300; opacity: 0.9; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }

.btn-cta {
    background: var(--accent); color: #fff; padding: 15px 45px;
    border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    border: none; box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(243, 156, 18, 0.6); background: #fff; color: var(--accent); }

/* --- STATS COUNTER --- */
.stats-section { background: var(--accent); color: #fff; padding: 50px 0; position: relative; margin-top: -50px; z-index: 10; border-radius: 0 0 50% 50% / 4%; }
.stat-item { text-align: center; padding: 10px; }
.stat-number { font-size: 3rem; font-weight: 800; display: block; margin-bottom: 5px; }
.stat-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* --- CARDS (Service, Portfolio) --- */
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--bg-light) !important; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 80px; height: 4px; background: var(--accent); margin: 15px auto 0; border-radius: 2px; }

.card-hover {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s ease;
    border: none; height: 100%;
}
.card-hover:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.service-icon { font-size: 3.5rem; color: var(--accent); margin-bottom: 25px; transition: 0.3s; }
.card-hover:hover .service-icon { transform: scale(1.1); color: var(--primary); }

.portfolio-img { height: 260px; object-fit: cover; transition: 0.5s; }
.card-hover:hover .portfolio-img { transform: scale(1.05); }
.card-body-custom { padding: 30px; }

/* --- ABOUT --- */
.about-img-wrapper { position: relative; padding: 20px; }
.about-img { border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); width: 100%; }
.about-badge {
    position: absolute; bottom: 40px; left: -10px;
    background: #fff; padding: 20px 30px; border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-left: 5px solid var(--accent);
}

/* --- REVIEWS --- */
.review-card {
    background: #fff; padding: 40px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative;
}
.quote-icon { font-size: 4rem; color: rgba(13,44,84,0.05); position: absolute; top: 20px; left: 20px; }

/* --- FOOTER --- */
footer { background: var(--primary-dark); color: #a0aec0; padding: 80px 0 30px; border-top: 5px solid var(--accent); }
.footer-title { color: #fff; margin-bottom: 25px; font-size: 1.2rem; }
.footer-links a { color: #a0aec0; display: block; margin-bottom: 10px; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.social-icon {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
    margin-right: 10px; transition: 0.3s;
}
.social-icon:hover { background: var(--accent); transform: translateY(-3px); }
.anpc-img { height: 60px; background: #fff; padding: 5px; border-radius: 5px; margin: 0 10px; opacity: 0.8; transition: 0.3s; }
.anpc-img:hover { opacity: 1; transform: scale(1.05); }

/* --- UTILS & MOBILE --- */
.mobile-sticky-bar { display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; background: #fff; border-radius: 50px; padding: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 9999; justify-content: space-between; }
@media(max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .section-padding { padding: 60px 0; }
    body { padding-bottom: 100px; }
}
.form-control, .form-select { padding: 15px; border-radius: 8px; border: 1px solid #e2e8f0; background: #f8f9fa; }
.form-control:focus { background: #fff; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1); }

/* --- WHATSAPP FLOATING BUTTON --- */
.float-wa {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 40px; right: 40px;
    background-color: #25d366; color: #FFF;
    border-radius: 50px; text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9995; /* Sub cookie banner, peste restul */
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: 0.3s;
    animation: pulse-green 2s infinite;
}
.float-wa:hover { background-color: #128c7e; color: #fff; text-decoration: none; }

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ajustare pentru mobil sa nu acopere bara de jos */
@media(max-width: 768px) {
    .float-wa { bottom: 90px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
}

/* --- FIX VIZIBILITATE HERO --- */
.hero-title {
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9); /* Umbra puternica pentru contrast */
}

.hero-content p.lead {
    color: #f8f9fa !important;
    opacity: 1 !important;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-content h5 {
    color: #f39c12 !important; /* Galbenul ramane, e vizibil */
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}
