/* Contact Page Styles - matching 5Pay Premium Design */

/* Hide default page title */
.entry-title {
    display: none !important;
}

/* Contact Hero Section */
.contact-hero-section {
    background-color: #0b1c34; /* Dark blue/navy background */
    padding: 100px 0 80px;
    text-align: center;
    color: #ffffff;
}

.contact-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Contact Info Strip (Between Hero and Form) */
.pxl-contact-info-strip {
    background-color: #ffffff;
    padding: 60px 0 30px;
}

.pxl-info-strip-inner {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.pxl-info-item-simple {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pxl-info-icon-box {
    width: 60px;
    height: 60px;
    background-color: #f7f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #5f6973;
    border-radius: 4px;
}

.pxl-info-text {
    display: flex;
    flex-direction: column;
}

.pxl-info-label {
    font-size: 14px;
    color: #ffcd28; /* Gold/yellow label from design */
    font-weight: 500;
    margin-bottom: 5px;
}

.pxl-info-value {
    font-size: 18px;
    color: #5f6973;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.pxl-info-value:hover {
    color: #1f5dae;
}

/* Main Contact Section (Info + Form) */
.pxl-contact-form-section {
    padding: clamp(50px, 8vw, 80px) 0;
    background-color: #ffffff;
}

.pxl-contact-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.pxl-contact-info-column,
.pxl-contact-form-column {
    padding: 0 15px;
    width: 100%; /* Default to full width for mobile */
}

@media (min-width: 992px) {
    .pxl-contact-info-column,
    .pxl-contact-form-column {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .pxl-contact-info-column {
        margin-bottom: 60px;
    }
    .pxl-info-strip-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .pxl-contact-info-inner {
        padding-right: 0;
        text-align: center;
    }
    .pxl-social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 50px;
    }
    .contact-hero-title {
        font-size: 36px;
    }
    .pxl-info-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .pxl-contact-email {
        font-size: 22px;
    }
    .pxl-info-strip-inner {
        gap: 20px;
    }
    .pxl-info-item-simple {
        width: 100%;
        justify-content: center;
    }
}

/* Left Column: Info */
.pxl-contact-info-inner {
    padding-right: 50px;
}

.pxl-info-title {
    font-size: 42px;
    font-weight: 800;
    color: #194341;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.pxl-contact-info-block {
    margin-bottom: 40px;
}

.pxl-contact-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #194341;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.pxl-contact-email {
    font-size: 32px;
    font-weight: 700;
    color: #194341;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.pxl-contact-email:hover {
    color: #ffcd28;
}

.pxl-contact-addresses {
    margin-top: 10px;
}

.pxl-address-item {
    font-size: 18px;
    color: #5f6973;
    margin-bottom: 8px;
    font-weight: 400;
}

.pxl-address-item strong {
    color: #194341;
    font-weight: 700;
}

/* Social Icons */
.pxl-social-links {
    display: flex;
    gap: 15px;
}

.pxl-social-icon {
    width: 60px;
    height: 60px;
    background: #f7f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #194341;
    font-size: 24px;
    transition: all 0.3s;
    text-decoration: none;
}

.pxl-social-icon:hover {
    background: #1f5dae;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Right Column: Form */
.pxl-contact-form-inner {
    background: #ffffff;
}

.pxl-form-title {
    font-size: 36px;
    font-weight: 700;
    color: #194341;
    margin-bottom: 40px;
}

.pxl-form-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.pxl-form-field {
    padding: 0 10px;
    margin-bottom: 20px;
}

.pxl-form-field.col-6 { width: 50%; }
.pxl-form-field.col-12 { width: 100%; }

@media (max-width: 575px) {
    .pxl-form-field.col-6 { width: 100%; }
}

.pxl-form-field input,
.pxl-form-field textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #eef1f2;
    background: #f7f8f8;
    border-radius: 4px;
    font-size: 15px;
    color: #5f6973;
    transition: all 0.3s;
    outline: none;
}

.pxl-form-field input:focus,
.pxl-form-field textarea:focus {
    border-color: #1f5dae;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(31, 93, 174, 0.08);
}

.pxl-form-acceptance {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.pxl-form-acceptance label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #5f6973;
    cursor: pointer;
}

.pxl-form-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.pxl-form-submit {
    margin-top: 10px;
}

.pxl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.pxl-btn-primary {
    background: #1f5dae;
    color: #ffffff;
}

.pxl-btn-primary:hover {
    background: #194341;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Map Section */
.pxl-map-wrapper {
    width: 100%;
    margin-bottom: 0;
    border-top: 1px solid #eee;
}

.pxl-map-inner iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%); /* Slight grayscale for professional look */
}
