/* =========================================
   EASY HOMES
   COMPLETE WEBSITE CSS
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: min(1180px, 92%);
    min-height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width: 155px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.main-nav > a {
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav > a:hover {
    color: #1268c4;
}

.account-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 5px;
}

.login-link {
    padding: 9px 14px;
    border: 1px solid #1268c4;
    border-radius: 7px;
    color: #1268c4 !important;
}

.login-link:hover {
    background: #1268c4;
    color: #ffffff !important;
}

.get-started-link {
    padding: 10px 16px;
    border-radius: 7px;
    background: #38b52f;
    color: #ffffff !important;
}

.get-started-link:hover {
    background: #2d9827;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #dbe3ea;
    border-radius: 7px;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #1268c4;
    border-radius: 10px;
    transition: 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   HERO
   ========================================= */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            rgba(8, 36, 61, 0.64),
            rgba(8, 36, 61, 0.64)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=85");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 31, 52, 0.82),
            rgba(5, 31, 52, 0.38),
            rgba(5, 31, 52, 0.25)
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    width: min(1120px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;

    padding: 80px 0;
}

.hero-content {
    color: #ffffff;
}

.hero-small-text {
    margin-bottom: 12px;
    color: #b7e8a9;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero h1 {
    max-width: 620px;
    margin-bottom: 20px;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.hero h1 span {
    color: #4fc63c;
}

.hero-text {
    max-width: 570px;
    margin-bottom: 30px;

    color: #f1f5f9;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.secondary-button,
.cta-button,
.outline-button,
.green-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 11px 20px;

    border-radius: 7px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.primary-button {
    background: #1268c4;
    color: #ffffff;
}

.primary-button:hover {
    background: #0d58a8;
    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.secondary-button:hover {
    background: #ffffff;
    color: #1268c4;
}

.search-box {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.search-title {
    margin-bottom: 22px;
}

.search-title h2 {
    margin-bottom: 5px;
    color: #172033;
    font-size: 27px;
    line-height: 1.2;
}

.search-title p {
    color: #667085;
    font-size: 14px;
}

#homeSearchForm {
    display: grid;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select,
#homeSearchForm select {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 7px;
    background: #ffffff;
    color: #1f2937;
    padding: 12px 13px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
#homeSearchForm select:focus {
    border-color: #1268c4;
    box-shadow: 0 0 0 3px rgba(18, 104, 196, 0.1);
}

.search-button {
    width: 100%;
    border: none;
    border-radius: 7px;
    padding: 13px 18px;
    background: #38b52f;
    color: #ffffff;
    font-weight: 700;
}

.search-button:hover {
    background: #2d9827;
}

.search-message {
    min-height: 22px;
    margin-top: 10px;
    color: #1268c4;
    font-size: 14px;
    text-align: center;
}


/* =========================================
   SECTION HEADINGS
   ========================================= */

.section-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-label {
    margin-bottom: 7px;
    color: #1268c4;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.section-heading h2 {
    margin-bottom: 12px;
    color: #172033;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}

.section-heading p:last-child {
    color: #667085;
}


/* =========================================
   INTRO
   ========================================= */

.intro {
    background: #ffffff;
}


/* =========================================
   BENEFITS
   ========================================= */

.benefits {
    background: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 30px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf7ea;
    font-size: 26px;
}

.benefit-card h3 {
    margin-bottom: 9px;
    color: #172033;
    font-size: 20px;
}

.benefit-card p {
    color: #667085;
    font-size: 14px;
}


/* =========================================
   HOMES
   ========================================= */

.homes {
    background: #ffffff;
}

.homes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dashboard-loading-text,
.homes-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: #68746f;
    padding: 30px 0;
}

.home-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.home-image-container {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #e9eef2;
}

.home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: #eef6f1;
    color: #2c7551;
}

.home-card:hover .home-image {
    transform: scale(1.03);
}

.home-location {
    position: absolute;
    top: 15px;
    left: 15px;

    padding: 6px 11px;
    border-radius: 5px;

    background: #ffffff;
    color: #1268c4;

    font-size: 13px;
    font-weight: 700;
}

.home-details {
    padding: 22px;
}

.home-details h3 {
    margin-bottom: 8px;
    color: #172033;
    font-size: 21px;
}

.home-description {
    min-height: 48px;
    margin-bottom: 15px;
    color: #667085;
    font-size: 14px;
}

.home-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    padding-bottom: 17px;
    border-bottom: 1px solid #e5e7eb;

    color: #667085;
    font-size: 13px;
}

.home-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding-top: 17px;
}

.home-bottom strong {
    color: #1268c4;
    font-size: 17px;
}

.view-button {
    border: none;
    border-radius: 6px;
    padding: 8px 12px;

    background: #edf7ea;
    color: #298d24;

    font-size: 13px;
    font-weight: 700;
}

.view-button:hover {
    background: #dff1da;
}


/* =========================================
   HOW IT WORKS
   ========================================= */

.how-it-works {
    background: #f7fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step-card {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #1268c4;
    color: #ffffff;

    font-size: 19px;
    font-weight: 800;
}

.step-card h3 {
    margin-bottom: 8px;
    color: #172033;
}

.step-card p {
    color: #667085;
}


/* =========================================
   ACCOUNTS
   ========================================= */

.accounts {
    background: #ffffff;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.account-card {
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.buyer-card {
    background: #f4f9ff;
}

.seller-card {
    background: #f5fbf3;
}

.account-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #ffffff;
    font-size: 25px;
}

.account-card h3 {
    margin-bottom: 10px;
    color: #172033;
    font-size: 23px;
}

.account-card p {
    margin-bottom: 20px;
    color: #667085;
}

.account-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.outline-button {
    border: 1px solid #1268c4;
    color: #1268c4;
    background: #ffffff;
}

.outline-button:hover {
    background: #1268c4;
    color: #ffffff;
}

.green-button {
    background: #38b52f;
    color: #ffffff;
}

.green-button:hover {
    background: #2d9827;
}

.small-button {
    min-height: 43px;
}


/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials {
    background: #f7fafc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.stars {
    margin-bottom: 12px;
    color: #f59e0b;
    letter-spacing: 2px;
}

.testimonial-card p {
    margin-bottom: 18px;
    color: #4b5563;
}

.testimonial-card h4 {
    color: #172033;
}

.testimonials-view-all {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-view-all a {
    color: var(--easy-blue, #0162b9);
    font-weight: bold;
    font-size: 15px;
}

.testimonials-view-all a:hover {
    text-decoration: underline;
}

.testimonial-form-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 32px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.testimonial-form-container h3 {
    margin-bottom: 5px;
    color: #172033;
    font-size: 24px;
}

.testimonial-form-container > p {
    margin-bottom: 22px;
    color: #667085;
}

.testimonial-form-grid {
    display: grid;
    gap: 17px;
}

.form-message {
    min-height: 20px;
    margin-top: 10px;
    color: #298d24;
    font-size: 14px;
}


/* =========================================
   CTA
   ========================================= */

.cta {
    background: #ffffff;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 45px;

    border-radius: 12px;
    background: #1268c4;
    color: #ffffff;
}

.cta-box .section-label {
    color: #b7e8a9;
}

.cta-box h2 {
    margin-bottom: 8px;
    font-size: clamp(27px, 4vw, 38px);
}

.cta-box p:last-child {
    color: #e7f1fa;
}

.cta-button {
    flex-shrink: 0;
    background: #38b52f;
    color: #ffffff;
}

.cta-button:hover {
    background: #2d9827;
    transform: translateY(-2px);
}


/* =========================================
   CONTACT
   ========================================= */

.contact {
    background: #f7fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 35px;
}

.contact-info {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #172033;
}

.contact-item p {
    color: #667085;
}

.contact-form {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.contact-form .primary-button {
    border: none;
}


/* =========================================
   CHATBOX
   ========================================= */

.chat-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1100;

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #1268c4;
    color: #ffffff;

    font-size: 24px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.chat-button:hover {
    background: #0d58a8;
}

.chatbox {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 1099;

    width: min(360px, calc(100% - 30px));

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);

    display: none;
}

.chatbox.open {
    display: block;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 18px;

    background: #1268c4;
    color: #ffffff;
}

.chat-header strong,
.chat-header small {
    display: block;
}

.chat-header small {
    margin-top: 2px;
    color: #dbeafe;
}

.chat-header button {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
    background: #f8fafc;
}

.bot-message,
.user-message {
    max-width: 85%;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.bot-message {
    background: #ffffff;
    color: #374151;
}

.user-message {
    margin-left: auto;
    background: #1268c4;
    color: #ffffff;
}

.chat-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #e5e7eb;
}

.chat-form input {
    min-width: 0;
    flex: 1;

    border: 1px solid #d0d5dd;
    border-radius: 6px;

    padding: 10px;
    outline: none;
}

.chat-form input:focus {
    border-color: #1268c4;
}

.chat-form button {
    border: none;
    border-radius: 6px;
    padding: 10px 13px;
    background: #38b52f;
    color: #ffffff;
    font-weight: 700;
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    background: #102536;
    color: #ffffff;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-top: 45px;
    padding-bottom: 45px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: #dbeafe;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4fc63c;
}

.footer-bottom {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 13px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 950px) {

    .header-container {
        min-height: 75px;
    }

    .logo {
        width: 135px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav > a {
        font-size: 14px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        max-width: 700px;
    }

    .search-box {
        max-width: 620px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .homes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 760px) {

    .section-padding {
        padding: 60px 0;
    }

    .header-container {
        min-height: 70px;
    }

    .logo {
        width: 125px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;

        padding: 18px;

        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .main-nav.mobile-open {
        display: flex;
    }

    .main-nav > a {
        padding: 12px 5px;
        border-bottom: 1px solid #f0f2f4;
    }

    .account-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: 5px;
        margin-left: 0;
    }

    .login-link,
    .get-started-link {
        text-align: center;
    }

    .hero-container {
        width: min(94%, 650px);
        padding: 55px 0;
    }

    .hero {
        background-position: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .search-box {
        padding: 22px;
    }

    .search-title h2 {
        font-size: 23px;
    }

    .benefits-grid,
    .homes-grid,
    .steps-grid,
    .account-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:last-child {
        grid-column: auto;
    }

    .home-image-container {
        height: 220px;
    }

    .home-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .view-button {
        width: 100%;
    }

    .account-card {
        padding: 25px;
    }

    .account-buttons {
        flex-direction: column;
    }

    .account-buttons a {
        width: 100%;
        text-align: center;
    }

    .testimonial-form-container,
    .contact-form,
    .contact-info {
        padding: 22px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .cta-button {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .chat-button {
        right: 16px;
        bottom: 16px;
    }

    .chatbox {
        right: 15px;
        bottom: 85px;
        width: calc(100% - 30px);
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 420px) {

    .logo {
        width: 110px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-small-text {
        font-size: 11px;
    }

    .search-box {
        padding: 18px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .home-details {
        padding: 18px;
    }

    .home-image-container {
        height: 200px;
    }

    .chat-messages {
        height: 260px;
    }
}

/* =========================================
   EASY HOMES COMPLETE WEBSITE CSS
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


/* =========================================
   COLORS
========================================= */

:root {
    --easy-blue: #0875c9;
    --easy-blue-dark: #075da1;
    --easy-green: #39b54a;
    --easy-green-dark: #269238;

    --text-dark: #1f2937;
    --text-light: #6b7280;

    --white: #ffffff;
    --light-bg: #f5f9fc;
    --border: #dce5ec;

    --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e7edf2;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.header-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.site-logo {
    width: 145px;
    height: auto;
    display: block;
}


.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}


.main-nav a {
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;

    padding: 8px 2px;

    transition: color 0.2s ease;
}


.main-nav a:hover {
    color: var(--easy-blue);
}


.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    color: var(--easy-blue);

    font-size: 28px;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
}


/* =========================================
   MAIN CONTENT
========================================= */

main {
    width: 100%;
}


section {
    width: 100%;
}


.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   BUTTONS
========================================= */

.btn,
.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 10px 22px;

    border-radius: 7px;

    font-weight: 700;

    border: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.primary-button {
    background: var(--easy-blue);
    color: #ffffff;
}


.primary-button:hover {
    background: var(--easy-blue-dark);
    transform: translateY(-1px);
}


.secondary-button {
    background: var(--easy-green);
    color: #ffffff;
}


.secondary-button:hover {
    background: var(--easy-green-dark);
    transform: translateY(-1px);
}


/* =========================================
   AUTH PAGE
========================================= */

.auth-page {
    background: #f7fafc;
    min-height: 100vh;
}


.auth-main {
    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;
}


.auth-container {
    width: 100%;
    max-width: 500px;

    margin: 0 auto;
}


.auth-card {
    background: #ffffff;

    width: 100%;

    padding: 38px;

    border-radius: 14px;

    border: 1px solid #e5edf2;

    box-shadow: var(--shadow);
}


.auth-logo {
    display: flex;
    justify-content: center;

    margin-bottom: 18px;
}


.auth-logo img {
    width: 155px;
    height: auto;

    display: block;
}


.auth-heading {
    text-align: center;

    margin-bottom: 28px;
}


.auth-heading h1 {
    color: var(--easy-blue);

    font-size: 30px;

    margin-bottom: 8px;
}


.auth-heading p {
    color: var(--text-light);

    font-size: 15px;

    max-width: 390px;

    margin: 0 auto;
}


/* =========================================
   FORM
========================================= */

.auth-form {
    width: 100%;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    color: var(--text-dark);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 7px;
}


.form-group input {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    border: 1px solid #ccd7df;

    border-radius: 7px;

    background: #ffffff;

    color: var(--text-dark);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.form-group input:focus {
    border-color: var(--easy-blue);

    box-shadow: 0 0 0 3px rgba(8, 117, 201, 0.10);
}


.form-group input::placeholder {
    color: #9ca3af;
}


/* =========================================
   FORM OPTIONS
========================================= */

.form-options {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin: 5px 0 22px;
}


.remember-me {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #5f6b76;

    font-size: 13px;
}


.remember-me input {
    width: 15px;
    height: 15px;

    accent-color: var(--easy-blue);
}


.forgot-password {
    color: var(--easy-blue);

    font-size: 13px;

    font-weight: 600;
}


.forgot-password:hover {
    text-decoration: underline;
}


/* =========================================
   LOGIN BUTTON
========================================= */

.auth-button {
    width: 100%;

    min-height: 48px;

    border: none;

    border-radius: 7px;

    background: var(--easy-blue);

    color: #ffffff;

    font-weight: 700;

    font-size: 15px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.auth-button:hover {
    background: var(--easy-blue-dark);

    transform: translateY(-1px);
}


.seller-button {
    background: var(--easy-green);
}


.seller-button:hover {
    background: var(--easy-green-dark);
}


/* =========================================
   AUTH MESSAGE
========================================= */

.auth-message {
    min-height: 22px;

    text-align: center;

    margin-top: 12px;

    font-size: 14px;
}


/* =========================================
   DIVIDER
========================================= */

.auth-divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 25px 0;
}


.auth-divider::before,
.auth-divider::after {
    content: "";

    height: 1px;

    flex: 1;

    background: #e1e7eb;
}


.auth-divider span {
    color: #9ca3af;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================
   AUTH FOOTER
========================================= */

.auth-footer {
    text-align: center;
}


.auth-footer p {
    color: #6b7280;

    font-size: 14px;

    margin-bottom: 10px;
}


.auth-secondary-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 45px;

    border: 1px solid var(--easy-blue);

    border-radius: 7px;

    color: var(--easy-blue);

    font-weight: 700;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.auth-secondary-button:hover {
    background: var(--easy-blue);

    color: #ffffff;
}


/* =========================================
   OTHER LOGIN LINK
========================================= */

.seller-link {
    text-align: center;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #edf1f4;
}


.seller-link p {
    color: #6b7280;

    font-size: 13px;

    margin-bottom: 5px;
}


.seller-link a {
    color: var(--easy-green);

    font-size: 14px;

    font-weight: 700;
}


.seller-link a:hover {
    text-decoration: underline;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #f4f8fb;

    border-top: 1px solid #e5edf2;

    margin-top: auto;
}


.footer-container {
    width: 92%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 35px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 15px;
}


.footer-brand img {
    width: 100px;

    height: auto;
}


.footer-brand p {
    color: #6b7280;

    font-size: 13px;
}


.footer-links {
    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}


.footer-links a {
    color: #4b5563;

    font-size: 13px;

    font-weight: 600;
}


.footer-links a:hover {
    color: var(--easy-blue);
}


.footer-bottom {
    text-align: center;

    border-top: 1px solid #e2e9ee;

    padding: 15px 20px;
}


.footer-bottom p {
    color: #8a949d;

    font-size: 12px;
}


/* =========================================
   GENERAL CARD SUPPORT
========================================= */

.card {
    background: #ffffff;

    border: 1px solid #e5edf2;

    border-radius: 10px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .header-container {
        min-height: 72px;
    }


    .site-logo {
        width: 125px;
    }


    .menu-toggle {
        display: flex;
    }


    .main-nav {
        display: none;

        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        background: #ffffff;

        border-bottom: 1px solid #e5edf2;

        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);

        padding: 15px 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }


    .main-nav.mobile-open {
        display: flex;
    }


    .main-nav a {
        width: 100%;

        padding: 13px 10px;

        border-bottom: 1px solid #f0f3f5;
    }


    .main-nav a:last-child {
        border-bottom: none;
    }


    .auth-main {
        padding: 40px 15px;
    }


    .auth-card {
        padding: 30px 22px;
    }


    .auth-heading h1 {
        font-size: 27px;
    }


    .footer-container {
        flex-direction: column;

        align-items: center;

        text-align: center;

        padding: 30px 0;
    }


    .footer-brand {
        flex-direction: column;

        gap: 8px;
    }


    .footer-links {
        justify-content: center;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .header-container {
        width: 90%;
    }


    .site-logo {
        width: 110px;
    }


    .auth-main {
        padding: 25px 12px;
    }


    .auth-card {
        padding: 25px 17px;

        border-radius: 10px;
    }


    .auth-logo img {
        width: 130px;
    }


    .auth-heading h1 {
        font-size: 24px;
    }


    .auth-heading p {
        font-size: 14px;
    }


    .form-options {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    .form-group input {
        height: 46px;
    }


    .auth-button {
        min-height: 46px;
    }


    .footer-links {
        gap: 12px;

        flex-direction: column;
    }

}