/* === HOME PAGE SPECIFIC STYLES === */

/* Hero Section Override for Home */
.home .hero-section {
    position: relative;
    background: #fff;
    padding-top: 60px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.home .hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 160px;
    position: relative;
    padding-bottom: 0px;
    width: 100%;
    order: 1;
    overflow: visible;
}

.home .hero-content {
    display: flex;
    flex-direction: row;
    gap: 100px;
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-top: 40px;
    padding-bottom: 120px;
}

.home .hero-left {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.home .hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    width: 100%;
}

.home .hero-title .title-dark {
    display: block;
    color: #617F5B;
    margin-bottom: 0;
}

.home .hero-title .title-light {
    display: block;
    color: #D8D8D8;
    margin-top: -8px;
}

.home .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    padding-top: 40px;
    width: 100%;
}

.home .hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #333;
    margin: 0;
    max-width: 450px;
}

.home .btn-consult {
    padding: 16px 36px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.home .btn-consult:hover {
    background: #617F5B;
    color: #fff;
    border-color: #617F5B;
}

/* Stats Section */
.home .stats-section {
    background: #fff;
    border-radius: 60px;
    padding: 32px 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #617F5B;
    position: relative;
    width: calc(100% + 320px);
    max-width: calc(100% + 320px);
    margin-left: -160px;
    margin-right: -160px;
    margin-bottom: -68px;
    left: 0;
    transform: none;
    height: 136px;
    z-index: 10;
}

.home .stat-item {
    text-align: center;
    padding: 8px 0;
}

.home .stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #617F5B;
    margin-bottom: 12px;
    line-height: 1;
}

.home .stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 150%;
}

/* Hero Image */
.home .hero-image {
    position: relative;
    width: 100%;
    height: 700px;
    z-index: 1;
    margin-top: 0;
    order: 2;
    clear: both;
}

.home .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .home .hero-container {
        padding: 60px 40px 0;
    }

    .home .hero-content {
        flex-direction: column;
        gap: 60px;
        width: auto;
        height: auto;
        padding-bottom: 140px;
    }

    .home .hero-title {
        font-size: 48px;
    }

    .home .stats-section {
        padding: 28px 40px;
        gap: 32px;
        width: calc(100% + 80px);
        height: auto;
        left: 0;
        right: 0;
        margin-left: -40px;
        position: relative;
        top: auto;
        transform: none;
    }

    .home .stat-number {
        font-size: 32px;
    }

    .home .stat-label {
        font-size: 14px;
        line-height: 140%;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .home .hero-section {
        min-height: auto;
    }

    .home .hero-container {
        padding: 40px 20px 0;
        padding-bottom: 40px;
    }

    .home .hero-content {
        flex-direction: column;
        gap: 32px;
        width: auto;
        height: auto;
        margin-bottom: 0;
        padding-bottom: 30px;
    }

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

    .home .hero-description {
        max-width: 100%;
    }

    .home .stats-section {
        flex-wrap: wrap;
        padding: 20px 16px;
        gap: 16px 12px;
        width: calc(100% + 40px);
        height: auto;
        left: 0;
        right: 0;
        margin-left: -20px;
        top: auto;
        border-radius: 28px;
        position: relative;
        margin-top: 40px;
        transform: none;
    }

    .home .stat-item {
        flex: 0 0 calc(50% - 6px);
        padding: 0;
    }

    .home .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .home .stat-label {
        font-size: 10px;
        line-height: 140%;
    }

    .home .hero-image {
        position: relative;
        height: 300px;
        margin-top: 40px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .home .hero-container {
        padding: 32px 16px 0;
        padding-bottom: 30px;
    }

    .home .hero-content {
        flex-direction: column;
        gap: 24px;
        padding-bottom: 20px;
        height: auto;
        min-height: auto;
    }

    .home .hero-right {
        gap: 24px;
    }

    .home .hero-title {
        font-size: 28px;
        padding: 0 8px;
        line-height: 1.2;
    }

    .home .hero-title .title-light {
        margin-top: 4px;
    }

    .home .hero-description {
        font-size: 14px;
        max-width: 100%;
    }

    .home .btn-consult {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        display: flex;
    }

    .home .stats-section {
        flex-wrap: wrap;
        flex-direction: row;
        padding: 20px 24px;
        width: calc(100% + 0px);
        height: auto;
        left: 0;
        right: 0;
        margin-left: 0px;
        top: auto;
        border-radius: 24px;
        gap: 16px 12px;
        position: relative;
        margin-top: 30px;
        transform: none;
    }

    .home .stat-item {
        flex: 0 0 calc(50% - 6px);
        padding: 8px 0;
    }

    .home .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .home .stat-label {
        font-size: 10px;
        line-height: 140%;
    }

    .home .hero-image {
        height: 250px;
        margin-top: 40px;
    }
}
