/* ============================================
   page_contact.css - Contact Us Page
   ============================================ */

/* Page Container */
.pc-contact-page { padding: 60px 0; }

/* Hero Bar */
.pc-hero-bar {
    margin-bottom: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #0E384C 0%, #1A5F7A 100%);
    border-radius: 16px;
}
.pc-hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.pc-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}
.pc-hero-badge {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 30px;
}
.pc-hero-badge i {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}
.pc-hero-badge h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.pc-hero-badge p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Section Title */
.pc-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0E384C;
    margin-bottom: 30px;
    text-align: center;
}
.pc-section-desc {
    font-size: 16px;
    color: #527282;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Cards */
.pc-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(14,56,76,0.06);
}
.pc-info-icon {
    width: 60px;
    height: 60px;
    background: #EFF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.pc-info-icon i { color: #0E384C; font-size: 24px; }
.pc-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 10px;
}
.pc-info-card p {
    font-size: 14px;
    color: #527282;
    line-height: 1.6;
}

/* Detail Info Row */
.pc-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(14,56,76,0.06);
}
.pc-detail-row {
    display: flex;
    align-items: flex-start;
}
.pc-detail-icon {
    width: 50px;
    height: 50px;
    background: #EFF8FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.pc-detail-icon i { color: #0E384C; font-size: 20px; }
.pc-detail-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 10px;
}
.pc-detail-card p {
    font-size: 14px;
    color: #527282;
    margin-bottom: 5px;
}
.pc-content-block {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

/* Quote Form Section */
.pc-form-section {
    margin-bottom: 60px;
    padding: 50px;
    background: #f8fafc;
    border-radius: 16px;
}
.pc-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 8px;
}
.pc-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s;
}
.pc-form-input:focus {
    border-color: #0E384C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(14,56,76,0.1);
}
.pc-form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}
.pc-form-select:focus {
    border-color: #0E384C;
    outline: none;
}
.pc-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    resize: none;
}
.pc-form-textarea:focus {
    border-color: #0E384C;
    outline: none;
}
/* Checkbox Group */
.pc-checkbox-group {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
}
.pc-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}
.pc-checkbox-label:hover {
    background: #f1f5f9;
}
.pc-checkbox-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #0E384C;
}
.pc-checkbox-text {
    font-size: 14px;
    color: #527282;
}

/* Radio Group */
.pc-radio-group {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
}
.pc-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}
.pc-radio-label:hover {
    background: #f1f5f9;
}
.pc-radio-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #0E384C;
}
.pc-radio-text {
    font-size: 14px;
    color: #527282;
}

/* Legacy styles for compatibility */
.pc-form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.pc-form-check-label input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.pc-form-check-text {
    font-size: 14px;
    color: #527282;
}
.pc-form-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.pc-form-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pc-form-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.pc-form-radio-label input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Auto-generated formguide checkbox/radio styles */
#contactFormGuide label.ib {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 16px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #4a5e6b;
}
#contactFormGuide input.pc-form-radio,
#contactFormGuide input.pc-form-checkbox {
    width: 16px;
    height: 16px;
    margin: 0;
}
.pc-form-submit {
    width: 100%;
    padding: 14px;
    background: #0E384C;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.pc-form-submit:hover { background: #1A5F7A; }

/* Cooperation Models */
.pc-coop-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(14,56,76,0.06);
}
.pc-coop-icon {
    width: 60px;
    height: 60px;
    background: #EFF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.pc-coop-icon i { color: #0E384C; font-size: 24px; }
.pc-coop-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 10px;
}
.pc-coop-card p {
    font-size: 14px;
    color: #527282;
    line-height: 1.6;
}

/* Facility Visit */
.pc-map-placeholder {
    background: #f8fafc;
    border-radius: 12px;
    height: 400px;
    overflow: hidden;
}
.pc-map-inner {
    width: 100%;
    height: 100%;
    background: #EFF8FF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pc-map-inner i {
    color: #0E384C;
    font-size: 64px;
    margin-bottom: 20px;
}
.pc-map-inner h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 10px;
}
.pc-map-inner p {
    font-size: 14px;
    color: #527282;
    text-align: center;
    max-width: 300px;
}
.pc-visit-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(14,56,76,0.06);
    height: 400px;
}
.pc-visit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0E384C;
    margin-bottom: 20px;
}
.pc-visit-card p {
    font-size: 14px;
    color: #527282;
    line-height: 1.6;
    margin-bottom: 30px;
}
.pc-visit-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 6px;
}
.pc-visit-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
}
.pc-visit-form-input:focus {
    border-color: #0E384C;
    outline: none;
}
.pc-visit-submit {
    width: 100%;
    padding: 12px;
    background: #0E384C;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.pc-visit-submit:hover { background: #1A5F7A; }
