/* Styles principaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root {
    --primary-color: #0f0f0f;
    --accent-color: #4b9be6;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7fb;
    --shadow-soft: rgba(15, 15, 15, 0.08);
}
html {
    scroll-behavior: smooth;
}
body {
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    padding-top: 100px;
}
a {
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}
button,
input,
textarea {
    font: inherit;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 20px;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo span {
    color: var(--accent-color);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--accent-color);
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--primary-color);
}
.hero {
    width: 100%;
    max-width: none;
    min-height: 75vh;
    background: linear-gradient(rgba(15, 15, 15, 0.45), rgba(15, 15, 15, 0.45)), url('images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
    background-position: center center;
    background-size: cover;
}
.hero-content {
    max-width: 760px;
    width: 100%;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.45;
    max-width: 760px;
    margin: 0 auto 35px;
}
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
.map-frame-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.map-frame {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}
.whatsapp-float i {
    font-size: 24px;
    color: #fff;
}
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
}
.btn:hover {
    background-color: #357fc0;
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 14px 30px;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 700px;
    margin: -20px auto 45px;
    font-size: 16px;
}
.trust-grid,
.services-grid,
.portfolio-grid,
.about-highlights,
.contact-container,
.featured-grid {
    display: grid;
    gap: 20px;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 20px;
    align-items: stretch;
}
.trust-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 24px;
}
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.trust-card,
.service-card,
.featured-card,
.stat-box,
.contact-card,
.faq-item,
.highlight-box {
    background: var(--bg-light);
    border-radius: 8px;
}
.trust-card {
    padding: 28px 22px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 8px 20px rgba(15, 15, 15, 0.04);
}
.trust-card i,
.service-card i {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 12px;
}
.trust-card h3,
.service-card h3,
.featured-card h3,
.contact-info h3,
.about-content h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}
.trust-card p,
.service-card p,
.featured-card p,
.about-content p,
.contact-info p {
    color: #64748b;
    font-size: 15px;
}
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), #1f2937);
    color: white;
    text-align: center;
    padding: 40px 24px;
    border-radius: 12px;
    margin: 0 20px 40px;
    box-shadow: 0 20px 40px rgba(15, 15, 15, 0.12);
}
.cta-banner h3 {
    font-size: 28px;
    margin-bottom: 12px;
}
.cta-banner p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
section {
    padding: 70px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 110px;
}
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    color: var(--primary-color);
    text-transform: uppercase;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}
.service-card {
    padding: 40px 30px;
    text-align: center;
    border-top: 4px solid transparent;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}
.portfolio-swiper {
    position: relative;
    padding: 20px 0;
}
.portfolio-swiper .swiper-wrapper {
    align-items: stretch;
}
.swiper-slide {
    height: auto;
    display: flex;
    min-width: 0;
}
.portfolio-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 280px;
    width: 100%;
    min-width: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
    text-align: center;
}
.portfolio-item:hover img {
    transform: scale(1.05);
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-empty {
    padding: 30px 20px;
    text-align: center;
    color: #555;
}
.swiper-button-prev,
.swiper-button-next {
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--accent-color);
    color: white;
}
.swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.about-container {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px 28px;
    align-items: stretch;
}
.about-image {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.about-image img {
    width: 100%;
    height: auto;
    min-height: 100%;
    display: block;
    object-fit: cover;
}
.about-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.about-content h2 {
    margin-top: 0;
}
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: #555;
    text-align: justify;
}
.about-highlights {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
    width: 100%;
}
.highlight-box {
    padding: 14px 12px;
    border-left: 3px solid var(--accent-color);
    min-height: 110px;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(15, 15, 15, 0.04);
}
.highlight-box h4 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}
.highlight-box p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.45;
}
.stat-box {
    background: linear-gradient(135deg, var(--accent-color), #357fc0);
    color: white;
    padding: 26px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(75, 155, 230, 0.2);
    transition: transform 0.3s;
}
.stat-box:hover {
    transform: translateY(-5px);
}
.stat-box .number {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}
.stat-box .label {
    font-size: 14px;
    font-weight: 600;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    background: white;
}
.faq-item:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.faq-question {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: background 0.3s, color 0.3s;
}
.faq-question:hover {
    background: #edf2f7;
}
.faq-question i {
    transition: transform 0.3s;
    color: var(--accent-color);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 22px 24px;
    display: none;
    color: #334155;
    line-height: 1.8;
    background: white;
}
.faq-item.active .faq-answer {
    display: block;
}
.contact-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.contact-card {
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 15, 15, 0.05);
}
.contact-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}
.whatsapp-link i {
    color: #25D366;
    font-size: 20px;
    margin-left: 8px;
}
.social-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 14px;
    z-index: 1100;
}
.whatsapp-float,
.facebook-float,
.tiktok-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float {
    background: #25D366;
}
.facebook-float {
    background: #1877f2;
}
.tiktok-float {
    background: #000000;
}
.whatsapp-float:hover,
.facebook-float:hover,
.tiktok-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.whatsapp-link i,
.facebook-link i,
.tiktok-link i {
    margin-left: 10px;
    font-size: 18px;
}
.whatsapp-link i {
    color: #25D366;
}
.facebook-link i {
    color: #1877f2;
}
.tiktok-link i {
    color: #000000;
}
.contact-info i {
    color: var(--accent-color);
    font-size: 20px;
    width: 25px;
    text-align: center;
}
.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}
.contact-info a:hover {
    color: var(--accent-color);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(75, 155, 230, 0.15);
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.form-note {
    font-size: 13px;
    color: #64748b;
    margin-top: -5px;
}
.contact-form button {
    border: none;
    cursor: pointer;
    width: fit-content;
}
.featured-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 16px;
}
.featured-card {
    padding: 18px 18px 16px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}
.featured-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}
.featured-card p {
    margin-bottom: 10px;
    line-height: 1.45;
    font-size: 14px;
}
.featured-card span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    border-top: 3px solid var(--accent-color);
}
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 240px 1fr;
    }
}
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 20px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero {
        height: auto;
        padding: 60px 20px 80px;
    }
    .about-highlights,
    .trust-grid,
    .services-grid,
    .stats-container,
    .featured-grid {
        grid-template-columns: 1fr;
    }
}
