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

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%),
                radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 136, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 204, 102, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 136, 0, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 8s ease-in-out infinite;
}

/* Page Container */
.page-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Home Section */
.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.home-section .second-logo {
   width: 100%;
   height: 100vh;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
}

/* Overlay pour améliorer la lisibilité si nécessaire */
.home-section::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.2);
   z-index: 2;
   pointer-events: none;
}

/* Contenu centré au-dessus de la vidéo */
.home-section .container {
   position: relative;
   z-index: 3;
   text-align: center;
   color: #ffffff;
}

/* Left Section */
.left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.left-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(0, 128, 128, 0.5), transparent);
}

/* Right Section */
.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.right-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 165, 0, 0.5), transparent);
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.container {
    text-align: center;
    max-width: 650px;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.85);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 136, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.logo {
    width: 140px;
    height: auto;
    margin-bottom: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

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

h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    background: linear-gradient(90deg, #00ff88, #ff8800, #00cc66, #ff6600, #00ff88);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    animation: gradientShift 4s ease-in-out infinite;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

p {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    line-height: 1.7;
    color: #ffffff;
    font-weight: 400;
}

.input-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* CTA group below paragraph */
.cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-decoration: none;
    background: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.whatsapp-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 ease;
}

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

.whatsapp-btn .wa-icon {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    flex-shrink: 0;
}

/* Contact Information */
.contact-info {
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: #ff4444;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.contact-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.25s ease;
    line-height: 1.4;
}

.contact-value:hover {
    color: #ff4444;
}

.contact-value:hover {
    color: #00ff88;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

.whatsapp-btn:active {
    transform: translateY(0);
}

input {
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #e0e0e0;
    min-width: 280px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    font-weight: 400;
}

input:focus {
    outline: none;
    border-color: #00ff88;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

input::placeholder {
    color: #888;
}

button {
    padding: 18px 35px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #ff6600, #ff8800);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.4);
    min-width: 140px;
    letter-spacing: 0.5px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 136, 0, 0.6);
    background: linear-gradient(45deg, #ff8800, #ff6600);
}

button:active {
    transform: translateY(0);
}

.note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    opacity: 0.8;
}

/* Centrage et style WhatsApp */
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 0 0;
}

.whatsapp-center {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.whatsapp-center i {
  font-size: 2.5rem;
  color: #25d366;
}

.whatsapp-center:hover {
  color: #25d366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        align-items: center;
    }
    
    input {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }
    
    button {
        max-width: 300px;
    }
    
    .logo {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    input, button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Loading animation for better UX */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* One-page enhancements */
html {
	scroll-behavior: smooth;
}

/* Offset natif pour les ancres sous une navbar fixe */
.page-container,
.about-section,
.steps-section,
.bottom-section,
.contact-section {
	scroll-margin-top: 90px;
}

/* Reveal-on-scroll */
.reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
	opacity: 1;
	transform: none;
}

/* Scroll snap lite pour confort (non bloquant) */
body {
	scroll-snap-type: y proximity;
}

.page-container,
.about-section,
.steps-section,
.bottom-section,
.contact-section {
	scroll-snap-align: start;
}

/* Success state */
.success {
    color: #00ff88;
    animation: successPulse 0.5s ease-in-out;
}

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

/* Logo Display */
.logo-display {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-display h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(90deg, #008080, #ffa500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 3px;
}

.second-logo {
    width: 100%;
    height: 100%;
    max-height: 100vh;   
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.second-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Logo Placeholder (kept for future use) */
.logo-placeholder {
    text-align: center;
}

.logo-placeholder h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff8800, #ff6600);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-placeholder p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.placeholder-logo {
    width: 150px;
    height: 150px;
    border: 3px dashed rgba(255, 136, 0, 0.5);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: rgba(255, 136, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.placeholder-logo:hover {
    border-color: rgba(255, 136, 0, 0.8);
    background: rgba(255, 136, 0, 0.2);
    transform: scale(1.05);
}

.placeholder-logo span {
    font-size: 3rem;
    color: rgba(255, 136, 0, 0.7);
    margin-bottom: 0.5rem;
}

.placeholder-logo p {
    color: rgba(255, 136, 0, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Two Sections */
@media (max-width: 768px) {
    .page-container {
        flex-direction: column;
    }
    
    .left-section,
    .right-section {
        padding: 1rem;
    }
    
    .left-section::after,
    .right-section::before {
        display: none;
    }
    
    .container {
        margin: 1rem 0;
    }
    
    .whatsapp-btn {
        min-width: 200px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .whatsapp-btn .wa-icon {
        width: 20px;
        height: 20px;
    }
    
    .contact-item {
        min-width: 250px;
        padding: 10px 14px;
    }
    
    .contact-info {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .footer-content {
        padding: 0.8rem 1rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    .page-container {
        padding-bottom: 70px;
    }
}

/* Overrides: remove background only for the left (second logo) container */
.left-section .container {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(15px) !important;
    max-width: 800px !important;
    padding: 4rem !important;
    border-radius: 30px !important;
}

.left-section .container::before {
    content: none !important;
}

/* Home section specific overrides */
.home-section .container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    max-width: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.home-section .container::before {
    content: none !important;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.85rem;
    text-align: center;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.lien{
    color: #b0b0b0;
}

/* Adjust page container to account for footer */
.page-container {
    padding-bottom: 80px;
}

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex: 3;
    justify-content: flex-start;
}

.nav-logo-img {
    width: 20%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    filter: contrast(1.1) brightness(1.05);
}

.nav-logo-img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.nav-link:active {
    transform: translateY(0);
}

.nav-link.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        
    }
    
    .nav-logo-img {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .nav-container {
padding-right: 20%;    }
.mb{
}
        
}

/* Adjust page container to account for navbar */
.page-container {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Section Display Management */
.about-section,
.steps-section,
.bottom-section,
.contact-section {
    display: none;
}

.home-section {
    display: block;
}

/* About Page Styles */
.about-section {
    background: #ff8800 !important;
    padding: 1rem 2rem;
    text-align: center;
    color: #ffffff;
    display: none;
}

.about-section h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-section p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Section */
.steps-section {
    background: #0d2b2b;
    padding: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}

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

.step-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
}

.step-image:hover { transform: none; }

/* Assombrir l'image avec un dégradé pour améliorer la lisibilité du texte */
.step-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.40) 100%);
    pointer-events: none;
}

.step-img {
    width: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.05) brightness(0.95);
}

.step-overlay {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    color: #ff8800;
    font-size: clamp(1rem, 3vw, 3.25rem);
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 4px 14px rgba(0,0,0,0.5);
    padding: 0.15rem 0.35rem;
    background: transparent;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    text-align: center;

}

.step-content p {
    color: #e8f4f4;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.step-content ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0 0 0.75rem 0;
}

.step-content li {
    color: #e6f0f0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.step-content li:before { display: none; }

/* Alignements et respirations pour coller à l'exemple */
.steps-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.steps-grid {
    row-gap: 2rem;
}

.step-item { align-items: flex-start; }
.step-content { text-align: left; }

/* Bottom Section */
.bottom-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #18494b;
    padding: 0;
    min-height: 60vh;
}

.content-grid {
    display: flex;
    width: 100%;
    height: 100%;
}

.content-left, .content-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.content-block img {
    width: 95%;
    max-width: 700px;
    aspect-ratio: 2/1.3;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}

.content-block h3, .content-block p {
    color: #fff;
    text-align: left;
}

@media (max-width: 900px) {
    .content-grid {
        flex-direction: column;
    }
    .content-left, .content-right {
        min-height: 200px;
    }
    .content-block img {
        width: 100%;
        max-width: 100%;
        aspect-ratio: unset;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section h1 {
        font-size: 2.5rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
    }
    
    .step-overlay {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .step-img { height: 300px; }
}

@media (max-width: 480px) {
    .about-section, .steps-section, .bottom-section {
        padding: 2rem 1rem;
    }
    
    .about-section h1 {
        font-size: 20px;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section Styles */
.contact-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #d65d0e;
  padding: 5rem 4rem 2rem 4rem;
  min-height: 70vh;
  gap: 2rem;
  position: relative;
}

.contact-info {
  flex: 1;
  max-width: 400px;
  font-size: 1.2rem;
  color: #fff;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 700;
}

.social-link-center {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 4.5rem;
}

.whatsapp-center {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.whatsapp-center i {
  font-size: 2.5rem;
  color: #25d366;
}

.whatsapp-center:hover {
  color: #25d366;
}

.message-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-left: auto;
}

.message-form p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.message-form input,
.message-form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 0.7rem 0.5rem;
  margin-bottom: 1.2rem;
  border-radius: 0;
  outline: none;
  width: 100%;
  resize: none;
  font-weight: 400;
}
.message-form input::placeholder,
.message-form textarea::placeholder {
 color: rgba(255, 255, 255, 0.774);
}
.message-form button {
  align-self: flex-end;
  background: #ffffff;
  color: #d65d0e;
  border: 2px solid #ffffff;
  padding: 0.7rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.message-form button:hover {
  background: #ffffff;
  color: #E4405F;
}

@media (max-width: 1100px) {
  .contact-section {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .social-link-center {
    margin: 2rem 0;
    align-items: flex-start;
  }
  .message-form {
    margin-left: 0;
  }
}
/* Instagram Logo Styling */
.whatsapp-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.whatsapp-logo:hover {
    transform: scale(1.1);
}
.text-l{
   text-align: left;
}
.t1{
    margin-top: 8%;
}
.t11{
    margin-top: 8%;
}
@media screen {
    .t11{
      font-size: 10px; /* Taille de police des anciens h2 */
    }
}
 .title {
      font-size: 22px; /* Taille de police des anciens h2 */
      font-weight: bold;
      margin-top: 20px;
      text-align: left;
    }
     .title2 {
      font-size: 25px; /* Taille de police des anciens h2 */
      margin-top: 20px;
      text-align: left;
    }