/* Style Général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
}

/* Styles pour les icônes SVG locales */
.icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

.icon-inline {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

.icon-card {
    width: 48px;
    height: 48px;
    color: #0056b3;
    margin-bottom: 15px;
}

.icon-check {
    width: 18px;
    height: 18px;
    color: #28a745;
    margin-right: 8px;
    vertical-align: middle;
}

/* Style du logo image */
.logo-img {
    height: 70px; /* Ajustez la hauteur selon vos envies */
    width: auto;  /* Conserve les proportions de l'image */
    margin-right: 10px;
    vertical-align: middle;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
}

.logo span {
    color: #ff6600;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #0056b3;
}

.btn-call {
    background-color: #ff6600;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    /* Utilise l'image locale images/hero-bg.jpg */
    background: linear-gradient(rgba(0, 40, 85, 0.8), rgba(0, 40, 85, 0.8)), url('images/Gemini.jpg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-urgent {
    background-color: #ff6600;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.btn-secondary {
    background-color: white;
    color: #0056b3;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Services */
.services {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.services h2, .contact h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

/* À propos */
.about {
    padding: 4rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    color: #0056b3;
    margin-bottom: 15px;
}

.about ul {
    list-style: none;
    margin-top: 15px;
}

.about ul li {
    margin-bottom: 10px;
}

.about ul li i {
    color: #28a745;
    margin-right: 8px;
}

/* Contact */
.contact {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    background-color: #0056b3;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.btn-submit:hover {
    background-color: #004085;
}

/* Footer */
footer {
    background-color: #002855;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

/* Responsive Mobiles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
    }
    nav ul {
        margin-bottom: 10px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/* Style pour le message de confirmation */
.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    display: none; /* Masqué par défaut */
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}