/* =========================================
   VARIABILE ȘI SETĂRI GLOBALE
   ========================================= */
   :root {
    --primary-orange: #f05a22; /* Portocaliu puternic, vizibil in soare */
    --primary-orange-hover: #d14917;
    --dark-color: #111111;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #1ebd5a;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    /* Adăugăm padding jos pe mobil pentru a nu acoperi footer-ul cu butoanele flotante */
    padding-bottom: 0; 
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

.fw-black {
    font-weight: 800;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

/* =========================================
   BUTOANE
   ========================================= */
.btn-custom-orange {
    background-color: var(--primary-orange);
    color: white;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.btn-custom-orange:hover {
    background-color: var(--primary-orange-hover);
    border-color: var(--primary-orange-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    color: white;
    transform: translateY(-2px);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    background-color: #f8f9fa;
    overflow: hidden;
    min-height: 80vh;
}

/* Fundal gri deschis care simuleaza drumul/asfaltul */
.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-bg-shape {
        width: 100%;
        clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0% 100%);
    }
}

.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.85);
}

.drop-shadow {
    filter: drop-shadow(0px 15px 20px rgba(0,0,0,0.3));
}

.hero-van-img {
    max-height: 450px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   SERVICII (CARDS)
   ========================================= */
.service-card {
    transition: all 0.3s ease;
    border-top: 4px solid transparent !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-top: 4px solid var(--primary-orange) !important;
}

/* =========================================
   MOBILE FLOATING BAR (Sticky Bottom)
   ========================================= */
.mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    z-index: 9999;
    padding: 8px 5px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom)); /* Pentru iPhone */
}

.float-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 8px 0;
    margin: 0 4px;
    border-radius: 8px;
    color: white;
}

.float-btn i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.btn-call {
    background-color: var(--primary-orange);
}

.btn-call:active {
    background-color: var(--primary-orange-hover);
}

.btn-wa {
    background-color: var(--whatsapp-green);
}

.btn-wa:active {
    background-color: var(--whatsapp-green-hover);
}

/* Adaugam spatiu jos pe mobil ca sa nu se ascunda footer-ul sub bara flotanta */
@media (max-width: 991px) {
    body {
        padding-bottom: 75px; 
    }
    .hero-section {
        min-height: auto;
    }
}