/* Motif de pattes animé */
 .paw-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M13.5 13.5a3 3 0 1 1 3-3 3 3 0 0 1-3 3m4.5-2.5a2 2 0 1 1 2-2 2 2 0 0 1-2 2m4.5 2.5a2 2 0 1 1 2-2 2 2 0 0 1-2 2m2.5-6.5a2 2 0 1 1 2-2 2 2 0 0 1-2 2M18 7a2 2 0 1 1 2-2 2 2 0 0 1-2 2'/%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 100s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Section Hero */
.testimonial-hero {
    padding: 5rem 0;
}

.backdrop-blur {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Vague de séparation */
.wave-divider {
    display: block;
    margin-top: -5px;
    line-height: 0;
}

/* Icône en cercle */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bordure en pointillés */
.border-dashed {
    border-style: dashed !important;
}

/* Fluidité du scroll */
html {
    scroll-behavior: smooth;
}

/* Marge du haut pour le scroll */
.scroll-mt-3 {
    scroll-margin-top: 1.5rem;
}

/* Style pour les étoiles */
.star-rating {
    direction: rtl;
    display: inline-block;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ddd;
    font-size: 1.5rem;
    padding: 0 0.1em;
    cursor: pointer;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #FFD700;
}

/* Cartes de témoignages */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Animation du bouton de scroll */
.scroll-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Bouton d'envoi */
.btn-brown-2 {
    transition: all 0.3s ease;
}

.btn-brown-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.form-control {
    color: #000000 !important;
}

#userEmail{
    color: #000000 !important;
}

#dogName{
    color: #000000 !important;
}

#commentText{
    color: #000000 !important;
}

.form-control::placeholder {
    color: #111213 !important;
    opacity: 0.7 !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .testimonial-hero {
        padding: 3rem 0;
    }
    
    .star-rating label {
        font-size: 1.25rem;
    }

    .testimonial-intro em{
        font-size:14px !important;
    }

    .scroll-btn {
        font-size:14px !important;
    }
}
