/* Styles personnalisés pour Rosalie Bernard */

/* Couleurs inspirées des pelages d'animaux */
:root {
    /* Couleurs chaudes - pelage des chats roux et des golden retrievers */
    --warm-amber: #D4A574;
    --golden-brown: #8B6914;
    --sunset-orange: #E07856;
    
    /* Couleurs sombres - pelage de chats noirs et bergers allemands */
    --deep-brown: #4A3728;
    --charcoal-black: #2D1B1B;
    --forest-dark: #3D2817;
    
    /* Couleurs claires - pelage blanc et crème */
    --cream-white: #FFF8F3;
    --soft-beige: #F5E6D3;
    
    /* Couleurs vibrantes - espoir et dynamisme */
    --heart-red: #E74C3C;
    --paw-pink: #E8A0BF;
    --sky-blue: #5B9BD5;
    
    /* Accents supplémentaires */
    --grass-green: #6BA547;
    --light-bg: #FFF9F5;
}

/* Animations de base */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bouton hamburger blanc */
.navbar-toggler-icon {
    filter: invert(1);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pawPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

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

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.8);
    }
}

/* Körper du document */
body {
    background-color: var(--light-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal-black) 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--cream-white) !important;
    font-size: 1.5rem;
    animation: slideInFromLeft 0.6s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--soft-beige) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--sunset-orange) !important;
    animation: wiggle 0.4s ease;
}

.nav-link.active {
    color: var(--heart-red) !important;
    border-bottom: 3px solid var(--heart-red);
    animation: heartbeat 0.6s ease;
}

/* Hero Section */
.bg-primary {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal-black) 50%, var(--forest-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(232, 160, 191, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(91, 155, 213, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bg-primary h1 {
    animation: fadeInUp 0.8s ease 0.2s both;
    color: var(--cream-white);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-primary h2 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-primary p {
    animation: fadeInUp 0.8s ease 0.4s both;
    color: var(--soft-beige);
    font-size: 1.2rem;
}

/* Cartes et sections */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--cream-white);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.8s ease;
    box-shadow: 0 5px 15px rgba(74, 55, 40, 0.1);
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(74, 55, 40, 0.2);
    animation: bounce 0.6s ease-in-out;
}

.card-body {
    padding: 25px;
}

.card-title {
    color: var(--deep-brown);
    font-weight: 700;
    margin-bottom: 15px;
}

.card-text {
    color: var(--charcoal-black);
    line-height: 1.6;
}

/* Images de carte */
.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Boutons */
.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--heart-red) 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(224, 120, 86, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--heart-red) 0%, var(--sunset-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    animation: heartbeat 0.6s ease;
}

.btn-warning {
    background: linear-gradient(135deg, var(--golden-brown) 0%, var(--warm-amber) 100%);
    border: none;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--warm-amber) 0%, var(--golden-brown) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(139, 105, 20, 0.4);
    animation: pawPulse 0.6s ease;
}

.btn-outline-primary {
    border: 2px solid var(--sunset-orange);
    color: var(--sunset-orange);
}

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

.btn-outline-success {
    border: 2px solid var(--grass-green);
    color: var(--grass-green);
}

.btn-outline-success:hover {
    background-color: var(--grass-green);
    border-color: var(--grass-green);
    transform: translateY(-2px);
}

/* Formulaire */
form {
    border-radius: 20px;
    background-color: var(--soft-beige);
    box-shadow: 0 8px 25px rgba(74, 55, 40, 0.1);
    padding: 35px;
    animation: slideInFromRight 0.8s ease;
}

.form-label {
    color: var(--deep-brown);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border-radius: 15px;
    border: 2px solid var(--warm-amber);
    background-color: var(--cream-white);
    color: var(--charcoal-black);
    transition: all 0.3s ease;
    padding: 12px 15px;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 0.3rem rgba(224, 120, 86, 0.2);
    transform: scale(1.02);
    background-color: white;
}

.form-control::placeholder {
    color: #999;
}

/* Accord FAQ */
.accordion-button {
    background-color: var(--soft-beige);
    color: var(--deep-brown);
    border: 2px solid var(--warm-amber);
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--golden-brown), var(--warm-amber));
    color: white;
    box-shadow: none;
    animation: slideInFromLeft 0.4s ease;
}

.accordion-button:focus {
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 0.25rem rgba(224, 120, 86, 0.25);
}

.accordion-body {
    background-color: var(--cream-white);
    color: var(--charcoal-black);
    border: 2px solid var(--warm-amber);
    border-top: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal-black) 100%) !important;
    color: var(--cream-white);
    padding: 50px 0 20px;
    animation: slideInFromLeft 0.8s ease;
}

footer h5 {
    color: var(--sunset-orange);
    font-weight: 700;
    margin-bottom: 15px;
    animation: slideInFromLeft 0.8s ease 0.2s both;
}

footer a {
    color: var(--soft-beige);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: var(--heart-red);
    transform: translateX(5px);
    animation: wiggle 0.4s ease;
}

footer hr {
    border-color: rgba(255, 248, 243, 0.2);
    margin: 30px 0;
}

/* Sections de contenu */
section {
    animation: fadeInUp 1s ease;
}

section h2 {
    color: var(--deep-brown);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--heart-red));
    border-radius: 2px;
    animation: shimmer 1.5s infinite;
    animation-delay: 0s;
}

section h3 {
    color: var(--charcoal-black);
    font-weight: 600;
}

/* Images / SVG */
img, svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

img:hover, svg:hover {
    filter: drop-shadow(0 6px 16px rgba(224, 120, 86, 0.3));
    transform: scale(1.05);
}

/* Badge et tags */
.badge {
    background: linear-gradient(135deg, var(--sunset-orange), var(--heart-red));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    animation: fadeInUp 0.6s ease;
}

/* Listes */
.list-unstyled li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.list-unstyled li:hover {
    transform: translateX(8px);
    animation: slideInFromLeft 0.4s ease;
}

/* Témoignages */
.testimonial {
    border-left: 5px solid var(--sunset-orange);
    padding-left: 20px;
    background-color: var(--cream-white);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateX(10px);
    border-left-color: var(--heart-red);
    animation: slideInFromLeft 0.4s ease;
}

/* Filtre d'articles */
.filter-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 25px;
    margin: 5px;
    font-weight: 600;
}

.filter-btn.active {
    animation: pawPulse 0.6s ease;
    background: linear-gradient(135deg, var(--golden-brown), var(--warm-amber)) !important;
}

.filter-btn:hover {
    animation: bounce 0.6s ease;
    transform: scale(1.1);
}

/* Articles*/
.article-card {
    animation: fadeInUp 0.8s ease;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.article-card.hidden {
    display: none;
}

.article-card:hover {
    animation: bounce 0.6s ease;
}

/* Barres de progression */
.progress {
    background-color: var(--soft-beige);
    border-radius: 15px;
    height: 25px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, var(--sunrise-orange), var(--heart-red)) !important;
    animation: shimmer 2s infinite;
}

/* Menu de sélection */
.nav-tabs {
    border-bottom: 3px solid var(--warm-amber);
}

.nav-tabs .nav-link {
    color: var(--charcoal-black);
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-tabs .nav-link:hover {
    color: var(--sunset-orange);
    border-bottom-color: var(--sunset-orange);
    animation: wiggle 0.4s ease;
}

.nav-tabs .nav-link.active {
    background-color: var(--cream-white);
    color: var(--heart-red);
    border-bottom-color: var(--heart-red);
    animation: slideInFromLeft 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    form {
        padding: 20px;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .card {
        margin-bottom: 20px;
    }

    .card:hover {
        transform: translateY(-10px);
    }

    footer {
        padding: 30px 0 15px;
    }
}

/* Animation au scroll */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Images de fond héro */
.hero-bg-cat {
    background: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1200&h=600&fit=crop&crop=center') no-repeat center/cover,
                linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal-black) 50%, var(--forest-dark) 100%) !important;
    background-size: cover, 100% 100%;
    background-position: center, center;
    min-height: 500px;
    position: relative;
}

.hero-bg-cat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-bg-cat .container {
    position: relative;
    z-index: 2;
}

.hero-bg-contact {
    background: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1200&h=600&fit=crop&crop=center') no-repeat center/cover,
                linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal-black) 50%, var(--forest-dark) 100%);
    background-size: cover, 100% 100%;
    background-position: center, center;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-bg-contact .container {
    position: relative;
    z-index: 2;
}

.hero-bg-dog {
    background: url('https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=1200&h=600&fit=crop&crop=center') no-repeat center/cover,
                linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal-black) 50%, var(--forest-dark) 100%);
    background-size: cover, 100% 100%;
    background-position: center, center;
    min-height: 500px;
    position: relative;
}

.about-hero {
    background: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1200&h=600&fit=crop&crop=center') no-repeat center/cover,
                linear-gradient(135deg, var(--deep-brown) 0%, var(--charcoal-black) 50%, var(--forest-dark) 100%);
    background-size: cover, cover;
    background-position: center center;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1,
.about-hero p {
    color: white;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.hero-bg-dog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Footer background */
.footer-bg {
    background: url('https://picsum.photos/1200/400?random=2') no-repeat center/cover;
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.footer-bg .container {
    position: relative;
    z-index: 2;
}

/* Galerie d'images */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.image-card {
    background: var(--cream-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(74, 55, 40, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.image-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 15px 40px rgba(224, 120, 86, 0.25);
    animation: bounce 0.6s ease-in-out;
}

.image-card img,
.image-card svg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-card-content {
    padding: 15px;
    text-align: center;
}

.image-card-title {
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 8px;
}

.image-card-desc {
    font-size: 0.9rem;
    color: var(--charcoal-black);
    opacity: 0.8;
}

/* Image circulaire avec bordure */
.image-circular {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--sunset-orange);
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(224, 120, 86, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    animation: fadeInUp 0.8s ease;
}

.image-circular:hover {
    border-color: var(--heart-red);
    transform: scale(1.1) rotateZ(-5deg);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

/* Images SVG améliorées */
svg {
    max-width: 100%;
    height: auto;
}

.svg-icon-sm {
    width: 60px;
    height: 60px;
}

.svg-icon-md {
    width: 100px;
    height: 100px;
}

.svg-icon-lg {
    width: 150px;
    height: 150px;
}

/* Réseau d'images */
.image-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

.image-showcase img,
.image-showcase svg {
    max-width: 120px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.image-showcase img:hover,
.image-showcase svg:hover {
    transform: scale(1.15) rotateZ(5deg);
    filter: drop-shadow(0 8px 16px rgba(224, 120, 86, 0.4));
}

/* Conteneur pour images de services */
.service-image-container {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--soft-beige), var(--cream-white));
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-image-container:hover {
    background: linear-gradient(135deg, var(--cream-white), var(--soft-beige));
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(224, 120, 86, 0.2);
}

.service-image-container img,
.service-image-container svg {
    max-width: 150px;
    height: auto;
    display: inline-block;
    margin-bottom: 15px;
}

/* Responsive pour images */
@media (max-width: 768px) {
    .hero-bg-cat,
    .hero-bg-dog {
        background-size: 80% auto, 100% 100%;
        min-height: 350px;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .image-circular {
        width: 120px;
        height: 120px;
    }
    
    .service-image-container img,
    .service-image-container svg {
        max-width: 120px;
    }
}

/* Bouton WhatsApp flottant */
.whatsapp-wrapper {
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    z-index: 1005 !important;
    width: auto !important;
    height: auto !important;
    pointer-events: none !important;
}

.whatsapp-button {
    position: fixed !important;
    top: auto !important;
    left: auto !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    transition: all 0.3s ease !important;
    z-index: 1007 !important;
    animation: slideInFromRight 0.6s ease, pulse-whatsapp 2s ease-in-out infinite !important;
    border: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.whatsapp-button svg {
    width: 28px !important;
    height: 28px !important;
    display: block !important;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%) !important;
    transform: scale(1.15) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7) !important;
}

.whatsapp-button:active {
    transform: scale(0.95) !important;
}

/* Message WhatsApp */
.whatsapp-message {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background-color: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 500;
    z-index: 998;
    white-space: nowrap;
    opacity: 0;
    animation: slideInUp 0.5s ease forwards;
    pointer-events: none;
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 0px solid transparent;
    border-top: 8px solid white;
}

.whatsapp-message.active {
    opacity: 1;
    animation: slideInUp 0.5s ease forwards, fadeInOut 4s ease-in-out forwards;
}

/* Animation pulse pour le bouton */
@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
}

/* Animation fade in/out pour le message */
@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Animation slide in up */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
        background: #25D366 !important;
    }
    
    .whatsapp-button:hover {
        background: #20ba5a !important;
    }
    
    .whatsapp-button svg path {
        fill: white !important;
    }
}