@charset "utf-8";
/* CSS Document */

/* Sezione statitiche */
.stats-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

/* Card elegante */
.elegant-stat-card {
    background: white;
    text-align: center;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.elegant-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.elegant-icon {
    margin-bottom: 1.5rem;
}

.elegant-icon i {
    font-size: 3.5rem;
    color: var(--eagle-orange);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.elegant-stat-card:hover .elegant-icon i {
    opacity: 1;
}

.elegant-stat-card h3 {
    color: var(--eagle-bluedark);
    margin-bottom: 1rem;
}

.elegant-stat-card p {
    color: #666;
    line-height: 1.6;
}

.elegant-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--eagle-bluedark);
    line-height: 1;
    margin: 1rem 0;
}

.stat-title {
    color: var(--eagle-orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Sezione CTA */
.cta-section {
    background-color: white;
    border-top: 1px solid rgba(0,0,0,0.08);
    position: relative;
    padding: 5rem 0;
}

/* Card testimonial */
.testimonial-card {
    background: white;
    padding: 3.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1),
                0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(var(--eagle-bluedark), 0.1);
    margin: 1rem;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--eagle-orange);
    border-radius: 4px 0 0 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content .bi-quote {
    color: var(--eagle-orange);
    opacity: 0.1;
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 5rem;
    transform: rotate(180deg);
}

.testimonial-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    font-weight: 400;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0,0,0,0.05);
}

.testimonial-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-right: 1.5rem;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.author-info h5 {
    color: var(--eagle-bluedark);
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-content {
    padding: 2rem 0;
    color: var(--eagle-bluedark);
}

.btn-eagle {
    background-color: var(--eagle-orange);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid var(--eagle-orange);
    transition: all 0.3s ease;
}

.btn-eagle:hover {
    background-color: transparent;
    color: var(--eagle-orange);
}

/* Carousel */
.carousel-controls {
    position: absolute;
    bottom: -15px;
    right: 0;
    display: flex;
    gap: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--eagle-orange);
    opacity: 1;
    border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--eagle-bluedark);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: white;
    font-size: 1.2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: -40px;
    margin: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--eagle-orange);
}

.carousel-item {
    transition: transform .6s ease-in-out;
}

/* Media Queries */
@media (max-width: 768px) {
    .elegant-icon i {
        font-size: 3rem;
    }

    .elegant-number {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .cta-content {
        text-align: center;
        padding: 2rem 0;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }

    .carousel-controls {
        position: static;
        justify-content: center;
        margin-top: 2rem;
    }
}


