﻿/* Company Overview Section */
.company-overview-section {
    padding: 40px 0;
}

.company-overview-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.company-overview-text {
    flex: 1;
    max-width: 50%;
    padding-left: 60px;
}

.company-overview-heading {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
    line-height: 1.2;
}

.company-overview-description {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 24px;
}

.company-overview-description:last-of-type {
    margin-bottom: 0;
}

.company-overview-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-overview-visual img,
.company-overview-image {
    width: 100%;
    height: 504px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    position: relative;
}

.journey-header {
    margin-bottom: 100px;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-image: url('../images/frontend-pages/about-badge-ourjourney.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
}

.journey-badge .badge-label {
    display: inline-flex;
    align-items: center;
    transform: rotate(-4.03deg);
}

.journey-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.journey-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.journey-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #EEE3F8;
    padding: 40px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 304px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .journey-card:nth-child(odd) {
        transform: translateY(-60px);
    }

    .journey-card:nth-child(even) {
        transform: translateY(60px);
    }

.journey-card-number {
    font-size: 64px;
    font-weight: 700;
    color: #8105BD;
    margin-bottom: 16px;
    line-height: 1;
}

.journey-card-label {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.journey-card-description {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .company-overview-section {
        padding: 30px 0;
    }

    .company-overview-grid {
        gap: 40px;
    }

    .company-overview-text {
        padding-left: 40px;
    }

    .company-overview-heading {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .company-overview-description {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .company-overview-visual img,
    .company-overview-image {
        height: 400px;
    }

    .journey-section {
        padding: 60px 0 100px;
    }


    .journey-badge {
        font-size: 42px;
    }

    .journey-title {
        font-size: 38px;
    }

    .journey-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .journey-card {
        padding: 32px;
    }

    .lang-vi .journey-card {
        height: auto;
    }

    .journey-card:nth-child(odd) {
        transform: translateY(-40px);
    }

    .journey-card:nth-child(even) {
        transform: translateY(40px);
    }

    .journey-card-number {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .company-overview-grid {
        flex-direction: column;
        gap: 40px;
    }

    .company-overview-text,
    .company-overview-visual {
        max-width: 100%;
    }

    .company-overview-heading {
        font-size: 36px;
    }

    .company-overview-visual img,
    .company-overview-image {
        width: 100%;
        height: auto;
    }

    .journey-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-card:nth-child(odd) {
        transform: translateY(-20px);
    }

    .journey-card:nth-child(even) {
        transform: translateY(20px);
    }

    .lang-vi .journey-card-label{
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .company-overview-visual img,
    .company-overview-image {
        width: 80%;
        max-width: 720px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .company-overview-section {
        padding: 20px 0;
    }

    .company-overview-text {
        padding-left: 20px;
    }

    .company-overview-heading {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .company-overview-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .journey-section {
        padding: 40px 0;
    }

    .journey-header {
        margin-bottom: 40px;
    }

    .journey-badge {
        padding: 10px 24px;
        font-size: 30px;
    }

    .journey-title {
        font-size: 26px;
    }

    .journey-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-card {
        padding: 24px;
        transform: none !important;
        height: auto;
    }

    .journey-card-number {
        font-size: 48px;
    }

    .journey-card-label,
    .lang-vi .journey-card-label {
        font-size: 13px;
    }

    .journey-card-description {
        font-size: 15px;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0 40px;
    position: relative;
}

.why-choose-section .custom-container {
    position: relative;
    margin: 0 auto;
    max-width: 1386px;
    width: calc(100% - 32px);
    padding: 80px 80px;
    background: linear-gradient(to right, rgba(238, 227, 248, 0.1) 0%, rgba(178, 95, 253, 0.3) 100%);
    border-radius: 24px;
    overflow: hidden;
}

.why-choose-section .custom-container::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(to right, #FFFFFF 0%, #EEE3F8 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.why-choose-section .custom-container > * {
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-heading {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 700;
    color: #8105BD;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.why-choose-content {
    flex: 1;
}

.why-choose-description {
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    margin-top: 0;
}

.why-choose-content p {
    margin-top: 0;
    margin-bottom: 0;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;
}

.why-choose-list li {
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    padding-left: 24px;
    position: relative;
}

.why-choose-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #000000;
    font-size: 18px;
    line-height: 1.4;
}

.why-choose-conclusion {
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

/* Why Choose Section Responsive */
@media (max-width: 1200px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-section .custom-container {
        padding: 48px 32px;
    }

    .why-choose-grid {
        gap: 40px;
    }

    .why-choose-title {
        font-size: 42px;
    }

    .why-choose-description,
    .why-choose-list li,
    .why-choose-conclusion {
        font-size: 18px;
        line-height: 1.4;
    }
}

@media (max-width: 992px) {
    .why-choose-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .why-choose-heading {
        width: 100%;
    }

   /* .why-choose-title {
        font-size: 36px;
    }*/

    .why-choose-title br.why-choose-br {
        display: none;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-section .custom-container {
        padding: 32px 24px;
        width: calc(100% - 16px);
    }

    .why-choose-title {
        font-size: 32px;
    }

    .why-choose-description,
    .why-choose-list li,
    .why-choose-conclusion {
        font-size: 16px;
        line-height: 1.4;
    }

    .why-choose-list li {
        padding-left: 20px;
    }

    .why-choose-list li::before {
        left: 8px;
    }
}


@media (max-width: 576px) {
    .lang-vi .why-choose-section .custom-container {
        padding: 32px 12px;
    }

    .lang-vi .why-choose-title {
        font-size: 30px;
    }
}

@media (max-width: 372px) {
    .lang-vi .why-choose-title {
        font-size: 27px;
    }

    .lang-vi .team-title, 
    .lang-vi .partners-title {
        font-size: 30px;
    }
}

/* Team Section */
.team-section {
    padding: 40px;
}

.team-header {
    margin-bottom: 40px;
}

.team-title {
    font-size: 48px;
    font-weight: 700;
    color: #8105BD;
    margin-bottom: 12px;
}

.team-subtitle {
    font-size: 20px;
    color: #011212;
    margin: 0;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    padding: 8px 8px 20px;
    display: flex;
    flex-direction: column;
}

.team-card-image {
    width: 100%;
    height: 208px;
    background-color: #EEE3F8;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #2E2E2E;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.team-card-description {
    font-size: 14px;
    color: #2E2E2E;
    line-height: 1.6;
    margin: 0;
}

/* Team Section Responsive */
@media (max-width: 1200px) {
    .team-section {
        padding: 30px 0;
    }

    .team-title {
        font-size: 42px;
    }

    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .team-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 30px 0;
    }

    .team-header {
        margin-bottom: 32px;
    }

    .team-title {
        font-size: 32px;
    }

    .team-subtitle {
        font-size: 16px;
    }

    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card-image {
        height: 200px;
        margin-bottom: 12px;
    }

    .team-card-name {
        font-size: 18px;
        margin: 0 0 8px 0;
    }

    .team-card-description {
        font-size: 14px;
        margin: 0;
    }
}

.partners-section {
    padding: 60px 0;
}

.partners-container {
    padding: 0;
}

.partners-header {
    margin-bottom: 32px;
}

.partners-title {
    font-size: 48px;
    font-weight: 700;
    color: #8105BD;
    margin: 0;
    text-align: center;
}

.partners-grid {
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    margin-bottom: 80px;
}

.partner-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    padding: 20px;
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    max-width: 278px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.care-section {
    padding: 60px 0;
}

.care-grid {
    display: grid;
    grid-template-columns: minmax(280px, 600px) minmax(280px, 1fr);
    align-items: stretch;
    gap: 50px;
}

.care-image-wrapper {
    width: 100%;
    max-width: 600px;
    height: 400px;
    align-self: center;
}

.care-image {
    width: 100%;
    height: 100%;
    max-width: 600px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.care-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-start;
    min-height: 400px;
}

.care-title {
    font-size: 56px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.care-description {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
}

.care-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Button responsive overrides inside care section */
.care-actions .btn {
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .care-title{
        font-size: 48px;
    }
    .care-grid{
        gap: 20px;
    }
    
    .care-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .care-actions .btn-gradient,
    .care-actions .btn-outline-rounded {
        width: 100%;
        text-align: center;
        justify-content: center;
        height: 48px;
        padding: 0 20px;
        font-size: 18px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .care-actions {
        gap: 10px;
    }

    .care-actions .btn-gradient,
    .care-actions .btn-outline-rounded {
        height: 48px;
        padding: 0 24px;
        font-size: 18px;
        line-height: 48px;
    }
}

@media (max-width: 576px) {
    .care-actions {
        gap: 8px;
    }

    .care-actions .btn-gradient,
    .care-actions .btn-outline-rounded {
        width: 100%;
        text-align: center;
        justify-content: center;
        height: 44px;
        padding: 0 16px;
        font-size: 16px;
        line-height: 44px;
    }
}

@media (max-width: 1300px) {
    .partners-section {
        padding: 40px 0;
    }
}

@media (max-width: 1024px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-grid {
        padding: 0 24px;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 50px;
    }

    .partner-card {
        max-width: 100%;
        height: 180px;
        padding: 16px;
    }

    .partner-card img {
        max-width: 220px;
    }

    .care-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 32px;
        align-items: center;
    }

    .care-actions {
        gap: 20px;
    }

    .care-actions .btn-gradient,
    .care-actions .btn-outline-rounded {
        width: 100%;
        text-align: center;
        justify-content: center;
        height: 48px;
        padding: 0 20px;
        font-size: 18px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 30px 0;
    }

    .partners-title {
        font-size: 36px;
    }

    .partners-grid {
        padding: 0 12px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .partner-card {
        height: 170px;
        padding: 14px;
    }

    .partner-card img {
        max-width: 200px;
    }

    .care-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
        justify-items: center;
    }

    .care-title {
        font-size: 32px;
    }

    .care-description {
        font-size: 16px;
        max-width: 100%;
    }

    .care-content {
        min-height: auto;
        justify-content: flex-start;
        gap: 16px;
    }

    .care-image-wrapper {
        height: auto;
        margin: 0 auto;
    }

    .care-image {
        height: auto;
        max-height: 100%;
    }
}

@media (max-width: 576px) {
    .partners-title {
        font-size: 32px;
    }

    .partners-grid {
        padding: 0 8px;
        gap: 10px;
        margin-bottom: 40px;
    }

    .partner-card {
        height: 180px;
        padding: 16px;
    }

    .partner-card img {
        max-width: 220px;
    }

    .care-section {
        padding: 40px 0;
    }

    .care-grid {
        gap: 16px;
        align-items: flex-start;
    }

    .care-title {
        font-size: 28px;
    }

    .care-description {
        font-size: 15px;
        max-width: 100%;
    }

    .care-content {
        min-height: auto;
        justify-content: flex-start;
    }

    .care-image-wrapper {
        height: auto;
    }
}
