/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #25D366;
    --accent-color: #2c5f8d;
    --text-color: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    padding: 140px 0 80px;
    margin-top: 64px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
}

/* Problématique Section */
.problematique {
    padding: 80px 0;
    background: var(--bg-white);
}

.problemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.probleme-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.probleme-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.probleme-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.probleme-card p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-color);
    font-weight: 500;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: var(--bg-light);
}

.solutions-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.solutions-intro p {
    font-size: 19px;
    color: var(--text-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.solutions-brands {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 0;
}

.brands-intro {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.brands-compatibility {
    font-size: 16px;
    color: var(--text-light);
}

/* Avantages Section */
.avantages {
    padding: 80px 0;
    background: var(--bg-white);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.avantage-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

.avantage-check {
    font-size: 24px;
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

.avantage-item p {
    font-size: 17px;
    color: var(--text-color);
    font-weight: 500;
}

/* Encart Spécial Location Courte Durée */
.avantages-special {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4a6f 100%);
    color: white;
    padding: 48px 40px;
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.special-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.avantages-special h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.special-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.special-icon {
    font-size: 40px;
}

.special-item p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Rapidité Section */
.rapidite {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.rapidite-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rapidite-highlight {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.rapidite-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.rapidite-text {
    font-size: 24px;
    color: var(--text-color);
    line-height: 1.4;
}

.rapidite-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.rapidite-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.rapidite-compatibility {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

/* Tarifs Section */
.tarifs {
    padding: 80px 0;
    background: var(--bg-white);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.tarif-card {
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tarif-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tarif-featured {
    background: var(--bg-white);
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-md);
}

.tarif-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.tarif-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    min-height: 56px;
}

.tarif-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tarif-from {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tarif-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
}

.tarifs-notes {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.tarifs-notes p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.tarifs-notes p:last-child {
    margin-bottom: 0;
}

.tarifs-notes strong {
    color: var(--text-color);
}

/* Crédibilité Section */
.credibilite {
    padding: 80px 0;
    background: var(--bg-light);
}

.credibilite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.credibilite-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credibilite-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.credibilite-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.credibilite-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.credibilite-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Contact Final Section */
.contact-final {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

.contact-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Formulaire de contact */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto 48px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

/* Contact Info */
.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #234f7a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-phone {
    background: var(--primary-color);
    color: white;
}

.btn-phone:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 48px 0 32px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-signature {
    text-align: left;
}

.footer-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        margin-top: 56px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .logo-img {
        height: 60px;
    }

    .problematique,
    .solutions,
    .avantages,
    .rapidite,
    .tarifs,
    .credibilite,
    .contact-final {
        padding: 60px 0;
    }

    .problemes-grid,
    .solutions-grid,
    .avantages-grid,
    .tarifs-grid,
    .credibilite-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions-grid {
        max-width: 100%;
    }

    .avantages-special {
        padding: 32px 24px;
    }

    .avantages-special h3 {
        font-size: 22px;
    }

    .special-grid {
        grid-template-columns: 1fr;
    }

    .rapidite-text {
        font-size: 20px;
    }

    .tarif-amount {
        font-size: 40px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .hero-cta,
    .contact-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-signature {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .probleme-card,
    .solution-card,
    .credibilite-item {
        padding: 24px;
    }

    .tarif-card {
        padding: 32px 24px;
    }

    .tarif-amount {
        font-size: 36px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
