/*
Theme Name: Arvi Nuisibles ULTRA PRO
Version: 3.0
*/

:root {
    --primary: #000;
    --accent: #d8d0bd;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #111;
}

/* HEADER */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.logo img { height: 100px; }

.call-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover { background:#333; }

/* HERO */
.hero {
    text-align: center;
    padding: 100px 8%;
    background: linear-gradient(to bottom, #fff, #f1f1f1);
}

.hero img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
}

/* SERVICES */
.section {
    display: flex;
    gap: 50px;
    padding: 80px 8%;
}

.card {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.button {
    display: inline-block;
    margin-top: 15px;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
}

.info-box {
    background: var(--primary);
    color: #fff;
}

/* BADGE */
.badge {
    background: gold;
    color: black;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

/* CONTACT */
.contact {
    background: var(--accent);
    border-radius: 120px;
    padding: 70px;
    margin: 80px 8%;
    text-align: center;
}

.phone {
    font-size: 36px;
    font-weight: 700;
}

/* FORM */
.form-box {
    max-width: 500px;
    margin: 40px auto;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background: black;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* MAP */
.map {
    margin: 80px 8%;
}

/* FLOAT CALL */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: black;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .section { flex-direction: column; }
    .contact { border-radius: 30px; }
}
/* SECTION AVIS */
.google-reviews-wrapper {
    max-width: 1000px;
    margin: auto;
}

.google-reviews-wrapper .ti-widget {
    border-radius: 12px;
}

.google-reviews-wrapper .ti-review-item {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 20px !important;
}
.texte-evolutif {
    padding: 80px 8%;
    background: #ffffff;
}

.texte-evolutif h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.contenu-texte {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
}
.site-footer {
    background: #111;
    color: #fff;
    padding: 30px 8%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social a {
    margin-left: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}