/*$Id$*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-page-body {
    font-family: var(--zf-regular);
    background: url(../../images/people/contact_bg.a5f53dd66d23ee9c05375c1da803ceee.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    color: white !important;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 90vh;
    position: relative;
    padding: 1rem;
}

.office-address {
    position: absolute !important;
    right: 1rem;
    bottom: 1rem;
    height: fit-content !important;
}

.pe-none {
    pointer-events: none;
}

.contact-container {
    width: 35%;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgb(255 255 255 / 16%);
    background: rgb(255 255 255 / 10%);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.8s ease 0.4s forwards;
    position: relative;
    overflow: hidden;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.office-address .header {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #a0c4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.office-address .header p {
    margin-left: 10px;
    margin-bottom: 0;
}

.header p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.header h4 {
    color: #fff;
}

.office-address .contact-grid {
    margin-top: 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
    color: unset;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-item p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 16px;
}

a.contact-item span {
    display: block;
}

.contact-link {
    color: #9fdaff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    word-break: break-all;
}

.contact-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(32, 169, 199, 0.5);
}

.address-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.location-icon {
    width: 25px;
    height: 35px;
    background-image: url(../../images/people/location_pin.be030e9fda216a0ac52bfa9c14994816.svg);
    background-size: 25px;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@keyframes slideIn {
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(160, 196, 255, 0.5);
    }

    to {
        text-shadow: 0 0 30px rgba(160, 196, 255, 0.8);
    }
}

@media (max-width: 768px) {
    .contact-container {
        width: calc(100% - 40px);
        margin: 20px;
        padding: 40px 30px;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 0.9rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        padding: 25px;
    }

    .office-address {
        position: relative !important;
        right: unset;
        bottom: unset;
        height: fit-content !important;

    }

    .location-icon {
        width: 20px;
        height: 30px;
        background-size: 20px;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #20A9C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #20A9C7, #1C73B0);
    border-radius: 2px;
}