/* Variables */
:root {
    --primary-color: #df134d;
    --secondary-color: #61afcb;
    --accent-color: #61afcb;
    --dark-color: #2c3e50;
    --light-color: #ffffff;
    --gradient-1: linear-gradient(135deg, #df134d 0%, #61afcb 100%);
    --gradient-2: linear-gradient(135deg, #61afcb 0%, #df134d 100%);
    --gradient-3: linear-gradient(135deg, #df134d 0%, #61afcb 100%);
    --gradient-4: linear-gradient(135deg, #df134d 0%, #df134d 100%);
    --gradient-5: linear-gradient(135deg, #df134d 0%, #61afcb 100%);
    --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --card-shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    line-height: 1.5;
}

/* Package specific elements reset */
.package-card,
.hero-section,
.glass-card,
.feature-icon,
.btn-modern,
.badge-modern {
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
    background: var(--gradient-4);
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    opacity: 0.8;
}

.floating-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 8s infinite;
    background: var(--gradient-1);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 12s infinite;
    background: var(--gradient-2);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation: float 10s infinite;
    background: var(--gradient-3);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(0, 15px) rotate(0deg); }
    75% { transform: translate(-10px, -5px) rotate(-5deg); }
}

/* Top Banner */
.top-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    transform: translateY(-100%);
    animation: slideDown 0.5s forwards 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
    to { transform: translateY(0); }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--light-color);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.banner-link {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.banner-link:hover {
    color: var(--gradient-1);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    color: var(--gradient-1);
}

.badge-text {
    color: var(--light-color);
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--light-color);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-accent {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0.5rem;
    color: var(--light-color);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-color);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: var(--gradient-1);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-modern {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating {
    color: var(--gradient-1);
}

.rating-text {
    color: var(--light-color);
    font-size: 0.875rem;
}

/* Hero Gallery */
.hero-gallery {
    position: relative;
    z-index: 1;
}

.gallery-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.destination-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-badge, .price-badge {
    background: var(--gradient-1);
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.thumbnail {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.thumbnail-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: var(--gradient-1);
    color: var(--light-color);
    font-size: 0.875rem;
    text-align: center;
    font-weight: 500;
}

.thumbnail.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    border-color: var(--gradient-1);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-4);
    border-radius: 12px;
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

.stat-label {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-gallery {
        margin-top: 3rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .main-image {
        height: 300px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Package Cards */
.package-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.package-card:hover {
    transform: translateY(-0.75rem);
    box-shadow: var(--card-shadow-hover);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.card-body p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-modern:hover {
    transform: translateY(-2px);
}

/* Styles spécifiques aux packages pour éviter les conflits avec le footer */
.package-card .btn-primary,
.hero-section .btn-primary,
.glass-card .btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
}

.package-card .btn-primary:hover,
.hero-section .btn-primary:hover,
.glass-card .btn-primary:hover {
    background: var(--gradient-3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--gradient-2);
    border-color: transparent;
}

/* Feature Icons */
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-4);
    border-radius: 1rem;
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
}

/* Price Display */
.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 0.875rem;
    color: var(--dark-color);
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-unit {
    font-size: 1rem;
    color: var(--dark-color);
    opacity: 0.7;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    opacity: 0.8;
}

.feature-list li i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.feature-list li i.text-danger {
    color: var(--accent-color);
}

/* Section Headers */
.section-title {
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    animation: fadeIn 0.6s ease-out forwards;
}

.hero-section .text-white {
    color: var(--light-color) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-section .opacity-75 {
    opacity: 0.9 !important;
} /* ===== FOOTER MODERNE ===== */
.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Section principale */
.footer-modern .footer-main {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}

/* Logo et description */
.footer-modern .footer-brand {
    margin-bottom: 2rem;
}

.footer-modern .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-modern .footer-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-modern .footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-modern .footer-social {
    display: flex;
    gap: 1rem;
}

.footer-modern .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern .social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 19, 77, 0.3);
}

/* Sections du footer */
.footer-modern .footer-section {
    margin-bottom: 2rem;
}

.footer-modern .footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-modern .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-modern .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-modern .footer-links li {
    margin-bottom: 0.75rem;
}

.footer-modern .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-modern .footer-links a::before {
    content: '→';
    color: var(--primary-color);
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    left: -15px;
}

.footer-modern .footer-links a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-modern .footer-links a:hover::before {
    opacity: 1;
}

/* Contact dans le footer */
.footer-modern .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-modern .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}

.footer-modern .footer-contact .contact-icon {
    background: var(--primary-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(223, 19, 77, 0.3);
}

.footer-modern .footer-contact .contact-info {
    flex: 1;
}

.footer-modern .footer-contact .contact-info h6 {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.footer-modern .footer-contact .contact-info p {
    color: #bdc3c7;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.footer-modern .footer-contact .contact-info a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-modern .footer-contact .contact-info a:hover {
    color: var(--primary-color);
}

/* Section informations */
.footer-modern .footer-info {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern .info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.footer-modern .info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-modern .info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-modern .info-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-modern .info-header h6 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.footer-modern .info-content {
    color: #bdc3c7;
}

/* Horaires */
.footer-modern .schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern .schedule-item:last-child {
    border-bottom: none;
}

.footer-modern .schedule-item.emergency {
    background: rgba(255, 193, 7, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.footer-modern .schedule-day {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-modern .schedule-time {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-modern .schedule-item.emergency .schedule-time {
    color: #ffc107;
    font-weight: 600;
}

/* Certifications */
.footer-modern .certification-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-modern .certification-item:last-child {
    margin-bottom: 0;
}

.footer-modern .certification-item i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Newsletter */
.footer-modern .newsletter-text {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-modern .newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-modern .newsletter-form .form-control {
    border: none;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.footer-modern .newsletter-form .form-control::placeholder {
    color: #bdc3c7;
}

.footer-modern .newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: #ffffff;
}

.footer-modern .newsletter-form .btn {
    border: none;
    padding: 0.875rem 1.5rem;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 0 25px 25px 0;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-modern .newsletter-form .btn:hover {
    background: #b91c5c;
    transform: translateX(2px);
    box-shadow: 0 4px 15px rgba(223, 19, 77, 0.4);
}

/* Footer bottom */
.footer-modern .footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-modern .copyright-text {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
}

.footer-modern .footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-modern .bottom-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-modern .bottom-link:hover {
    color: var(--primary-color);
}

/* Bouton retour en haut */
.footer-modern .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(223, 19, 77, 0.3);
}

.footer-modern .back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-modern .back-to-top:hover {
    background: #b91c5c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(223, 19, 77, 0.4);
}

/* Responsive design pour le footer */
@media (max-width: 768px) {
    .footer-modern {
        padding: 3rem 0 0;
    }
    
    .footer-modern .footer-main {
        padding-bottom: 2rem;
    }
    
    .footer-modern .footer-info {
        padding: 2rem 0;
    }
    
    .footer-modern .footer-social {
        justify-content: center;
    }
    
    .footer-modern .footer-contact .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-modern .footer-contact .contact-icon {
        margin: 0 auto;
    }
    
    .footer-modern .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .footer-modern .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 1.5rem;
    }
    
    .footer-modern .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-modern .info-card {
        padding: 1.5rem;
    }
}

/* Animation pour les éléments du footer */
.footer-modern .footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-modern .footer-section:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-modern .footer-section:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-modern .footer-section:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-modern .info-card {
    animation: fadeInUp 0.6s ease-out;
}

.footer-modern .info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-modern .info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-modern .info-card:nth-child(3) {
    animation-delay: 0.3s;
}