/* ========================================
   STYLES PRINCIPAUX - BODFITNESS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2E5BFF;
    --primary-dark: #1E4BD2;
    --secondary: #FF6B6B;
    --dark: #2D3748;
    --light: #F7FAFC;
    --gray: #718096;
    --light-gray: #E2E8F0;
    --success: #48BB78;
    --error: #FC8181;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
}

/* ========================================
   BASE
   ======================================== */

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--secondary);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ========================================
   BOUTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #ff5252;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 150px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    background-color: white;
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

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

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

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

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

/* ========================================
   BOOKING SECTION
   ======================================== */

.booking {
    background-color: white;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.booking-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-info {
    padding: 20px;
}

.info-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-card i {
    margin-right: 10px;
    color: var(--primary);
}

/* ========================================
   FORM HINTS & ERRORS
   ======================================== */

.phone-hint,
.email-hint,
.name-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

#lastName {
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input:valid {
    border-color: var(--success) !important;
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--error) !important;
}

.form-group input:focus:invalid {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 3px rgba(252, 129, 129, 0.2);
}

.error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    background-color: #F7FAFC;
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 2.2rem;
    color: #2E5BFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: #FF6B6B;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    color: #2E5BFF;
    opacity: 0.2;
    font-size: 3rem;
    position: absolute;
    top: -15px;
    left: -10px;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #2D3748;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #F7FAFC;
}

.client-details h4 {
    margin-bottom: 5px;
    color: #2D3748;
}

.client-details p {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating {
    color: #FFD700;
    margin-top: 5px;
}

.rating i {
    margin-right: 2px;
}

/* ========================================
   ALERT MESSAGE
   ======================================== */

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float .whatsapp-float-icon {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   PAGE TITLE
   ======================================== */

.page-title {
    background: linear-gradient(rgba(46, 91, 255, 0.9), rgba(30, 75, 210, 0.9));
    color: white;
    padding: 140px 0 60px;
    margin-top: 80px;
    text-align: center;
}

.page-title h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-title h1:after {
    display: none;
}

.page-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES FULL PAGE
   ======================================== */

.services-full {
    background-color: white;
    padding: 60px 0;
}

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

.service-card-full {
    background-color: white;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card-full .service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 15px;
}

.service-features li {
    padding: 5px 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--success);
    margin-right: 10px;
    width: 18px;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ========================================
   ABOUT DETAIL PAGE
   ======================================== */

.about-detail {
    padding: 60px 0;
    background-color: white;
}

.about-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-detail-text .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.about-detail-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-mini {
    text-align: center;
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
}

.stat-mini .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-mini .label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ========================================
   TESTIMONIALS PAGE
   ======================================== */

.testimonials-page {
    padding: 60px 0;
    background-color: #F7FAFC;
}

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

.testimonial-card-full {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-page {
    padding: 60px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-social {
    margin-top: 30px;
}

.contact-social .social-links {
    display: flex;
    gap: 15px;
}

.contact-social .social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.contact-social .social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    margin-bottom: 25px;
}

/* ========================================
   SERVICE CARD WITH IMAGES
   ======================================== */

.service-card-full {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-full .service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin: -20px auto 10px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.service-card-full h3 {
    text-align: center;
    padding: 0 15px;
}

.service-card-full p {
    text-align: center;
    padding: 0 15px;
}

.service-features {
    list-style: none;
    padding: 0 15px 15px;
}

.service-features li {
    padding: 5px 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--success);
    margin-right: 10px;
    width: 18px;
}

/* Responsive */
@media (max-width: 575px) {
    .service-image {
        height: 160px;
    }
    
    .service-card-full .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-top: -15px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.animate-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1200px et plus) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablettes (768px - 1199px) */
@media (max-width: 1199px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content,
    .booking-container,
    .about-detail-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img,
    .about-detail-image {
        order: -1;
    }
    
    .testimonials-grid,
    .testimonials-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablettes Petites (576px - 767px) */
@media (max-width: 767px) {
    .header-container {
        padding: 12px 0;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 140px 0 80px;
        margin-top: 70px;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .page-title {
        padding: 120px 0 40px;
        margin-top: 70px;
    }
    
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form-container,
    .contact-form-container {
        padding: 30px;
    }
    
    .testimonials-grid,
    .testimonials-grid-full,
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .testimonial-card,
    .info-card,
    .service-card-full,
    .testimonial-card-full {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    
    .about-detail-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

/* Mobiles (375px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .page-title p {
        font-size: 1rem;
    }
    
    .booking-form-container,
    .contact-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .service-card,
    .testimonial-card,
    .info-card,
    .service-card-full,
    .testimonial-card-full {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .client-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .copyright {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .about-detail-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .services-grid-full {
        grid-template-columns: 1fr;
    }
}

/* Très petits mobiles (moins de 374px) */
@media (max-width: 374px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .booking-form-container,
    .contact-form-container {
        padding: 15px;
    }
    
    .service-card,
    .testimonial-card,
    .info-card,
    .service-card-full,
    .testimonial-card-full {
        padding: 15px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* Orientation paysage sur mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    nav ul {
        padding-top: 60px;
    }
}

/* ========================================
   SUPPORT TACTILE
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .info-card:hover,
    .social-links a:hover,
    .service-card-full:hover,
    .testimonial-card-full:hover {
        transform: none;
    }
    
    .btn:active,
    .service-card:active,
    .testimonial-card:active,
    .info-card:active,
    .service-card-full:active,
    .testimonial-card-full:active {
        transform: scale(0.98);
    }
}

/* ========================================
   IOS ZOOM FIX
   ======================================== */

@supports (-webkit-touch-callout: none) {
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}