@import url("https://fonts.googleapis.com/css2?family=Varela+Round");
@import url("https://use.fontawesome.com/releases/v6.5.1/css/all.css");

html, body {
	height: 100%;
  width: 100%;
background-position: top 60px right 0px;
background-color: #e1e8ed;
margin-top: 4vh;
font-family: 'Open Sans', sans-serif;
}


@media (max-width: 1000px) {
  #btcalendy {
    display: none;}
  .hero{
  	height: 50vh;
  }
}

@media (min-width: 1000px) {
  #btcalendymini {
    display: none;}
  .hero{
  	height: 90vh;
  }
}


p{
	font-size: 10pt;
}

h3,
h4 {
	margin: 0;
}

h5{
	font-size: large;
	text-align: center;
	align-items: center;
}



body {
            font-family: font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            background: #e1e8ed;
        }

								/**Barre de Menu**/

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        
        /* === HEADER ET NAVIGATION === */
        header {
            background: linear-gradient(135deg, #2c5f7c 0%, #4a90b8 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo img {
            height: 40px;
            width: auto;
            margin-right: 10px;
            border-radius: 5px;
        }
        
        .logo-text {
            font-size: 1.5rem;
        }
        
        /* Version mobile du logo */
        @media (max-width: 768px) {
            .logo img {
                height: 35px;
                margin-right: 8px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
        }
        
        /* === MENU DESKTOP === */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 0.3rem 0.5rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        
        /* === BOUTON HAMBURGER === */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            border-radius: 5px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }
        
        /* Animation du hamburger vers X */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* === MENU MOBILE COULISSANT === */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: linear-gradient(180deg, #2c5f7c 0%, #4a90b8 100%);
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            padding-top: 80px;
            box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu ul {
            list-style: none;
            padding: 0;
        }
        
        .mobile-menu li {
            margin: 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .mobile-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1.5rem 2rem;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .mobile-menu a:hover {
            background: rgba(255,255,255,0.1);
            padding-left: 2.5rem;
        }
        
        .mobile-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: white;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu a:hover::before {
            transform: scaleY(1);
        }
        
        /* === OVERLAY === */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* === MEDIA QUERIES === */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .content {
                padding: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .mobile-menu {
                width: 100%;
                right: -100%;
            }
            
            .hero {
                padding: 5rem 2rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
        }
        
        /* === ANIMATIONS D'ENTRÉE === */
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .mobile-menu.active li {
            animation: slideInRight 0.4s ease forwards;
        }
        
        .mobile-menu.active li:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu.active li:nth-child(2) { animation-delay: 0.2s; }
        .mobile-menu.active li:nth-child(3) { animation-delay: 0.3s; }
        .mobile-menu.active li:nth-child(4) { animation-delay: 0.4s; }
        .mobile-menu.active li:nth-child(5) { animation-delay: 0.5s; }
        .mobile-menu.active li:nth-child(6) { animation-delay: 0.6s; }




                              /**HERO**/

                               * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Variables CSS pour faciliter les modifications */
        :root {
            --primary-color: #2c5f7c;
            --secondary-color: #4a90b8;
            --accent-color: #ff9912;
            --text-light: #ffffff;
            --text-dark: #333333;
            --gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            --hero-padding: 80px 20px;
            --border-radius: 15px;
            --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        

        /* Section Hero */
        .hero {
            background: var(--gradient-bg);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: var(--hero-padding);
        }
/* Masquer la barre de scroll sur tous les navigateurs */
        .hero {
            /* Firefox */
            scrollbar-width: none;
            /* Internet Explorer et Edge */
            -ms-overflow-style: none;
        }

        /* WebKit (Chrome, Safari, Edge moderne) */
        .hero::-webkit-scrollbar {
            display: none;
        }
        /* Correction pour mobile */
        @media (max-width: 768px) {
            .hero {
                min-height: auto; /* Hauteur auto pour éviter les débordements */
                min-height: 100svh; /* Support des nouvelles unités viewport */
                align-items: flex-start;
                justify-content: center;
                padding: 60px 20px 80px 20px; /* Plus d'espace en bas */
                overflow-y: auto; /* Permet le scroll si nécessaire */
            }
        }

        /* Effet de particules flottantes */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

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

        .hero-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            color: var(--text-light);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-badge::before {
            content: "🏠";
            margin-right: 8px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.8;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--accent-color);
            color: var(--text-dark);
            box-shadow: var(--box-shadow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .hero-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            background: linear-gradient(45deg, #f0f8ff, #e6f3ff);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            font-size: 3rem;
            color: var(--primary-color);
        }

        .feature-cards {
            position: absolute;
            top: -60px;
            right: -60px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .feature-card {
            background: rgba(255,255,255,0.9);
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            color: var(--text-dark);
            font-size: 0.9rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            animation: slideIn 0.6s ease forwards;
            opacity: 0;
        }

        .feature-card:nth-child(1) { animation-delay: 0.2s; }
        .feature-card:nth-child(2) { animation-delay: 0.4s; }
        .feature-card:nth-child(3) { animation-delay: 0.6s; }

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

        .stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-color);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 5px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
                width: 100%;
                max-width: none;
                padding: 0 10px;
                align-items: stretch; /* Permet un meilleur espacement */
                min-height: calc(100vh - 140px); /* Assure l'espace pour le contenu */
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .hero-visual {
                order: -1;
                flex-shrink: 0;
            }

            .hero-content {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding-bottom: 20px;
            }

            .feature-cards {
                position: static;
                flex-direction: row;
                justify-content: center;
                margin-top: 20px;
            }

            .hero-cta {
                justify-content: center;
                margin-bottom: 20px;
            }

            .stats {
                justify-content: center;
                margin-bottom: 0;
            }

            .hero-title {
                margin-top: 20px;
            }

            .hero-image {
                min-height: 250px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --hero-padding: 40px 15px 60px 15px;
            }

            .hero {
                padding: 40px 15px 60px 15px;
                min-height: 100vh;
                overflow-y: auto;
            }

            .hero-container {
                min-height: calc(100vh - 100px);
                gap: 25px;
            }

            .feature-cards {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin: 20px 0;
            }

            .btn {
                width: 100%;
                justify-content: center;
                max-width: 280px;
                padding: 12px 24px;
            }

            .hero-title {
                font-size: 2rem;
                margin: 15px 0;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 20px;
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .hero-image {
                min-height: 200px;
                font-size: 2.5rem;
            }

            .stats {
                margin-top: 15px;
                gap: 20px;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }


                              /**Section**/

.about-section, .faq-section {
    max-width: 80%;
    margin: 50px auto;
    padding: 20px;
    margin-bottom: 50px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.about-section h2, .faq-section h2 {
    font-size: 2em;
    color: #006994; /* Teinte bleue douce */
    margin-bottom: 15px;
}
.faq-item {
    margin-top: 20px;
}

.faq-item h3 {
    font-size: 1.5em;
    color: #333;
}

.faq-item p {
    font-size: 1em;
    color: #555;
    margin-top: 5px;
    line-height: 1.6;
}


#bt2 {
	background-color: #5aa5cc;
}




							/**CARDs**/

#h2 {
	padding: 15px;
	color: #003366 ;

}

.card-container {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
	font-family: "Open sans", sans-serif;
	line-height: 1.2em;
	flex-wrap: wrap;
    margin-bottom: 10vh;
    margin-top: 5vh;
}

.card-item {
	--color: #7b6eb1;
	width: 20%;
	min-width: 18em;
	min-height: 15em;
	background-color: var(--color);
	border-radius: 10px;
	padding: 10px 5px;
	box-shadow: #3c40434d 0px 1px 2px 0px,
				#3c404326 0px 1px 3px 1px,;
	position: relative;
}

.card-item:after {
	content: "";
	position: absolute;
	top: 8px;
	left: 0px;
	z-index: 2;
	height: 80%;
	box-sizing: border-box;
	border-style: solid;
	border-color: transparent transparent transparent var(--color);
	border-width: 40px 40px 40px 30px;
	filter: drop-shadow(5px 0 4px #00000094);
	transition: filter .5s;
}  

.card-item:nth-child(2) {
	--color: #867ab8;
}

.card-item:nth-child(3) {
	--color: #9285bf;
}

.card-item:nth-child(4) {
	--color: #9e91c6;
}

.card-item:nth-child(5) {
	--color: #ada1cf;
}
.card-item:nth-child(6) {
	--color: #bbaed7;
}
.card-item:nth-child(7) {
	--color: #c9bddf;
}

.card-item:nth-child(8) {
	--color: #d7cbe7;
}


.card-layer {
	background-color: #FFF;
	border:1px solid #fff;
	border-radius: inherit;
	padding: 25px;
	box-shadow: #00000012 0px 1px 2px,
				#00000012 0px 2px 4px,
				#00000012 0px 4px 8px,
				#00000012 0px 8px 16px,
				#00000012 0px 16px 32px,
				#00000012 0px 32px 64px;
	position: relative;
	left: 5px;
	transition: left 1s;
	max-height: 50%;
	text-justify: distribute;
}

h3 {
	font-weight: 700;
	font-size: 16pt;
	text-align: left;
	color: var(--color);
	margin-left: 12px;
}

.card-item #savoir{
	display: inherit;
	color: #FFF;
	text-align: center;
	margin-top: 15px;
}

.card-item #savoir:hover{
	border-bottom-style: hidden;
}

.card-layer p{
	display: inline-block;
	width: 90%;
	color: #003366;
	font-size: 12pt;
	margin-bottom: 20px;
	max-height: 150px;
	overflow: hidden;
    text-overflow: ellipsis ".";
    white-space: pre-wrap;
    text-align: justify;
}



.card-layer img{
	width: 50px;
	height: 50px;
	color: #fff;
	background-color: var(--color);
	border-radius: 50%;
	display: grid;
	place-content: center;
	box-shadow: #00000012 0px 1px 2px,
				#00000012 0px 2px 4px,
				#00000012 0px 4px 8px,
				#00000012 0px 8px 16px,
				#00000012 0px 16px 32px,
				#00000012 0px 32px 64px;
	font-size: 14px;
	position: absolute;
	right: -15px;
	top: -15px;
	padding: 6px;
}


.card-item:hover:after{
	filter: drop-shadow(5px 0 4px #0000001a);
}

.card-item:hover .card-layer{
	left: 20px;
}
							/**TARIF CARD**/


:root {
           
            --text-white: #ffffff;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e1e8ed;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
            --border-radius: 20px;
            --transition: all 0.3s ease;
        }

        body {
            line-height: 1.6;
        }

  

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        /* Section des prix */
        .pricing-section {
            margin-bottom: 80px;
            margin-top: 12vh;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .pricing-card {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            
        }

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



        .card-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .card-subtitle {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .price-currency {
            font-size: 1.2rem;
            vertical-align: top;
        }

        .price-period {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
            color: var(--text-dark);
        }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            color: var(--success-color);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .cta-button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-white);
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(44, 95, 124, 0.3);
        }

        .cta-button.secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .cta-button.secondary:hover {
            background: var(--primary-color);
            color: var(--text-white);
        }

        /* Section informations */
        .info-section {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .info-item {
            text-align: center;
        }

        .info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), #e76f51);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .info-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .info-text {
            color: var(--primary-color);
            line-height: 1.7;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-white);
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            margin-bottom: 300px;
        }

        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 40px;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            color: var(--primary-color);
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
            padding-top: 10px;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-white);
            padding: 60px;
            border-radius: var(--border-radius);
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-cta h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .contact-cta p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(244, 162, 97, 0.3);
        }

        .contact-btn.secondary {
            background: transparent;
            color: var(--text-white);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .contact-btn.secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 60px 20px 80px;
            }

            .container {
                margin-top: -40px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: none;
            }

            .info-section, .faq-section, .contact-cta {
                padding: 30px 20px;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

         /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 60px 20px 80px;
            }

            .container {
                margin-top: -40px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: none;
            }

            .info-section, .faq-section, .contact-cta {
                padding: 30px 20px;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
        }





							/**Fomulaire de Contact**/

.contact-container {
	display: flex;
	font-family: 'Open Sans', sans-serif;
	font-size: large;
	align-items: center;
	justify-content: center;
	font-family: "Open sans", sans-serif;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 10vh;
  background-color: #E3E3E3;
}
.contact-container h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: large;
  text-align: center;
  margin-bottom: 20px;
}

.contact-rdv {
	width: 80%;
	font-family: 'Open Sans', sans-serif;
		font-size: large;
  background-color: #E3E3E3;
  margin-bottom: 50px;
}

.contact-info {
	width: 30%;
	min-width: 340px;
	font-family: 'Open Sans', sans-serif;
		font-size: large;
  background-color: #E3E3E3;
  padding-top: 30px;
}

.info-item {
  margin: 20px 20px;
}

.info-item img {
  width: 30px;
  height: 30px;
  float: left;
  margin: 0 30px;
}

.profil-card {
	position: relative;
	margin-top: 70px;
	width: 90%;
	height: 400px;
	background:#fff;
	border-radius: 20px ;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
	transition: 0.5s;	
}
.img-box{
	position: absolute;
	left: 50%;
	top: -50px;
	transform: translate(-50%);
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	transition: 0.5s;
}


.profil-card:hover {
	height: 450px;
}

.profil-card:hover .img-box{
	width: 175px;
	height: 175px;
}

.img-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profil-card .profil-content{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
}
.profil-card .profil-content .profil-detail{
	padding: 40px;
	text-align: center;
	width: 100%;
}


.profil-card .profil-content .profil-detail h2{
	font-size: 1.25em;
	font-weight: 600;
	color: #555;
	line-height: 1.2em;
}
.profil-card .profil-content .profil-detail h2 span {
	font-size: 0.75em;
	font-weight: 500;
	opacity: 0.75;
}
.profil-card .profil-content .profil-detail .profil-data{
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
}
.profil-card .profil-content .profil-detail .profil-data h3{
	font-size: 1em;
	color: #555;
	line-height: 1.2em;
	font-weight: 600;
}
.profil-card .profil-content .profil-detail .profil-data h3 span{
	font-size: 0.85em;
	font-weight: 400;
	opacity: 0.75;
}

.profil-btn button {
	cursor: pointer;
	border: none;
	width: 75%;
	height: 40px;
	font-family: 'Open sans';
	font-weight: bold;
	border-radius: 9px;
	letter-spacing: 2px;
	color: #FFF;
	border: solid;
	border-color: transparent;
	-webkit-transition: width 0.5s ;
	-o-transition: width 0.5s ;
	-moz-transition: width 0.5s ;
	transition-timing-function: ease-out;
	cursor: pointer;
	background-color: #148ecd; 	
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.profil-btn:hover button:hover {
	width: 90%;
}

 						/**Bouton Canlendy**/

#btcalendy {

	position: fixed;
	bottom: 10%;
	right: 7%;
	width: 25%;
	min-width: 400px;
	height: 7%;
	max-height: 80px ;
	font-family: 'Open sans';
	font-weight: bold;
	border-radius: 9px;
	letter-spacing: 2px;
	color: #FFF;
	border: solid;
	border-color: transparent;
	-webkit-transition: width 0.5s ;
	-o-transition: width 0.5s ;
	-moz-transition: width 0.5s ;
	transition-timing-function: ease-out;
	cursor: pointer;
	background-color: #148ecd; 	
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	z-index: 1000;
}

#btcalendy:hover {
	width: 32%;

}

#btcalendy img {
	vertical-align: middle;
	margin-right: 10px;
	max-height: 40px;
}

#btcalendymini {
	position: fixed;
	border-radius: 50%;
	width: 10em;
	height: 10em;
	bottom: 10%;
	right: 7%;
	border: solid;
	border-color: transparent;
	-webkit-transition: width 0.5s ;
	-o-transition: width 0.5s ;
	-moz-transition: width 0.5s ;
	transition-timing-function: ease-out;
	cursor: pointer;
	background-color: #148ecd;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
;
	z-index: 1000;
}

#btcalendymini img {
	margin-left: 5px;
	width: 6em;
	height: 6em;
}