/* ============================================================
   STYLE PRINCIPAL - CABINET AZARKANE
   Version complète avec corrections mobile
   ============================================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3a9c8d;
    --primary-light: #6bc9bb;
    --primary-dark: #2d7c6e;
    --secondary: #b88598;
    --secondary-light: #d9b1be;
    --secondary-dark: #a46d84;
    --accent: #ffb74d;
    --white: #ffffff;
    --light-1: #f8f9fa;
    --light-2: #f0f3f5;
    --light-3: #e8ecef;
    --gray-1: #dee2e6;
    --gray-2: #adb5bd;
    --gray-3: #6c757d;
    --dark: #495057;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === SCROLL PROGRESS === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--secondary) 0%, 
        var(--secondary-light) 25%, 
        var(--primary-light) 50%, 
        var(--primary) 75%, 
        var(--primary-dark) 100%);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(58, 156, 141, 0.3);
    border-radius: 0 2px 2px 0;
    overflow: hidden;
}

.scroll-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.pulse-loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
}

.pulse-circle:nth-child(1) { animation-delay: 0s; }
.pulse-circle:nth-child(2) { animation-delay: 0.6s; }
.pulse-circle:nth-child(3) { animation-delay: 1.2s; }

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.preloader-text {
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 0;
    box-shadow: var(--shadow-md);
}

/* === TOP INFO BAR === */
.top-info-bar {
    background: #fff;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cabinet-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    color: var(--primary);
}

.info-item.two {
    margin-left: 50px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.logo-img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(58, 156, 141, 0.1);
}

.info-label {
    font-size: 0.8rem;
    color: var(--gray-3);
}

.ctr-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
    line-height: 1.2;
}

.info-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.2;
}

.info-value2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.fa-clock.one {
    color: var(--primary);
    font-size: large;
    font-weight: 400;
}

.top-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.call-btn, .rdv-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #fff !important;
}

.call-btn {
    background: var(--primary);
    color: var(--white);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-dark);
}

.rdv-btn {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff !important;
}

.rdv-btn i {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff !important;
}

.rdv-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

/* === MAIN NAVIGATION === */
.main-nav {
    padding: 20px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin-right: 200px;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link span {
    white-space: nowrap;
    font-size: 0.95rem;
    line-height: 1.2;
}

.nav-item:nth-child(3) .nav-link span,
.nav-item:nth-child(4) .nav-link span,
.nav-item:nth-child(5) .nav-link span {
    font-size: 0.9rem;
}

.nav-link i {
    font-size: 0.9rem;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 156, 141, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(58, 156, 141, 0.08);
    color: var(--primary);
}

.nav-link.active i {
    color: var(--primary) !important;
}

.nav-link-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width var(--transition-normal);
    opacity: 0;
}

.nav-link:hover .nav-link-underline,
.nav-link.active .nav-link-underline {
    width: 80%;
    opacity: 1;
}

/* === DROPDOWN === */
.nav-item.dropdown {
    position: relative;
    z-index: 100;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 0.8rem;
    color: var(--gray-2);
    transition: transform var(--transition-normal);
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1100;
    overflow: visible;
    border: 1px solid var(--light-2);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    border-top: 1px solid var(--light-2);
    border-left: 1px solid var(--light-2);
    z-index: 1101;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--light-2);
    position: relative;
    overflow: hidden;
    pointer-events: auto !important;
    cursor: pointer;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 156, 141, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background-color: rgba(58, 156, 141, 0.05);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.dropdown-item span {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3000;
    pointer-events: auto !important;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-buttons {
    display: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* === HERO SECTION === */
.hero {
    padding: 180px 0 120px;
    margin-top: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.05) 0%, rgba(184, 133, 152, 0.05) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    opacity: 0.1;
    filter: blur(20px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation: float 15s infinite ease-in-out;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 200px;
    right: 30%;
    animation: float 18s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.pulse-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    animation: pulse-dots 20s infinite linear;
}

@keyframes pulse-dots {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-text {
    flex: 1;
    padding-right: 30px;
}

.hero-intro {
    margin-top: 0;
}

.global-badge {
    position: relative;
    top: 0;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.1), rgba(184, 133, 152, 0.1));
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.hero-title .highlight {
    color: var(--primary);
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-3);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(66, 183, 165, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-prefix {
    font-size: 2.2rem;
    margin-right: 3px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === MEDICAL VISUAL === */
.medical-visual-enhanced {
    position: relative;
    width: 100%;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.rotating-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: rotate infinite linear;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(58, 156, 141, 0.2);
    animation-duration: 20s;
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(184, 133, 152, 0.2);
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(58, 156, 141, 0.3);
    animation-duration: 10s;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    animation: float-card infinite ease-in-out;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 15%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* === HERO WAVE === */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--light-1);
}

.hero-wave path {
    animation: heroWaveFloat 15s ease-in-out infinite;
}

.hero-wave path:nth-child(1) {
    animation-delay: 0s;
    fill: var(--light-1);
    opacity: 1;
}

.hero-wave path:nth-child(2) {
    animation-delay: 3s;
    fill: var(--light-2);
    opacity: 0.8;
}

.hero-wave path:nth-child(3) {
    animation-delay: 6s;
    fill: var(--light-3);
    opacity: 0.6;
}

@keyframes heroWaveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.1), rgba(184, 133, 152, 0.1));
    padding: 10px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-description {
    color: var(--gray-3);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* === SERVICES === */
.services {
    padding: 100px 0;
    background-color: var(--light-1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(58, 156, 141, 0.1);
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block !important;
    animation: none !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(58, 156, 141, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-card-inner {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 156, 141, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-card-overlay {
    left: 100%;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.icon-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.1), rgba(184, 133, 152, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.service-card:hover .icon-container {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.15), rgba(184, 133, 152, 0.15));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.1;
    animation: pulse 2s infinite;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.3;
}

.service-description {
    color: var(--gray-3);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    flex: 1;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.service-link i {
    font-size: 0.9rem;
    transition: transform var(--transition-normal);
}

.service-link:hover i {
    transform: translateX(3px);
}

.service-appointment {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.1), rgba(184, 133, 152, 0.1));
    border-radius: var(--radius-md);
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.service-appointment:hover {
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.15), rgba(184, 133, 152, 0.15));
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.services-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-1);
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline i {
    transition: transform var(--transition-normal);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    overflow: hidden;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(30px);
    animation: float 20s infinite ease-in-out;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-light), var(--primary));
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(20px);
    animation: float 25s infinite ease-in-out reverse;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(58, 156, 141, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(58, 156, 141, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: serif;
    color: rgba(58, 156, 141, 0.05);
    line-height: 1;
    font-weight: bold;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.patient-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.1), rgba(184, 133, 152, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.patient-info {
    flex: 1;
}

.patient-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.patient-rating {
    display: flex;
    gap: 3px;
}

.patient-rating i {
    color: var(--accent);
    font-size: 1.1rem;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: var(--gray-3);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    padding-left: 20px;
    position: relative;
}

.testimonial-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(58, 156, 141, 0.1);
}

.treatment-type {
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.1), rgba(184, 133, 152, 0.1));
    padding: 6px 15px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.treatment-date {
    color: var(--gray-2);
    font-size: 0.9rem;
}

.testimonials-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: var(--radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-primary i {
    font-size: 1.2rem;
}

/* === TECHNOLOGIES === */
.technologies {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.tech-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.tech-track {
    display: flex;
    gap: 30px;
    animation: autoSlide 30s linear infinite;
    padding: 20px 0;
    will-change: transform;
}

.tech-slider:hover .tech-track {
    animation-play-state: paused;
}

@keyframes autoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 30px)); }
}

.tech-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(58, 156, 141, 0.2);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.05), rgba(184, 133, 152, 0.05));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(58, 156, 141, 0.1), rgba(184, 133, 152, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.5rem;
    position: relative;
    transition: all var(--transition-normal);
}

.tech-item:hover .tech-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    color: var(--white);
}

.tech-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tech-item p {
    color: var(--gray-3);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* === FOOTER === */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 120px 0 30px;
    position: relative;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-column {
    animation: fadeInUp 0.8s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 4s infinite ease-in-out;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-top: 3px;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color var(--transition-normal);
}

.contact-value:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--secondary-light);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-copyright a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-copyright .fa-heart {
    color: #ff4d6d;
    animation: heartbeat 1.5s infinite ease-in-out;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition-normal);
    position: relative;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* === FLOATING WHATSAPP === */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-heading);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 8px 25px rgba(66, 183, 165, 0.4);
}

.floating-whatsapp i {
    font-size: 24px;
    transition: transform var(--transition-normal);
}

.floating-whatsapp:hover i {
    transform: rotate(15deg);
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(66, 183, 165, 0.2);
    animation: pulse 2s infinite;
    z-index: -1;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(66, 183, 165, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(66, 183, 165, 0.4);
}

.back-to-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

/* === KEYFRAMES === */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 3px solid var(--light-1);
    transition: all var(--transition-normal);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light-1);
}

/* === FADE-IN === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === PREVENT BODY SCROLL WHEN MENU OPEN === */
body.menu-open {
    overflow: hidden !important;
}

/* ============================================================
   RESPONSIVE - CORRECTIONS IPHONE & SAMSUNG
   ============================================================ */

/* === TABLETTES === */
@media (max-width: 992px) {
    .hamburger {
        display: flex !important;
        z-index: 2001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 120px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        overflow-y: auto;
        margin-right: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-radius: var(--radius-md);
        margin-bottom: 5px;
        justify-content: flex-start;
    }
    
    .nav-link i {
        color: #333 !important;
    }
    
    .nav-link.active i {
        color: var(--primary) !important;
    }
    
    .nav-item.dropdown .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(58, 156, 141, 0.05);
        border-radius: var(--radius-md);
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: auto !important;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 400px !important;
        overflow: visible !important;
    }
    
    .nav-item.dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-item {
        pointer-events: auto !important;
        cursor: pointer;
        padding: 12px 20px 12px 40px;
        border-bottom: 1px solid rgba(58, 156, 141, 0.1);
    }
    
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Top info bar mobile */
    .nav-item:last-child {
        display: block;
    }
    
    .top-actions {
        display: none;
    }
    
    .top-info-bar {
        display: block;
        padding: 10px 0;
    }
    
    .info-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cabinet-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .info-item {
        margin-left: 0 !important;
        justify-content: center;
        width: 100%;
    }
    
    .info-item.two {
        margin-left: 0 !important;
    }
    
    .mobile-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--gray-1);
    }
    
    .mobile-call-btn,
    .mobile-rdv-btn {
        color: #fff !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 20px;
        border-radius: var(--radius-lg);
        font-family: var(--font-heading);
        font-weight: 600;
        text-decoration: none;
        transition: all var(--transition-normal);
        text-align: center;
        width: 100%;
        font-size: 1rem;
        pointer-events: auto !important;
        cursor: pointer;
    }
    
    .mobile-call-btn {
        background: var(--primary);
        color: var(--white);
    }
    
    .mobile-call-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    .mobile-rdv-btn {
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
        color: #fff !important;
        margin-top: 10px;
    }
    
    .mobile-rdv-btn:hover {
        background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
        transform: translateY(-2px);
    }
    
    .mobile-menu-overlay.active {
        display: block !important;
        opacity: 1 !important;
    }
}

/* === MOBILES === */
@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-top: 0 !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tech-item {
        flex: 0 0 calc(100vw - 60px) !important;
        min-width: calc(100vw - 60px) !important;
        max-width: calc(100vw - 60px) !important;
        margin: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-wave {
        height: 80px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .floating-whatsapp i {
        font-size: 22px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 100px;
        right: 20px;
        font-size: 1.1rem;
    }
    
    .nav-menu {
        padding: 80px 20px 20px;
    }
}

/* === PETITS MOBILES === */
@media (max-width: 480px) {
    .hero {
        padding: 120px 0 40px !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 6px !important;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
    }
    
    .stat-label {
        font-size: 0.6rem !important;
    }
    
    .service-card {
        min-height: auto !important;
        padding: 0 !important;
    }
    
    .tech-item {
        flex: 0 0 calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        margin: 0 10px;
        padding: 25px 20px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
        transform: translateX(5px);
    }
    
    .contact-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp i {
        font-size: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 90px;
        right: 15px;
        font-size: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-legal a::after {
        display: none;
    }
}

/* === IPHONE SAFE AREA === */
@supports (-webkit-touch-callout: none) {
    .hero {
        padding-top: calc(100px + env(safe-area-inset-top)) !important;
    }
    
    .floating-whatsapp {
        bottom: calc(20px + env(safe-area-inset-bottom)) !important;
    }
    
    .back-to-top {
        bottom: calc(110px + env(safe-area-inset-bottom)) !important;
    }
}

/* === INPUT FIX IPHONE === */
input, select, textarea {
    font-size: 16px !important;
    -webkit-appearance: none;
    appearance: none;
}

/* === MODE REDUCTION DES MOUVEMENTS === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .back-to-top {
        transition: opacity 0.3s ease;
    }
    
    .back-to-top:hover {
        transform: translateY(0);
    }
    
    .back-to-top::after {
        animation: none;
    }
    
    .floating-whatsapp {
        animation: none;
    }
}

/* ============================================================
   BOUTON DE CONNEXION - Style circulaire #dda9ba
   ============================================================ */

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    position: relative;
    color: #fff !important;
    background: #dda9ba;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(221, 169, 186, 0.3);
    padding: 0;
    overflow: hidden;
}

.login-btn i {
    color: #fff !important;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.login-btn span {
    display: none;
}

.login-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: #c994a8;
    box-shadow: 0 4px 20px rgba(221, 169, 186, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.login-btn:hover i {
    transform: rotate(10deg) scale(1.1);
}

.login-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.login-btn:hover::before {
    opacity: 1;
}

/* Version mobile - Style circulaire */
.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    pointer-events: auto !important;
    cursor: pointer;
    background: #dda9ba;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(221, 169, 186, 0.3);
}

.mobile-login-btn i {
    color: #fff !important;
    font-size: 1rem;
}

.mobile-login-btn:hover {
    background: #c994a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(221, 169, 186, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .top-actions .login-btn {
        display: none;
    }
}

@media (min-width: 993px) {
    .mobile-login-btn {
        display: none;
    }
}

/* Animation de pulsation subtile pour attirer l'attention */
@keyframes loginPulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(221, 169, 186, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(221, 169, 186, 0.5);
    }
}

.login-btn {
    animation: loginPulse 2s ease-in-out infinite;
}

.login-btn:hover {
    animation: none;
}