/* ==========================================================================
   CONTACT PAGE STYLES (Pixelhue Design)
   ========================================================================== */

.contact-page-section {
    padding: 50px 0 90px;
    background-color: #ffffff;
    width: 100%;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Address Block */
.contact-address-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 45px;
}

.contact-address-left {
    flex: 1;
    max-width: 620px;
}

.contact-address-right {
    flex: 0 0 45%;
    max-width: 460px;
    text-align: right;
}

.contact-world-map-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    opacity: 0.85;
}

/* Block Titles & Text */
.contact-block-title {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 18px 0;
    line-height: 1.25;
    letter-spacing: -0.2px;
    font-family: var(--font-family, 'Roboto', sans-serif);
}

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

.contact-block-desc {
    font-size: 15px;
    color: #222222;
    line-height: 1.65;
    margin: 0 0 10px 0;
}

.contact-block-desc a,
.contact-text a {
    color: #0070e0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.contact-block-desc a:hover,
.contact-text a:hover {
    color: #0056b3;
}

.contact-blue-link {
    color: #0070e0 !important;
    text-decoration: underline !important;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
}

.contact-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    margin-top: 2px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #888888;
}

.contact-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
}

.contact-text strong {
    font-weight: 700;
    color: #111111;
}

/* Social Buttons */
.contact-social-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
    padding-top: 10px;
}

.contact-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0070e0;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 112, 224, 0.2);
}

.contact-pill-btn:hover {
    background-color: #0056b3;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 224, 0.35);
}

.contact-pill-btn img {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-address-block {
        flex-direction: column;
        gap: 30px;
    }

    .contact-address-right {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 35px 0 50px;
    }

    .contact-block-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .contact-social-pills {
        gap: 10px;
    }

    .contact-pill-btn {
        padding: 8px 16px;
        font-size: 13.5px;
    }
}
