@charset "UTF-8";


#section_07 {}

#section_07 .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

#section_07 .contact-card {
    /* background: #00738B; */
    background: linear-gradient(15deg, #50ABBD 0%, #00738B 100%);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

/* 線條bg */
#section_07 .contact-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(200, 146, 42, 0.08) 6px, rgba(200, 146, 42, 0.08) 7px);
    border-radius: 50%;
}


#section_07 .contact-topic {
    font-size: 0.9rem;
    color: #FFD600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    /* opacity removed for contrast */
}

#section_07 .contact-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

#section_07 .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#section_07 .contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    /* font-size: 15px; */
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
    line-height: 1.6;
}

#section_07 .contact-row .c-label {
    color: #F5EAB7;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    min-width: 32px;
    padding-top: 2px;
    /* opacity removed for contrast */
}

#section_07 .content-block-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00738B;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 3rem;
}

#section_07 .content-block-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #7F8B46;
    flex-shrink: 0;
}


#section_07 .four-square {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2rem;
}

#section_07 .four-square .block {
    background-color: #fff;
    padding: 24px 20px;
    width: calc(25% - 1.5rem);
    flex-shrink: 0;
    border: 1px solid rgba(26, 26, 46, 0.08)
}

#section_07 .square-area {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFD600;
    font-size: 0.9rem;
    padding: 0 0 24px 0;
}

#section_07 .square-area::before {
    content: '';
    width: 64px;
    height: 42px;
    background: url('../../../../images/Vmap/section_bg_006.webp') no-repeat center / contain;
    flex-shrink: 0;
    pointer-events: none;
}

#section_07 .four-square h3 {
    color: #00738B;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    font-size: 1.4rem;
}


@media (max-width: 1024px) {
    #section_07 .contact-grid {
        grid-template-columns: 1fr;
    }

    #section_07 .four-square .block {
        width: calc(50% - 2rem);
    }

}

@media (max-width: 768px) {
    #section_07 .contact-grid {
        grid-template-columns: 1fr;
    }

    #section_07 .four-square .block {
        width: 100%;
    }
}