/* ==========================================================================
   Sell Your Home — Hero Section
   ========================================================================== */

.me-sell-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://monexpertimmobilier.ca/wp-content/uploads/2026/07/sell-your-home-banner-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 24px 80px;
    overflow: hidden;
}

.me-sell-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.me-sell-hero-container {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.me-sell-hero-title {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 18px;
    letter-spacing: -0.4px;
}

.me-sell-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 0 32px;
}

.me-sell-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #d8a94f;
    color: #16233b;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 28px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.me-sell-hero-btn:hover,
.me-sell-hero-btn:focus-visible {
    background-color: #c79939;
    transform: translateY(-1px);
}

.me-sell-hero-btn-arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.me-sell-hero-btn:hover .me-sell-hero-btn-arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   Tablet (≤1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .me-sell-hero {
        min-height: 420px;
        padding: 150px 24px 70px;
    }

    .me-sell-hero-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   Mobile (≤782px)
   ========================================================================== */
@media (max-width: 782px) {
    .me-sell-hero {
        min-height: 380px;
        padding: 130px 20px 60px;
        text-align: center;
    }

    .me-sell-hero-container {
        text-align: center;
    }

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

    .me-sell-hero-subtitle {
        font-size: 14px;
        margin: 0 auto 26px;
    }

    .me-sell-hero-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Small mobile (≤400px)
   ========================================================================== */
@media (max-width: 400px) {
    .me-sell-hero-title {
        font-size: 24px;
    }
}