/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #00508a 100%);
    padding: 50px 0 40px;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.contact-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

.contact-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 15px;
    display: inline-flex;
    justify-content: center;
}

.contact-hero .breadcrumb li {
    display: inline;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-hero .breadcrumb li a {
    color: #ffb606;
    text-decoration: none;
}

.contact-hero .breadcrumb li a:hover {
    text-decoration: underline;
}

.contact-hero .breadcrumb>li+li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-hero .breadcrumb .active {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 50px 0 60px;
    background: #f8f9fa;
}

/* Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eef1f5;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-card .card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.info-card .card-icon.email-icon {
    background: linear-gradient(135deg, #003366, #0056a8);
}

.info-card .card-icon.time-icon {
    background: linear-gradient(135deg, #e8960c, #ffb606);
}

.info-card .card-icon.faq-icon {
    background: linear-gradient(135deg, #1b8c4f, #28a745);
}

.info-card .card-icon.trust-icon {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
}

.info-card .card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.info-card .card-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-card .card-content a {
    color: #003366;
    font-weight: 600;
    text-decoration: none;
}

.info-card .card-content a:hover {
    text-decoration: underline;
    color: #0056a8;
}

/* Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef1f5;
}

.contact-form-card .form-header {
    margin-bottom: 25px;
}

.contact-form-card .form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.contact-form-card .form-header p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Form Fields */
.contact-form-card .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form-card .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-card .form-group label .required {
    color: #dc3545;
    margin-left: 2px;
}

.contact-form-card .form-control {
    border: 1.5px solid #dde2e8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fafbfc;
    height: auto;
}

.contact-form-card .form-control:focus {
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
    background: #fff;
    outline: none;
}

.contact-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form-card select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 36px;
}

.contact-form-card .char-count {
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

/* Submit Button */
.contact-form-card .btn-submit {
    background: linear-gradient(135deg, #003366, #0056a8);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form-card .btn-submit:hover {
    background: linear-gradient(135deg, #002244, #003f7d);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.contact-form-card .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-form-card .btn-submit i {
    font-size: 14px;
}

/* Hide reCAPTCHA badge - invisible captcha doesn't need visible badge */
.contact-form-card .g-recaptcha {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Error Messages */
.contact-form-card .error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-cards {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 26px;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .contact-section {
        padding: 30px 0 40px;
    }
}