/* Contact Page Styles */


.contact-page-header {
    background: #043266;
    padding: 72px 0;
    color: white;
}

.contact-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-page .subtitle {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 50%;
}

.contact-page-header {
    background: #043266;
    color: white;
    padding: 120px 40px;
    margin-bottom: 3rem;
}

.contact-page-header .container {
    padding: 0 150px;
    margin: 0;
}

.contact-page-header h1 {
    color: white;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-page-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    font-size: 15px;
}

.contact-page-header .email-info,
.contact-page-header .phone-info,
.contact-page-header .fax-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.contact-page-header .email-info a,
.contact-page-header .phone-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-page-header .email-info a:hover,
.contact-page-header .phone-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-page-header .fax-info span {
    color: white;
}

@media (max-width: 768px) {
    .contact-page-header .container {
        padding: 0 20px;
    }

    .contact-page-header h1 {
        font-size: 32px;
    }

    .contact-page-header .subtitle {
        font-size: 16px;
    }

    .contact-info-items {
        flex-direction: column;
        gap: 20px;
    }
}

.contact-page .form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-page .form-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-page .form-group {
    margin-bottom: 20px;
}

.contact-page .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-page label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.contact-page label .required {
    color: #666;
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page input[type="tel"],
.contact-page select,
.contact-page textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
    outline: none;
    border-color: #1E90FF;
}

.contact-page textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.contact-page .file-upload {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.contact-page .file-upload:hover {
    border-color: #1E90FF;
    background: #f0f8ff;
}

.contact-page .file-upload-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    opacity: 0.5;
}

.contact-page .file-upload-text {
    font-size: 14px;
    color: #666;
}

.contact-page .file-upload-text a {
    color: #1E90FF;
    text-decoration: none;
}

.contact-page .file-upload input[type="file"] {
    display: none;
}

.contact-page .checkbox-group {
    margin: 24px 0;
}

.contact-page .checkbox-item {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-page .checkbox-item input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-page .checkbox-item label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.contact-page .submit-btn {
    background: #1E90FF;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 10px;
}

.contact-page .submit-btn:hover {
    background: #1873CC;
}

.contact-page .footer-note {
    text-align: center;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    padding: 20px;
}

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

    .contact-page h1 {
        font-size: 32px;
    }

    .contact-page .form-section {
        padding: 24px;
    }
}

