.contact .contbox{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 100vh;
}
.contact .bg_layer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.contact .bg_layer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact .toplayer{
    display: grid;
    grid-template-columns: repeat(12,1fr);
    padding: 40px;
    position: relative;
    z-index: 2;
}
.contact .toplayer .leftside{
    grid-column: span 5;
    color: #fff;
}
.contact .toplayer .leftside p{
    font-size: 1.25rem;
    font-weight: 400;
    font-family: var(--font-outfit);
    line-height: 1.4;
    overflow: hidden;
    margin-top: 24px;
}
.contact .toplayer .leftside p span{
    display: inline-block;
}
.contact .toplayer .leftside p.title{
    font-size: clamp(2rem,calc(3.88vw + 0.1rem),3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}
.contact .toplayer .rightside{
    grid-column: 7 / span 6;
}
.contact .formbox .topcontent{
    margin-bottom: 16px;
}
.contact .formbox .topcontent p{
    color: #181818;
    font-weight: 400;
    font-size: 1rem;
}
.contact .formbox .topcontent p.top{
    margin-bottom: 24px;
}
.contact .formbox .topcontent p.top span{
    display: block;
    font-family: var(--font-outfit);
    font-weight: 700;
    color: #181818;
    font-size: 1.25rem;
}
.contact .copyemail{
    display: flex;
    gap: 4px;
}
.contact .copyemail a{
    text-decoration: underline;
    color: #0890F1;
    font-size: 1rem;
    font-weight: 400;
    text-underline-offset: 3px;
}
/* Email card specific styles are now in office-info section */
.contact .rightside form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact .submission button{
    min-width: max-content;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    font-size: 1rem;
}
.contact .formbox .inp_box label{
    font-size: 1rem;
}
/* Office Information Styles - Enhanced Card Design with Cohesive Color Scheme */
.contact .formbox .topcontent .office-info{
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(8, 144, 241, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 144, 241, 0.12);
    position: relative;
    overflow: hidden;
}
.contact .formbox .topcontent .office-info::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0890F1 0%, #0670c4 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact .formbox .topcontent .office-info:hover{
    box-shadow: 0 6px 20px rgba(8, 144, 241, 0.18);
    transform: translateY(-3px);
    border-color: rgba(8, 144, 241, 0.25);
}
.contact .formbox .topcontent .office-info:hover::before{
    opacity: 1;
}
.contact .formbox .topcontent .office-info:last-child{
    margin-bottom: 0;
}
.contact .formbox .topcontent .office-header{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(8, 144, 241, 0.12);
}
.contact .formbox .topcontent .office-icon-wrapper{
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E4F2F7 0%, rgba(8, 144, 241, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(8, 144, 241, 0.15);
    transition: all 0.3s ease;
}
.contact .formbox .topcontent .office-info:hover .office-icon-wrapper{
    background: linear-gradient(135deg, rgba(8, 144, 241, 0.15) 0%, rgba(8, 144, 241, 0.08) 100%);
    border-color: rgba(8, 144, 241, 0.25);
    transform: scale(1.05);
}
.contact .formbox .topcontent .office-icon{
    width: 24px;
    height: 24px;
}
.contact .formbox .topcontent .office-icon path{
    fill: #0890F1;
}
.contact .formbox .topcontent .office-title{
    margin: 0;
    font-family: var(--font-outfit);
    font-weight: 700;
    color: #274D73;
    font-size: 1.375rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.contact .formbox .topcontent .office-info:hover .office-title{
    color: #0890F1;
}
.contact .formbox .topcontent .office-title span{
    display: block;
}
.contact .formbox .topcontent .office-detail{
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.contact .formbox .topcontent .office-detail:last-child{
    margin-bottom: 0;
}
.contact .formbox .topcontent .detail-icon{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 144, 241, 0.08);
    border-radius: 6px;
    padding: 4px;
    transition: all 0.3s ease;
}
.contact .formbox .topcontent .office-info:hover .detail-icon{
    background: rgba(8, 144, 241, 0.12);
}
.contact .formbox .topcontent .detail-icon svg{
    width: 18px;
    height: 18px;
}
.contact .formbox .topcontent .detail-icon svg path{
    fill: #0890F1;
    transition: fill 0.3s ease;
}
.contact .formbox .topcontent .detail-content{
    flex: 1;
    min-width: 0;
}
.contact .formbox .topcontent .address-link{
    text-decoration: none;
    color: #274D73;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
}
.contact .formbox .topcontent .address-link:hover{
    color: #0890F1;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact .formbox .topcontent .contact-item{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.contact .formbox .topcontent .phone-link,
.contact .formbox .topcontent .email-link{
    text-decoration: none;
    color: #274D73;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact .formbox .topcontent .phone-link:hover,
.contact .formbox .topcontent .email-link:hover{
    color: #0890F1;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact .formbox .topcontent .copy-btn{
    color: #0890F1;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(8, 144, 241, 0.1) 0%, rgba(8, 144, 241, 0.06) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 144, 241, 0.2);
}
.contact .formbox .topcontent .copy-btn:hover{
    background: linear-gradient(135deg, rgba(8, 144, 241, 0.18) 0%, rgba(8, 144, 241, 0.12) 100%);
    border-color: rgba(8, 144, 241, 0.35);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(8, 144, 241, 0.2);
}
.contact .formbox .topcontent .copy-btn.copied{
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.08) 100%);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.25);
}
.contact .formbox .topcontent .copy-btn svg path{
    fill: currentColor;
    transition: fill 0.3s ease;
}
.contact .formbox .topcontent .copy-btn span,
.contact .formbox .topcontent .copy-btn svg{
    pointer-events: none;
}
.contact .formbox .topcontent .copy-btn span.copy{
    display: block;
}
.contact .formbox .topcontent .copy-btn span.copied{
    display: none;
}
.contact .formbox .topcontent .copy-btn.copied span.copy{
    display: none;
}
.contact .formbox .topcontent .copy-btn.copied span.copied{
    display: block;
}
.contact .formbox .topcontent #copymail{
    color: #0890F1;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(8, 144, 241, 0.1) 0%, rgba(8, 144, 241, 0.06) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 144, 241, 0.2);
    margin-left: 0;
}
.contact .formbox .topcontent #copymail:hover{
    background: linear-gradient(135deg, rgba(8, 144, 241, 0.18) 0%, rgba(8, 144, 241, 0.12) 100%);
    border-color: rgba(8, 144, 241, 0.35);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(8, 144, 241, 0.2);
}
.contact .formbox .topcontent #copymail.copied{
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.08) 100%);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.25);
}
.contact .formbox .topcontent #copymail svg path{
    fill: currentColor;
    transition: fill 0.3s ease;
}
@media only screen and (max-width: 991px) {
    .contact .toplayer .leftside,.contact .toplayer .rightside{
        grid-column: span 12;
    }
    .contact .toplayer{
        padding:32px 16px;
    }
    .contact .tb-pad{
        padding-top: 0;
        padding-bottom: 0;
    }
    .contact .lr-pad{
        padding-left: 0;
        padding-right: 0;
    }
    .contact .contbox{
        border-radius: 0;
    }
    .contact .toplayer .leftside p{
        margin-top: 8px;
        font-size: 1rem;
    }
    .contact .toplayer .rightside{
        margin-top: 40px;
        margin-bottom: 24px;
    }
    .contact .formbox .topcontent .copyemail p,.contact .copyemail a{
        font-size: 0.875rem;
    }
    .contact .formbox .topcontent .office-info{
        margin-bottom: 16px;
        padding: 20px 16px;
        border-radius: 12px;
    }
    .contact .formbox .topcontent .office-header{
        margin-bottom: 16px;
        padding-bottom: 12px;
        gap: 10px;
    }
    .contact .formbox .topcontent .office-icon-wrapper{
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .contact .formbox .topcontent .office-icon{
        width: 20px;
        height: 20px;
    }
    .contact .formbox .topcontent .office-title{
        font-size: 1.125rem;
    }
    .contact .formbox .topcontent .office-detail{
        margin-bottom: 14px;
        gap: 10px;
    }
    .contact .formbox .topcontent .detail-icon{
        width: 18px;
        height: 18px;
        margin-top: 3px;
    }
    .contact .formbox .topcontent .detail-icon svg{
        width: 16px;
        height: 16px;
    }
    .contact .formbox .topcontent .address-link,
    .contact .formbox .topcontent .phone-link,
    .contact .formbox .topcontent .email-link{
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .contact .formbox .topcontent .contact-item{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    .contact .formbox .topcontent .copy-btn,
    .contact .formbox .topcontent #copymail{
        font-size: 0.8125rem;
        padding: 5px 10px;
        width: 100%;
        justify-content: center;
    }
}