/* =====================================================
   UTC MALI - Styles Principaux
   Univers Tech Communication
   ===================================================== */

/* Variables CSS */
:root {
    --primary-color: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #42A5F5;
    --secondary-color: #1a1a2e;
    --accent-color: #00BCD4;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0f0f1a;
    --bg-gradient: linear-gradient(135deg, #1565C0 0%, #0D47A1 50%, #1a1a2e 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-blue: 0 10px 40px rgba(21, 101, 192, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.section-subtitle::before {
    left: -30px;
}

.section-subtitle::after {
    right: -30px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-color);
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(21, 101, 192, 0.4);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.header.scrolled .logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 12px 20px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-white);
    border-radius: 8px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta .btn {
    padding: 12px 25px;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    padding: 30px;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-sidebar-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.mobile-sidebar-close {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 10px;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-sidebar-close:hover {
    background: var(--primary-color);
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
    color: var(--primary-light);
    padding-left: 10px;
}

.mobile-sidebar-cta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-sidebar-cta .btn {
    width: 100%;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    opacity: 0.15;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

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

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

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

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

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-white);
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, #00BCD4, #4DD0E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image {
    position: relative;
}

.hero-image-main {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image-float {
    position: absolute;
    background: var(--text-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s infinite ease-in-out;
}

.hero-float-1 {
    bottom: 30px;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-2 {
    top: 50px;
    right: -30px;
    animation-delay: 1s;
}

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

.hero-float-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-float-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-float-text {
    font-size: 12px;
    color: var(--text-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 992px) {
    .scroll-indicator {
        display: none;
    }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    position: relative;
    overflow: hidden;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #f0f0f0;
    height: 280px;
}

.about-img:first-child {
    margin-top: 40px;
}

.about-img:last-child {
    margin-top: -40px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

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

.about-experience {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-blue);
}

.about-experience-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-experience-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-subtitle {
    text-align: left;
    padding-left: 0;
}

.about-content .section-subtitle::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
}

.about-feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature-text {
    font-size: 14px;
    color: var(--text-light);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon i {
    font-size: 38px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(21, 101, 192, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =====================================================
   FORMATIONS SECTION
   ===================================================== */
.formations {
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.formations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    opacity: 0.05;
}

.formations .section-subtitle {
    color: var(--accent-color);
}

.formations .section-subtitle::before,
.formations .section-subtitle::after {
    background: var(--accent-color);
}

.formations .section-title {
    color: var(--text-white);
}

.formations .section-desc {
    color: rgba(255,255,255,0.7);
}

.formations-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.formations-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
}

.formations-axes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.formation-axe {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.formation-axe:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.formation-axe-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.formation-axe-icon i {
    font-size: 32px;
    color: var(--text-white);
}

.formation-axe-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.formation-axe-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.formation-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.formation-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.formation-item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formation-item-icon i {
    font-size: 26px;
    color: var(--text-white);
}

.formation-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.formation-item-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats {
    background: var(--bg-gradient);
    padding: 80px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    font-size: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-us {
    position: relative;
}

.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-subtitle,
.why-us-content .section-title {
    text-align: left;
}

.why-us-content .section-subtitle {
    padding-left: 0;
}

.why-us-content .section-subtitle::before {
    display: none;
}

.why-us-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.9;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-us-item:hover {
    background: var(--text-white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.why-us-item-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--bg-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
}

.why-us-item-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-us-item-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-us-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--text-white);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.why-us-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 22px;
}

.why-us-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.why-us-badge-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

/* =====================================================
   TEAM PREVIEW SECTION
   ===================================================== */
.team-preview {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-socials {
    transform: translateY(0);
}

.team-social-link {
    width: 40px;
    height: 40px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta {
    background: var(--bg-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

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

/* =====================================================
   CONTACT PREVIEW SECTION
   ===================================================== */
.contact-preview {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-card-text a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-card-text a:hover {
    text-decoration: underline;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding-top: 80px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-link i {
    font-size: 12px;
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.footer-contact-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-text a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-link {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-link:hover {
    color: var(--primary-light);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-blue);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu,
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about .container,
    .why-us .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content .section-subtitle,
    .about-content .section-title,
    .why-us-content .section-subtitle,
    .why-us-content .section-title {
        text-align: center;
    }
    
    .about-content .section-subtitle::after,
    .why-us-content .section-subtitle::after {
        display: block;
    }
    
    .about-text,
    .why-us-text {
        text-align: center;
    }
    
    .formations-axes {
        grid-template-columns: 1fr;
    }
    
    .formations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats .container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* CTA Buttons - 1 colonne */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 280px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 15px;
    }
    
    .about-experience {
        padding: 10px 18px;
    }
    
    .about-experience-number {
        font-size: 28px;
    }
    
    .about-experience-text {
        font-size: 9px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content .section-subtitle,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-subtitle {
        padding: 0 50px;
        position: relative;
    }
    
    .about-content .section-subtitle::before,
    .about-content .section-subtitle::after {
        display: inline-block;
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }
    
    .about-content .section-subtitle::before {
        left: 0;
    }
    
    .about-content .section-subtitle::after {
        right: 0;
    }
    
    .about-text {
        text-align: center;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .hero .container {
        padding-top: 20px;
    }
    
    .hero-badge {
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        margin-bottom: 30px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .hero-stat {
        padding: 12px 8px;
    }
    
    .hero-stat-number {
        font-size: 24px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    /* Services - 2 colonnes mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 26px;
    }
    
    .service-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-text {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .service-link {
        font-size: 12px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Formations - 2 colonnes et moins d'espace */
    .formations {
        padding-top: 60px;
    }
    
    .formations .section-header {
        margin-bottom: 30px;
    }
    
    .formations-intro {
        margin-bottom: 30px;
    }
    
    .formations-intro p {
        font-size: 14px;
    }
    
    .formations-axes {
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .formation-axe {
        padding: 25px 20px;
    }
    
    .formation-axe-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .formation-axe-icon i {
        font-size: 24px;
    }
    
    .formation-axe-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .formation-axe-text {
        font-size: 13px;
    }
    
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .formation-item {
        padding: 20px 12px;
    }
    
    .formation-item-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .formation-item-icon i {
        font-size: 20px;
    }
    
    .formation-item-title {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .formation-item-text {
        font-size: 11px;
    }
    
    /* Stats - reste en ligne mais plus compact */
    .stats {
        padding: 50px 0;
    }
    
    .stats .container {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 0;
    }
    
    /* Équipe - 2 colonnes mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .team-image img {
        height: 280px;
    }
    
    .team-info {
        padding: 15px 10px;
    }
    
    .team-name {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .team-role {
        font-size: 11px;
    }
    
    .why-us-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }
    
    /* Contact - 2 colonnes mobile */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .contact-card-icon i {
        font-size: 24px;
    }
    
    .contact-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .contact-card-text {
        font-size: 13px;
    }
    
    /* CTA - boutons en colonne */
    .cta {
        padding: 70px 0;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 260px;
        max-width: 90%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mobile-sidebar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .about-experience {
        padding: 8px 15px;
        bottom: 10px;
    }
    
    .about-experience-number {
        font-size: 22px;
    }
    
    .about-experience-text {
        font-size: 8px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content .section-subtitle,
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-subtitle {
        padding: 0 50px;
        position: relative;
    }
    
    .about-content .section-subtitle::before,
    .about-content .section-subtitle::after {
        display: inline-block;
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }
    
    .about-content .section-subtitle::before {
        left: 0;
    }
    
    .about-content .section-subtitle::after {
        right: 0;
    }
    
    .about-text {
        text-align: center;
    }
    
    .hero {
        padding-top: 70px;
        padding-bottom: 40px;
    }
    
    .hero .container {
        padding-top: 15px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 12px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .section-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .about-img:first-child,
    .about-img:last-child {
        margin-top: 0;
    }
    
    /* Services - 2 colonnes même sur petit mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-card {
        padding: 20px 10px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 22px;
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .service-text {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .service-link {
        font-size: 11px;
    }
    
    /* Formations */
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .formation-item {
        padding: 15px 10px;
    }
    
    .formation-item-icon {
        width: 40px;
        height: 40px;
    }
    
    .formation-item-icon i {
        font-size: 18px;
    }
    
    .formation-item-title {
        font-size: 12px;
    }
    
    .formation-item-text {
        font-size: 10px;
    }
    
    .formation-axe {
        padding: 20px 15px;
    }
    
    .formation-axe-title {
        font-size: 16px;
    }
    
    .formation-axe-text {
        font-size: 12px;
    }
    
    /* Stats */
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Équipe - 2 colonnes */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .team-image img {
        height: 220px;
    }
    
    .team-info {
        padding: 12px 8px;
    }
    
    .team-name {
        font-size: 13px;
    }
    
    .team-role {
        font-size: 10px;
    }
    
    /* Contact - 2 colonnes */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .contact-card {
        padding: 20px 10px;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-icon i {
        font-size: 20px;
    }
    
    .contact-card-title {
        font-size: 13px;
    }
    
    .contact-card-text {
        font-size: 11px;
    }
    
    /* CTA */
    .cta-title {
        font-size: 22px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-buttons .btn {
        width: 240px;
        padding: 14px 20px;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* =====================================================
   PARTNERS SECTION - ADDED
   ===================================================== */
.partners-section {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scroll-partners 40s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    background: var(--text-white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

/* Responsive partenaires */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partner-logo {
        width: 120px;
        height: 85px;
        padding: 12px;
    }
    
    .partners-track {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partner-logo {
        width: 100px;
        height: 70px;
        padding: 10px;
    }
    
    .partners-track {
        gap: 20px;
        animation-duration: 30s;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float i {
    line-height: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
