/* =========================================
           3. Sub Visual Section
           ========================================= */
.sub-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/main_slide/m1.jpg') center/cover;
    color: #fff;
    text-align: center;
}

@media (max-width: 1024px) {
    .sub-visual {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .sub-visual {
        height: 300px;
    }
}

.sv-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .sv-title {
        font-size: 40px;
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .sv-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

.sv-desc {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .sv-desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .sv-desc {
        font-size: 15px;
    }
}

/* =========================================
           4. Brand Story Section
           ========================================= */
.section-story {
    padding: 100px 0;
}

@media (max-width: 1024px) {
    .section-story {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-story {
        padding: 60px 0;
    }
}

.story-grid {
    display: grid;
    gap: 60px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
    .story-grid {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .story-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }
}

.story-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #439aff;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .story-text h3 {
        margin-bottom: 12px;
    }
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .story-text h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .story-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .story-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* =========================================
           5. CEO Message Section
           ========================================= */
.section-ceo {
    padding: 100px 0;
    background-color: #f8f9fa;
}

@media (max-width: 1024px) {
    .section-ceo {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-ceo {
        padding: 60px 0;
    }
}

.ceo-img {
    width:100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.ceo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-container {
    display: grid;
    gap: 20px;
    align-items: center;
    position: relative;
    padding: 10px;
    border-radius: 20px;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
    .ceo-container {
        padding: 20px 10px;
        gap: 30px;
    }
    .ceo-img {
        height: 250px;
        order:1;
    }
    .ceo-text {
        order:2;
    }
    .ceo-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.quote-mark {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 100px;
    line-height: 1;
    color: #e9ecef;
}

@media (max-width: 767px) {
    .quote-mark {
        top: 20px;
        left: 20px;
        font-size: 60px;
    }
}

.ceo-text {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: left;
}

.ceo-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .ceo-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
}

.ceo-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .ceo-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

.ceo-sign {
    font-size: 18px;
    font-weight: 700;
    color: #002b64;
}

/* =========================================
           6. Core Values Section
           ========================================= */
.section-values {
    padding: 100px 0;
}

@media (max-width: 1024px) {
    .section-values {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-values {
        padding: 60px 0;
    }
}

.common-header {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .common-header {
        margin-bottom: 40px;
    }
}

.common-title {
    font-size: 40px;
    font-weight: 800;
    color: #111;
}

@media (max-width: 1024px) {
    .common-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .common-title {
        font-size: 28px;
    }
}

.value-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .value-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
}

.value-card {
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .value-card {
        padding: 30px 20px;
    }
}

.value-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    border-color: transparent;
}

.value-card i {
    font-size: 50px;
    color: #439aff;
    margin-bottom: 24px;
}



@media (max-width: 767px) {
    .value-card i {
        font-size: 40px;
        margin-bottom: 16px;
    }
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .value-title {
        font-size: 20px;
    }
}

.value-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 767px) {
    .value-desc {
        font-size: 15px;
    }
}

/* =========================================
           7. Process Section
           ========================================= */
.section-process {
    padding: 100px 0;
    background: #002b64;
    color: #fff;
}

@media (max-width: 1024px) {
    .section-process {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-process {
        padding: 60px 0;
    }
}

.process-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .process-flow {
        gap: 40px;
        flex-direction: column;
    }
}

.process-line {
    position: absolute;
    top: 30px;
    left: 0;
    right:0;
    margin:auto;
    z-index: 1;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .process-line {
        display: none;
    }
}

.process-step {
    position: relative;
    z-index: 2;
    width: 180px;
    text-align: center;
}

@media (max-width: 767px) {
    .process-step {
        width: 100%;
    }
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-weight: 800;
    color: #002b64;
}

@media (max-width: 767px) {
    .step-num {
        margin: 0 auto 12px;
    }
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .step-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.step-desc {
    font-size: 14px;
    opacity: 0.7;
}

/* =========================================
           8. Location Section
           ========================================= */
.section-location {
    padding: 100px 0;
}

@media (max-width: 1024px) {
    .section-location {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-location {
        padding: 60px 0;
    }
}

.map-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background: #eee;
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .map-box {
        height: 300px;
        margin-bottom: 30px;
    }
}

.loc-info-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .loc-info-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
}

.loc-item {
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
}

@media (max-width: 767px) {
    .loc-item {
        padding: 20px;
    }
}

.loc-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #439aff;
    margin-bottom: 8px;
}

.loc-val {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

@media (max-width: 767px) {
    .loc-val {
        font-size: 16px;
    }
}