/* Couleurs personnalisées inspirées de l'image */
:root {
    --primary-teal: #2AABB4;
    --dark-teal: #1B6D75;
    --light-teal: #7ED3DB;
    --very-light-teal: #C5E8EB;
    --dark-text: #0A3641;
    --accent: #F3E03B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1 {font-size: 34px; font-family: 'Segoe UI';}

.bg-primary-teal {
    background-color: var(--primary-teal);
}

.bg-dark-teal {
    background-color: var(--dark-teal);
}

.bg-light-teal {
    background-color: var(--light-teal);
}

.bg-very-light-teal {
    background-color: var(--very-light-teal);
}

.bg-accent {
    background-color: var(--accent);
}

.text-primary-teal {
    color: var(--primary-teal);
}

.text-dark-teal {
    color: var(--dark-teal);
}

.text-dark {
    color: var(--dark-text);
}

.border-primary-teal {
    border-color: var(--primary-teal);
}

.hover-teal:hover {
    background-color: var(--dark-teal);
    transition: all 0.3s ease;
}

.header-shadow {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-top {
    height: 110px;
}

.nav-link {
    position: relative;
    padding-bottom: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-teal);
    transition: width 0.3s ease;
}

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

.hero-gradient {
    background: linear-gradient(to bottom, #ffffff, rgb(230 231 232));
}

/* Styles pour les cartes de services */
.service-card {
    border: 1px solid #eef0f2;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 1rem;
}

/* Styles pour la section expertise */
.expertise-card {
    transition: all 0.3s ease;
    border: 1px solid #eef0f2;
}

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

/* Styles pour la section méthodologie */
@keyframes pulse-circle {
    0% {
        box-shadow: 0 0 0 0 rgba(42, 171, 180, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(42, 171, 180, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(42, 171, 180, 0);
    }
}

.methode-step:hover .step-number {
    animation: pulse-circle 1.5s infinite;
}

/* Styles pour la section tarifs */
.pricing-card {
    transition: all 0.3s ease;
}

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

/* Styles pour les boutons personnalisés */
.btn-white-outline {
    background-color: white;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background-color: var(--primary-teal);
    color: white;
}

.btn-devis {
    background-color: white;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.btn-devis:hover {
    background-color: var(--primary-teal);
    color: black;
    border-color: var(--primary-teal);
}

/* Styles pour les éléments de formulaire */
input:focus, 
textarea:focus, 
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 171, 180, 0.2);
    border-color: var(--primary-teal);
}

/* Styles pour le bouton de retour en haut */
#back-to-top {
    opacity: 0;
    visibility: hidden;
    z-index: 50;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-5px);
}

section#accueil{
    padding-top:180px;
}

section#services,
section#expertise,
section#methode,
section#tarifs,
section#zone,
section#contact
{
    padding-top:130px;
}

/*corr tel footer*/
svg.tel-svg-footer.w-5.h-5.text-light-teal.mr-2.mt-1.flex-shrink-0 {
	display: inline-block;
}
span.text-gray-300.tel-footer {
    vertical-align: bottom;
}

/*corr menu mobile*/
header {
    padding-bottom: 0;
    height: 86px;
    background: #fff;
}
.py-3.space-y-3.bg-very-light-teal {
    padding: 40px;
}

/* modification du gris */
.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(244 245 246)!important;
}

@media (max-width: 600px) {
    h1.titre {
        font-size: 30px;
    }
}
@media (max-width: 400px) {
    h1.titre {
        font-size: 24px;
    }
}
@media (max-width: 360px) {
    h1.titre {
        font-size: 20px;
    }
}
@media (max-width: 290px) {
    h1.titre {
        font-size: 16px;
    }
}
