/* style.css - Marcoservices SARL */

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%);
    color: white;
    padding: 100px 0;
    margin-bottom: 30px;
}

.hero-img {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 30px;
}

/* Cartes de services */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

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

/* Cartes services financiers */
.financial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 4px solid transparent;
}

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

/* Icônes financières */
.financial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.orange-money {
    background: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
}

.mtn-money {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
}

.express-union {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* Badges de service */
.service-badge {
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    font-size: 0.9rem;
}

.orange-bg {
    background-color: #ff6600;
}

.mtn-bg {
    background-color: #ffcc00;
    color: #000;
}

.eu-bg {
    background-color: #28a745;
}

/* Icônes */
.icon-bg {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0d6efd;
    font-size: 28px;
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: #1e2a3a;
    color: #adb5bd;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: white;
}

/* Boutons */
.btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
}

/* Badge Orange */
.orange-badge {
    background-color: #ff6600;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Badge Bilingue */
.bilingual-badge {
    background-color: #198754;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Sections */
section {
    padding: 60px 0;
}

/* Titres de section */
.section-title {
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

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

/* Carte Canal+ */
.canalplus-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
}

/* Animations supplémentaires */
.financial-card {
    animation: fadeInUp 0.6s ease-out;
}

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