.stat-label {
    margin-bottom: 1.5rem;
}


.section-header {
    text-align: center;
    margin-top: 2rem;
}

.text-white .section-header h2, .text-white .section-header p {
    color: var(--white);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.ff-land {
  background-color: black;
  position: relative;
  overflow: hidden;
  margin: auto;
  color: white;
}

.ff-land::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('/src/FreshBin Truck with Vibrant Graphic Design.png');
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  transition: all 0.5s ease;
  z-index: 1;
}

.ff-land:hover::before {
  filter: blur(5px);
  opacity: 0.5;
}

.first-land {
  position: relative;
  z-index: 2;
  opacity: 1;
  padding: 5rem;
  height: fit-content;
  border-radius: 15px;
}

.sub-lead {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Stats Section */
.stat-box, .stat {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: statFadeIn 0.6s ease-out;
}

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box:hover, .stat:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: statCount 2s ease-out;
}

@keyframes statCount {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card-v2 {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    animation: cardSlideIn 0.8s ease-out;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-v2:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    animation: avatarBounce 1s ease-out;
}

@keyframes avatarBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.testimonial-header h5 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.stars-large {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.stars-large .bi-star-fill {
    color: #ffd700;
    font-size: 1.25rem;
    animation: starTwinkle 2s infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    animation: dateSlide 1s ease-out;
}

@keyframes dateSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Before After Cards */
.before-after-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: baCardFade 0.8s ease-out;
}

@keyframes baCardFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.before-after-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.ba-image-container {
    position: relative;
    overflow: hidden;
}

.ba-image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before-after-card:hover .ba-image-container img {
    transform: scale(1.05);
}

.ba-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ba-content {
    padding: 1.5rem;
    text-align: center;
}

.ba-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Trust Badges */
.trust-badge {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: trustFadeIn 0.6s ease-out;
}

@keyframes trustFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-color);
    animation: iconRotate 3s infinite linear;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.trust-badge:hover .trust-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.trust-badge h5 {
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    animation: ctaFadeIn 0.8s ease-out;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-section .btn {
    animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

/* Responsive */
@media (max-width: 767px) {
    .testimonial-card-v2 {
        padding: 1.5rem;
    }

    .stat-box, .stat {
        padding: 1.5rem 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .trust-badge {
        padding: 1.5rem 1rem;
    }

    .cta-section {
        padding: 3rem 0;
    }
}