/* Styles existants */
:root {
    --primary-blue: #1e3fac;
    --primary-orange: #f07c00;
    --orange-secondary: #e3ae29;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
    --primary-blue-rgb: 30, 63, 172;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;

}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

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

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-links li {
    position: relative;
    padding: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: inline-block;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* Mobile Navigation */
.mobile-nav-toggle {

    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    z-index: 1002;

    display: none;
    position: absolute;
    right: 0%;
    /* Centre horizontalement */
    transform: translateX(-50%);
    /* Ajuste pour le centre parfait */

    /* Centre verticalement */

    /* Ajustement fin pour le centrage vertical */


}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        /* Position initiale hors écran */
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
        /* Position visible quand actif */
    }

    .nav-links li {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }


}

/* Styles spécifiques pour iPhone SE */
@media (max-width: 375px) {
    .header-container {
        padding: 10px 0;
    }

    .logo img {
        height: 35px;
    }

    .mobile-nav-toggle {
        font-size: 1.3rem;
    }

    .nav-links {
        width: 250px;
        /* Plus petit pour iPhone SE */
    }

    .nav-links a {
        padding: 10px 0;
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Optional: Add animated background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

/* Improved Download Buttons */
.download-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    /* Increased space between buttons as requested */
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: both;
}

/* Keeping the original download button shape (rounded) */
.download-btn {
    display: flex;
    align-items: center;
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 12px 25px;
    border-radius: 30px;
    /* Keeping the original rounded shape */
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.download-btn i {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--primary-blue);
}

.download-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-btn div div {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* WhatsApp Button - keeping it consistent with download buttons */


.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-button i {
    font-size: 1.8rem;
    margin-right: 15px;
}

.whatsapp-button div {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.3rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .download-buttons {
        gap: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .download-btn,
    .whatsapp-button {
        width: 80%;
        justify-content: center;
    }
}

/* Style avec bordure en dégradé */
.gradient-btn {
    display: flex;
    align-items: center;
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.gradient-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

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

.gradient-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}


/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-blue);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-weight: 600;
}

.about-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #444;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-image img {
    width: 40%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.about-image img:first-child {
    transform: translateY(-20px) rotate(-3deg);
    z-index: 2;
}

.about-image img:last-child {
    transform: translateY(20px) rotate(3deg);
    z-index: 1;
}

.about-image img:hover {
    transform: scale(1.05) translateY(0) rotate(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
}




/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 50px;
    }

    .about-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-image {
        flex-direction: column;
        align-items: center;
    }

    .about-image img {
        width: 80%;
        margin-bottom: 20px;
    }


}






/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* App Section */


.app {
    padding: 100px 0;
    background-color: var(--white);
}

.app-section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
}

.app-section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-blue);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-text {
    flex: 1;
}

.app-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
    font-weight: 600;
}

.app-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #444;
}

.app-text p:last-child {
    margin-bottom: 0;
}

.app-image {
    flex: 1;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.app-image img {
    width: 40%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.app-image img:first-child {
    transform: translateY(-20px) rotate(-3deg);
    z-index: 2;
}

.app-image img:last-child {
    transform: translateY(20px) rotate(3deg);
    z-index: 1;
}

.app-image img:hover {
    transform: scale(1.05) translateY(0) rotate(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
}




/* Responsive adjustments */
@media (max-width: 992px) {
    .app-content {
        flex-direction: column;
        gap: 50px;
    }

    .app-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .app {
        padding: 60px 0;
    }

    .app-section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .app-text h3 {
        font-size: 1.8rem;
    }

    .app-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .app-image {
        flex-direction: column;
        align-items: center;
    }

    .app-image img {
        width: 80%;
        margin-bottom: 20px;
    }


}





/* Améliorations pour la section FAQ */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 63, 172, 0.05) 0%, rgba(240, 124, 0, 0.05) 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}



.faq-question {
    background-color: var(--white);
    padding: 22px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-blue);
    transition: background-color 0.3s;
}

.faq-item.active .faq-question {
    background-color: rgba(240, 124, 0, 0.05);
}

.faq-question:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s, color 0.3s;
    font-size: 0.9rem;
    color: var(--primary-orange);
    margin-left: 10px;
}

.faq-answer {
    background-color: var(--white);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    line-height: 1.7;
    color: #555;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 5px 25px 25px;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

.faq-more a {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-more a i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.faq-more a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-more a:hover i {
    transform: translateX(3px);
}

/* Style pour la recherche FAQ */
.faq-search {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 45px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.faq-search input:focus {
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* Style pour les onglets de catégories FAQ */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-category {
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-category.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: var(--white);
    transform: translateY(-3px);
}

.faq-category:hover:not(.active) {
    background-color: rgba(240, 124, 0, 0.1);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 5px 20px 20px;
    }

    .faq-search input {
        padding: 12px 15px 12px 40px;
    }

    .faq-category {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-right: 15px;
    width: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--primary-blue);
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.social-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.contact-form {
    flex: 1;
}

/* Mise à jour des styles du formulaire de contact */
.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: var(--primary-orange);
}

/* Download CTA Section */
.download-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: var(--white);
    text-align: center;
}

.download-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



/* Scroll to Top Button - Repositionné pour éviter conflit avec WhatsApp */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    /* Placé au-dessus du bouton WhatsApp */
    right: 30px;
    background-color: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 998;
}

.scroll-to-top:hover {
    background-color: var(--orange-secondary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Form Input Focus Styles */
.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(13, 39, 166, 0.25);
}


/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

/* Mise à jour pour correspondre à la structure HTML */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}


/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-content {
        flex-direction: column;
    }

    .app-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .download-btn,
    .whatsapp-button {
        width: 80%;
    }

    .testimonial-card {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
    }
}



.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}



a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}


/* RTL Support */
body.rtl {
    text-align: right;
}

body.rtl .header-container,
body.rtl .nav-links,
body.rtl .feature-card,
body.rtl .contact-detail,
body.rtl .footer-links {
    direction: rtl;
}

body.rtl .nav-links li {
    margin-left: 0;
    margin-right: 30px;
}

body.rtl .feature-icon,
body.rtl .contact-detail i {
    margin-right: 0;
    margin-left: 15px;
}

body.rtl .social-links {
    direction: ltr;
    /* Garder la même direction pour les icônes sociales */
}

body.rtl .download-btn i,
body.rtl .gradient-btn i,
body.rtl .whatsapp-button i {
    margin-right: 0;
    margin-left: 10px;
}