/* Import de la font Coolvetica */
@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Classe para utiliser Coolvetica en uppercase */
.coolvetica-title {
    font-family: 'Coolvetica', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #333;
}

/* Tous les titres h1-h6 utilisent Coolvetica par défaut */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Coolvetica', Arial, sans-serif;
    color: #333;
}

/* Tous les liens utilisent Coolvetica */
a, .nav-link, .btn {
    font-family: 'Coolvetica', Arial, sans-serif;
}

/* Tous les paragraphes et textes utilisent Helvetica */
p, span, div:not(.coolvetica-title):not(.btn):not(.nav-link) {
    font-family: 'Helvetica', Arial, sans-serif;
}

/* Titre contact en blanc */
.hero-contact .coolvetica-title {
    color: white !important;
}

/* Couleur personnalisée pour la section who-we-serve */
.who-we-serve .text-custom {
    color: #D45E45;
    font-size: 2.5rem;
}

.who-we-serve .btn-custom {
    background-color: #D45E45;
    border-color: #D45E45;
    color: white;
}

.who-we-serve .btn-custom:hover {
    background-color: #d45e45;
    border-color: #d45e45;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 94, 69, 0.3);
    opacity: 0.9;
}

.who-we-serve .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 94, 69, 0.2);
}

.who-we-serve .card h4 {
    color: #D45E45;
}

/* Standardisation des tailles d'images pour la section who-we-serve */
.who-we-serve .main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
}

.who-we-serve .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.who-we-serve .card {
    overflow: hidden;
}

.who-we-serve .card .position-relative {
    overflow: hidden;
    border-radius: 0.375rem;
}

/* Styles pour les cartes avec overlay */
.who-we-serve .image-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.who-we-serve .image-card .card-image {
    transition: transform 0.3s ease;
}

.who-we-serve .image-card:hover .card-image {
    transform: scale(1.05);
}

.who-we-serve .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.who-we-serve .image-overlay h4 {
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
}

.who-we-serve .image-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(212, 94, 69, 0.95);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.who-we-serve .image-card:hover .image-description {
    transform: translateY(0);
}

.who-we-serve .image-card:hover .image-overlay {
    transform: translateY(-100%);
}

/* Styles pour la section nos-methodes (mêmes effets que who-we-serve) */
.nos-methodes .image-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nos-methodes .image-card .card-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.nos-methodes .image-card:hover .card-image {
    transform: scale(1.05);
}

.nos-methodes .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.nos-methodes .image-overlay h4 {
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
}

.nos-methodes .image-overlay h5 {
    color: white;
    margin: 5px 0 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    font-weight: 300;
}

.nos-methodes .image-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 94, 69, 0.95);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.nos-methodes .image-card:hover .image-description {
    transform: translateY(0);
}

.nos-methodes .image-card:hover .image-overlay {
    transform: translateY(-100%);
}

.nos-methodes .image-description ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.nos-methodes .image-description li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.nos-methodes .image-description li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Section témoignages - Carousel simple */
.testimonials-section {
    background: #D45E45;
    padding: 50px 0 75px 0;
    position: relative;
    text-align: center;
}

.testimonials-section h2 {
    color: white;
    margin-bottom: 30px;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    min-height: 150px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    transform: translateX(0);
    justify-content: center;
    align-items: center;
}

.testimonial-slide {
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    flex-shrink: 0;
    transform: scale(0.85);
    transition: all 0.5s ease;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 15px;
    color: white;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

.carousel-indicators {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    bottom: 0;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Variables CSS pour le mode clair */
:root {
    --primary-bg: #f8f9fa;
    --secondary-bg: #ffffff;
    --accent-color: #d45e45;
    --text-white: #333333;
    --text-white-50: rgba(51, 51, 51, 0.7);
    --text-white-25: rgba(51, 51, 51, 0.4);
    --yellow: #f2c217;
    --green: #17a294;
    --blue: #2452a3;
    --pink: #f2b0a6;
    --gradient-primary: linear-gradient(135deg, var(--accent-color), var(--yellow));
    --gradient-secondary: linear-gradient(135deg, var(--blue), var(--green));
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.1);
}

/* Reset et base */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    padding-top: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Padding pour les pages autres que l'accueil et les pages hero */
body:not(.home-page):not(.hero-page) {
    padding-top: 80px;
}

/* Transition smooth pour tous les éléments lors du changement de thème */
*, *::before, *::after {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Typography inspirée du Webflow */
h1 {
    font-family: 'Coolvetica', Arial, sans-serif;
    font-weight: normal;
    font-size: clamp(2.5rem, 5vw, 4.375rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

h2 {
    font-family: 'Coolvetica', Arial, sans-serif;
    font-weight: normal;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

h3 {
    font-family: 'Coolvetica', Arial, sans-serif;
    font-weight: normal;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-white);
}

p {
    color: var(--text-white-50);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    background: var(--navbar-bg) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    min-height: 70px;
}

/* Container de la navbar - alignement vertical */
.navbar .container {
    min-height: 70px;
    display: flex;
    align-items: center;
}

/* Alignement vertical des éléments navbar */
.navbar-collapse {
    align-items: center;
}

.navbar-nav {
    align-items: center;
}

/* Navbar transparente pour la page d'accueil */
.transparent-navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.transparent-navbar .container {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 50px;
    margin-top: 10px;
    padding: 0.3rem 2rem;
    transition: all 0.5s ease;
}

.transparent-navbar.scrolled {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.transparent-navbar.scrolled .container {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    transition: all 0.5s ease;
}

/* Logo styles */
.logo-img {
    max-height: 33px;
    width: auto;
    object-fit: contain;
}

/* Hero Section Fullscreen */
.hero-fullscreen {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* iOS Safari fix - usar feature detection */
@media (max-width: 768px) {
    .hero-fullscreen {
        background-attachment: scroll !important;
    }
}

/* Webkit specific fix para iOS */
@supports (-webkit-appearance: none) and (max-width: 768px) {
    .hero-fullscreen {
        background-attachment: scroll !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

/* Safari iOS specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    .hero-fullscreen {
        background: none !important;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    .hero-bg-safari {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
}

/* Animação imperceptível para forçar redraw no Safari iOS */
@keyframes safari-redraw {
    0% { opacity: 0.99; }
    100% { opacity: 1; }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    .hero-bg-safari {
        animation: safari-redraw 0.01s ease-out;
        -webkit-animation: safari-redraw 0.01s ease-out;
    }
}

/* Fix para dispositivos móveis - background-attachment: fixed causa problemas no iOS */
@media (max-width: 768px) {
    .hero-fullscreen {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        -webkit-background-size: cover !important;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        overflow: hidden;
    }
}

/* Fix específico para iPhone e dispositivos pequenos */
@media (max-width: 480px) {
    .hero-fullscreen {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 100vh !important;
        height: 100vh !important;
        /* Suporte para navegadores modernos com dynamic viewport height */
        min-height: 100dvh !important;
        height: 100dvh !important;
        -webkit-background-size: cover !important;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        overflow: hidden;
        will-change: transform;
    }
}

/* Fix específico para iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero-fullscreen {
        background-attachment: scroll !important;
        -webkit-background-size: cover !important;
        background-size: cover !important;
    }
}

/* Background padrão para a page home */
.home-page .hero-fullscreen {
    background: url('../images/tree.webp');
}

/* Background pour la page qui-sommes-nous */
.hero-page .hero-fullscreen {
    background-image: url('../images/quisommes.webp') !important;
}

/* Otimizações específicas para dispositivos móveis */
@media (max-width: 768px) {
    .home-page .hero-fullscreen {
        background: url('../images/tree.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        -webkit-background-size: cover !important;
    }
    
    .hero-page .hero-fullscreen {
        background-image: url('../images/quisommes.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        -webkit-background-size: cover !important;
    }
}

/* Fix adicional para iPhone específico */
@media (max-width: 480px) {
    .home-page .hero-fullscreen {
        background: url('../images/tree.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        -webkit-background-size: cover !important;
        width: 100% !important;
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .hero-page .hero-fullscreen {
        background-image: url('../images/quisommes.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        -webkit-background-size: cover !important;
        width: 100% !important;
        height: 100vh !important;
        min-height: 100vh !important;
    }
}

/* Solução alternativa usando pseudo-elemento para iOS */
@media (max-width: 768px) {
    .hero-fullscreen {
        background: none !important;
        position: relative;
    }
    
    .hero-fullscreen::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        z-index: -1;
    }
    
    .home-page .hero-fullscreen::after {
        background-image: url('../images/tree.webp');
    }
    
    .hero-page .hero-fullscreen::after {
        background-image: url('../images/quisommes.webp');
    }
}

/* Fix específico para Safari iOS - usar um div interno */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .hero-fullscreen {
            background: none !important;
            overflow: hidden;
        }
        
        .hero-fullscreen::after {
            position: absolute !important;
            width: 100vw !important;
            height: 100vh !important;
            background-attachment: scroll !important;
            transform: translate3d(0, 0, 0);
            -webkit-transform: translate3d(0, 0, 0);
        }
    }
}

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

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
    padding: 0;
}

.hero-fullscreen .hero-content {
    min-height: 100vh;
    z-index: 2;
    padding: 0;
    align-items: flex-start;
    padding-top: 40vh;
}

/* Otimizações do hero-content para mobile */
@media (max-width: 768px) {
    .hero-fullscreen .hero-content {
        min-height: 100vh;
        padding-top: 30vh;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen .hero-content {
        min-height: 100vh;
        height: 100vh;
        padding-top: 25vh;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center !important;
    }
}

.hero-fullscreen h1 {
    color: white !important;
}

.hero-fullscreen p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-fullscreen .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Styles pour le logo et la citation dans la hero section */
.hero-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.7));
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
        width: 95%;
    }
}

.hero-quote {
    margin-top: 2rem;
}

.quote-text {
    font-size: 1.3rem !important;
    font-style: italic;
    line-height: 1.6;
    color: white !important;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.quote-author {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-style: normal;
}

/* Styles pour la navigation transparente */
.transparent-navbar .navbar-nav .nav-link {
    color: white !important;
    font-weight: 600; /* Mettre en gras */
    padding: 0.8rem 1.2rem !important; /* Padding équilibré pour centrage vertical */
    margin: 0 0.3rem; /* Ajouter de l'espacement entre les éléments */
    letter-spacing: 2.5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.transparent-navbar .navbar-nav .nav-link:hover {
    color: #d45e45 !important;
}

.transparent-navbar .navbar-brand {
    color: white !important;
}

/* Styles pour navbar scrolled (fond noir transparent) */
.transparent-navbar.scrolled .navbar-nav .nav-link {
    color: white !important;
    font-weight: 600; /* Mettre en gras */
    padding: 0.8rem 1.2rem !important; /* Padding équilibré pour centrage vertical */
    margin: 0 0.3rem; /* Ajouter de l'espacement entre les éléments */
    letter-spacing: 2.5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.transparent-navbar.scrolled .navbar-nav .nav-link:hover {
    color: #d45e45 !important;
}

.transparent-navbar.scrolled .navbar-brand {
    color: white !important;
}

/* Forcer les couleurs Bootstrap */
.transparent-navbar .navbar-nav .nav-link:focus,
.transparent-navbar .navbar-nav .nav-link:visited,
.transparent-navbar.scrolled .navbar-nav .nav-link:focus,
.transparent-navbar.scrolled .navbar-nav .nav-link:visited {
    color: white !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* S'assurer que le hover fonctionne même avec focus et visited */
.transparent-navbar .navbar-nav .nav-link:hover,
.transparent-navbar.scrolled .navbar-nav .nav-link:hover {
    color: #f2c217 !important;
}

/* Hover pour le sélecteur de langue */
.transparent-navbar .language-selector .btn:hover,
.transparent-navbar.scrolled .language-selector .btn:hover {
    background-color: #d45e45 !important;
    border-color: #d45e45 !important;
    color: white !important;
}

.navbar-toggler {
    border-color: var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Icône de menu blanche pour la navbar transparente */
.transparent-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.transparent-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-family: 'Coolvetica', Arial, sans-serif;
    font-weight: normal;
    font-size: 1.2375rem;
    text-transform: uppercase;
    letter-spacing: 0.825px;
    padding: 0;
    display: flex;
    align-items: center;
    height: 70px;
}

.navbar-nav .nav-link {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.85rem;
    padding: 0.8rem 0.825rem !important;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Coolvetica', Arial, sans-serif;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

/* Remover borda de foco dos navlinks */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Styles pour le sélecteur de langue */
.language-selector {
    display: flex;
    align-items: center;
    height: 70px;
}

.language-selector .btn {
    font-size: 0.7425rem;
    padding: 0.4125rem 0.625rem;
    letter-spacing: 0.4125px;
    min-width: auto;
    line-height: 1.2;
}

.language-selector .dropdown-menu {
    font-size: 0.7425rem;
    min-width: 4rem;
}

.language-selector .dropdown-item {
    padding: 0.3rem 0.625rem;
    text-align: center;
}

/* Boutons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-primary);
}

.btn-outline-primary {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
}

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

.hero h1 {
    /* background: var(--gradient-primary); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--secondary-bg);
}

.card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.05);
}

.card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

/* Testimonials */
.testimonial {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

/* Statistics */
.stat-number {
    font-family: 'Coolvetica', Arial, sans-serif;
    font-size: 3rem;
    font-weight: normal;
    color: var(--accent-color);
    display: block;
}

/* Forms */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 94, 69, 0.25);
    color: var(--text-white);
}

.form-control::placeholder {
    color: var(--text-white-25);
}

.form-label {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: rgba(212, 94, 69, 0.1);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.pricing-price {
    font-family: 'Coolvetica', Arial, sans-serif;
    font-size: 4rem;
    font-weight: normal;
    color: var(--accent-color);
    margin: 1rem 0;
}

/* FAQ */
.accordion {
    background: transparent;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-white);
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 94, 69, 0.1);
    color: var(--accent-color);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-white-50);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ========================================
   FOOTER MODERNE ET PROFESSIONNEL
======================================== */

.modern-footer {
    background: #17a294;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Effet de fond décoratif */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2452a3 0%, #2452a3 50%, #2452a3 100%);
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Contenu principal du footer */
.footer-content {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Forcer la largeur égale pour toutes les sections */
.footer-section {
    min-width: 200px;
    max-width: 100%;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Section entreprise */
.company-info {
    grid-column: span 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 25px !important;
    width: auto !important;
    max-height: 25px !important;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #f2c217;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f2f2f2;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Réseaux sociaux */
.social-media {
    margin-top: 1.5rem;
}

.social-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    text-decoration: none;
    color: #f2f2f2;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #f2c217;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 194, 23, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Sections génériques */
.footer-section {
    position: relative;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
    white-space: nowrap;
    overflow: visible;
    width: auto;
    min-width: max-content;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f2c217;
    border-radius: 1px;
}

/* Navigation du footer */
.footer-nav {
    margin: 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}



.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.2rem 0;
    color: #f2f2f2;
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    color: #f2c217;
}

.nav-link span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f2f2f2;
}

/* Style spécial pour les éléments non-cliquables dans les coordonnées */
.contact-item-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.2rem 0;
    color: #f2f2f2;
    position: relative;
    cursor: default;
}

.contact-item-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    color: #f2c217;
}

.contact-item-link span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f2f2f2;
}

/* Informations de contact */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 94, 69, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1rem;
    color: #D45E45;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-text span {
    color: #f2f2f2;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-label {
    font-size: 0.8rem !important;
    color: #f2c217 !important;
    font-style: italic;
}

.contact-link {
    color: #f2f2f2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #f2c217;
}

/* Newsletter */

.newsletter-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f2f2f2;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    position: relative;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-container {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.input-container:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: #f2c217;
    box-shadow: 0 0 0 3px rgba(242, 194, 23, 0.1);
}

.email-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.email-input::placeholder {
    color: #b0b0b0;
}

.submit-btn {
    padding: 0.875rem 1rem;
    background: #f2c217;
    border: none;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 50px;
}

.submit-btn:hover {
    background: #c54d35;
    transform: translateX(-2px);
}

.submit-btn:active {
    transform: translateX(-2px) scale(0.98);
}

.btn-text {
    font-size: 0.9rem;
}

.privacy-notice {
    font-size: 0.8rem;
    color: #888888;
    line-height: 1.4;
    text-align: center;
}

/* Pied de page */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f2f2f2;
    font-size: 0.9rem;
}

.copyright-main i {
    color: #f2c217;
}

.separator {
    color: #b0b0b0;
}

.credits {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #c0c0c0;
}

.credits .fa-heart {
    color: #e74c3c;
    animation: heartbeat 2s ease-in-out infinite;
}

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

.developer-link {
    color: #f2c217;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f2c217;
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: #f2c217;
}

.legal-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 901px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .company-info {
        grid-column: span 1;
    }
    
    .quick-links {
        grid-column: span 1;
    }
    
    .contact-info {
        grid-row: 2;
        grid-column: span 1;
    }
    
    .newsletter {
        grid-row: 2;
        grid-column: span 1;
    }
    
    .footer-logo {
        height: 22px !important;
        max-height: 22px !important;
    }
}

@media (max-width: 900px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .company-info,
    .quick-links,
    .contact-info,
    .newsletter {
        grid-column: span 1;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        height: 20px !important;
        max-height: 20px !important;
    }
    
    .footer-logo-container {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 1rem;
        white-space: normal;
        min-width: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-title {
        text-align: center;
    }
    
    .nav-list {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-main {
        gap: 1rem;
    }
    
    .footer-logo {
        height: 18px !important;
        max-height: 18px !important;
    }
    
    .company-name {
        font-size: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 0.95rem;
        text-align: center;
        white-space: normal;
        min-width: auto;
        overflow: visible;
    }
    
    .contact-item {
        padding: 0.5rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        justify-content: center;
        padding: 0.5rem;
    }
    
    .input-container {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .email-input {
        border-radius: 12px 12px 0 0;
        text-align: center;
    }
    
    .submit-btn {
        border-radius: 0 0 12px 12px;
        justify-content: center;
        padding: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .separator {
        display: none;
    }
}

/* Accessibilité et focus */
.nav-link:focus,
.contact-link:focus,
.social-link:focus,
.legal-link:focus,
.developer-link:focus,
.nav-link:focus,
.contact-link:focus,
.contact-item-link:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.email-input:focus {
    outline: none;
}

.submit-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Animations d'entrée */
.footer-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amélioration du contraste pour l'accessibilité */
@media (prefers-contrast: high) {
    .modern-footer {
        background: #000000;
    }
    
    .company-description,
    .nav-link,
    .contact-text span,
    .newsletter-description {
        color: #ffffff;
    }
    
    .contact-item,
    .newsletter {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Mode réduit pour les animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .footer-section {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Utilities */
.text-accent {
    color: var(--accent-color) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Loading animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ======================================
   STYLES POUR LA PAGE CONTACT
====================================== */

/* Hero Section Contact */
.hero-contact {
    background: #d45e45;
    height: 40vh;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-contact h1,
.hero-contact .coolvetica-title {
    color: #ffffff !important;
}

.hero-contact .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-logo-contact {
    filter: brightness(0) invert(1);
}

/* Linha colorida */
.color-line {
    display: flex;
    height: 8px;
}

.color-stripe {
    flex: 1;
}

/* FAQ Typography */
.accordion-button {
    font-family: 'Coolvetica', Arial, sans-serif !important;
    text-transform: uppercase;
    font-weight: normal;
}

.accordion-body {
    font-family: 'Helvetica', Arial, sans-serif !important;
}

/* Branding Colors */
.text-custom, .btn-custom, .btn-outline-custom {
    color: #d45e45 !important;
}

.btn-custom {
    background-color: #d45e45 !important;
    border-color: #d45e45 !important;
    color: white !important;
}

.btn-outline-custom {
    border-color: #d45e45 !important;
    color: #d45e45 !important;
}

.btn-outline-custom:hover {
    background-color: #d45e45 !important;
    border-color: #d45e45 !important;
    color: white !important;
}

/* Alertes modernes */
.alert-modern {
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.alert-modern i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

/* Formulaire de contact moderne */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 94, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D45E45 0%, #c14d3a 100%);
}

.contact-form-modern .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-control-modern {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control-modern:focus {
    border-color: #D45E45;
    box-shadow: 0 0 0 0.2rem rgba(212, 94, 69, 0.1);
    background: #fff;
}

/* Boutons personnalisés */
.btn-custom {
    background: linear-gradient(135deg, #D45E45 0%, #c14d3a 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 94, 69, 0.3);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 94, 69, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid #D45E45;
    color: #D45E45;
    background: transparent;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-custom:hover {
    background: #D45E45;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 94, 69, 0.3);
}

/* Cards d'informations de contact */
.contact-info-wrapper {
    padding: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #D45E45;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-icon {
    background: linear-gradient(135deg, #D45E45 0%, #c14d3a 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-info-content h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    margin-bottom: 0.25rem;
    color: #666;
}

/* Couleur personnalisée */
.text-custom {
    color: #D45E45 !important;
}

/* Actions rapides */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Styles responsives pour le contact */
@media (max-width: 768px) {
    .hero-contact {
        min-height: 50vh;
    }
    
    .hero-contact h1 {
        font-size: 2.5rem !important;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-wrapper {
        padding: 1rem;
    }
    
    .contact-info-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .quick-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-contact h1 {
        font-size: 2rem !important;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-custom {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Styles supplémentaires pour mobile */
@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .newsletter-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .social-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .copyright-main {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .credits {
        font-size: 0.75rem;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
    
    .footer-logo {
        height: 16px !important;
        max-height: 16px !important;
    }
}
