/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* HEADER */
header {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 50px 0;
}

/* PHOTO PROFIL */
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.profile-container img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

/* TITRES */
header h1 {
    font-size: 28px;
    margin-top: 10px;
}

header p {
    margin-top: 8px;
    font-size: 16px;
    color: #ccc;
}

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

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

/* ABOUT */
.about p {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

/* SERVICES */
.services {
    background: white;
}

.service-box {
    background: #f9f9f9;
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #1a1a1a;
    border-radius: 5px;
}

.service-box h3 {
    margin-bottom: 10px;
}

/* CONTACT */
.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact textarea {
    height: 120px;
    resize: none;
}

.contact button {
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact button:hover {
    background: #333;
}

/* BOUTON WHATSAPP HEADER */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* BOUTON WHATSAPP FLOTTANT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 22px;
    padding: 14px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}