/* Stiluri pentru pagina de contact - ContactPage */

.contact-page {
    text-align: center;
    padding: 50px 20px;
}

.contact-page h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-box:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.contact-box img {
    width: 60px;
    margin-top: 10px;
}

.contact-btn {
    padding: 10px 15px;
    font-size: 16px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.contact-btn:hover {
    background: darkred;
}

#phone-number {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
    color: black;
}

.hidden2 {
    display: none;
}

.captcha-container {
    margin-top: 10px;
    display: none;
    text-align: center;
}

.captcha-container input {
    padding: 8px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.captcha-container button {
    padding: 8px 15px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.captcha-container button:hover {
    background: darkred;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-btn img {
    width: 24px;
}

.whatsapp-btn:hover {
    background: #1EBE5D;
    transform: scale(1.05);
}

.why-us {
    margin-top: 40px;
    text-align: center;
}

.why-us h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.why-box {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Banner Clienți Mulțumiți */
.happy-clients-banner {
    background-color: #2c2c2c; /* Gri închis */
    color: #d1d1d1; /* Alb spre gri */
    padding: 40px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 50px 0;
    border-radius: 10px;
}

/* Container pentru text și număr */
.happy-clients-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Stilizare text descriptiv */
.happy-clients-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 10px 0;
    color: #d1d1d1; /* Alb spre gri */
}

/* Numărul animat al clienților */
.happy-clients-number {
    font-size: 50px;
    font-weight: 700;
    color: #ff4d4d; /* Roșu deschis */
    margin: 20px 0;
    display: inline-block;
    opacity: 1; /* Asigură vizibilitatea */
    transition: transform 0.3s ease-in-out;
}

/* Efect vizual la finalul numărării */
.happy-clients-number.animated {
    transform: scale(1.1);
}


