.contact-section {
    background: #f8f9fa;
}

.contact-form-wrapper {
    border-radius: 12px;
}

.contact-info {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.btn-primary {
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.about-modern {
    background: #f9fbfd;
    padding: 100px 0;
}

.subtitle {
    display: inline-block;
    font-weight: 600;
    color: #0072ff;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.about-img-wrapper {
    position: relative;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-card h4 {
    margin: 0;
    font-weight: 700;
}

.floating-card p {
    margin: 0;
    font-size: 14px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 20px;
    color: #0072ff;
}

.btn-modern {
    display: inline-block;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-modern:hover {
    opacity: 0.9;
}

.pricing-modern {
    background: #f8f9fa;
    padding: 100px 0;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    position: relative;
    height: 100%;
}

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

.plan-name {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #0072ff;
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid #0072ff;
    color: #0072ff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #0072ff;
    color: #fff;
}

.btn-gradient {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.featured {
    border: 2px solid #0072ff;
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #0072ff;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 20px;
}

.clients-modern {
    background: #f8f9fa;
    padding: 100px 0;
}

.client-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.client-box img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.4s;
}

.client-box:hover {
    transform: translateY(-8px);
}

.client-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-modern {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-modern p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #38bdf8;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #38bdf8;
    color: #fff;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background: #38bdf8;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 14px;
}

/* Animation Hero Texte */
.hero-content-wrapper h1 {
    animation: slideInLeft 1s ease forwards;
}

.hero-content-wrapper p {
    animation: slideInLeft 1.2s ease forwards;
}

.hero-image {
    animation: floatImage 4s ease-in-out infinite;
}

/* Keyframes */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-card {
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.section-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.header.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.single-feature {
    transition: 0.4s;
}

.single-feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.single-feature .icon {
    transition: 0.4s;
}

.single-feature:hover .icon {
    transform: rotateY(180deg);
}

/*Boutique*/
/* Hero boutique */
.hero-boutique {
    background: url('assets/img/hero/hero-5/hero-bg.svg') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.hero-boutique h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-boutique p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Boutons filtres */
.category-filter {
    text-align: center;
    margin-bottom: 50px;
}

.category-filter button {
    border: none;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 50px;
    background: #f0f0f0;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.category-filter button.active,
.category-filter button:hover {
    background: #0072ff;
    color: #fff;
}

/* Cartes produits */
.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.4s;
    text-align: center;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h5 {
    margin: 15px 0 10px;
    font-weight: 600;
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    padding: 0 10px;
}

.product-card .btn {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.product-card .btn:hover {
    opacity: 0.9;
}

/* Animation visible */
.section-visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    transition: 0.6s ease-out;
}

/* Footer simple */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}


/* ================= Boutique DevXMali ================= */

.product-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-item .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.product-item .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-item .card-img-top {
    height: 230px;
    object-fit: cover;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #3763eb;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4d4d;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.product-actions {
    margin-top: 15px;
}

.section-title {
    margin-bottom: 50px;
}

