/* Contact Page - Elite Dark UI Styling */
html, body {
    overflow-x: hidden !important;
}

.contact-info,
.contact-page,
.testimonial-two {
    overflow: hidden !important;
    width: 100%;
    margin-top: -80px;
}

.contact-page {
    background: #ffffff;
    padding: 60px 0;
    color: #0d2944;
}

.contact-page__inner {
    background: #ffffff; 
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

/* Office Switcher Buttons */
.office-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
   margin-top: -50px;
    margin-left: 50px;
    
}

.switcher-btn {
    padding: 12px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.switcher-btn.active {
    background: #008ed2;
    color: #fff;
    border-color: #008ed2;
    box-shadow: 0 8px 20px rgba(0, 142, 210, 0.2);
}

.switcher-btn:not(.active) {
    background: #fff;
    color: #0d2944;
}

.switcher-btn:hover:not(.active) {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.15);
}

/* Map Styling */
.contact-map-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Left side: Form Card */
.contact-form-card {
    background: #f1f2f4;
    border-radius: 16px;
    padding: 45px 40px;
    height: 100%;
}

.contact-form-card__title {
    font-size: 32px;
    font-weight: 800;
    color: #0d2944;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.contact-form-card__input-box {
    margin-bottom: 20px;
}

.contact-form-card__input-box input,
.contact-form-card__input-box textarea {
    width: 100%;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    color: #0d2944 !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-card__input-box input:focus,
.contact-form-card__input-box textarea:focus {
    border-color: #008ed2 !important;
    box-shadow: 0 0 0 3px rgba(0, 142, 210, 0.1) !important;
    outline: none !important;
}

.contact-form-card__input-box textarea {
    min-height: 180px;
    resize: none;
}

.contact-form-card__submit-btn {
    background: #008ed2;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-card__submit-btn:hover {
    background: #008ed2;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 142, 210, 0.2);
}

/* Right side: Contact Details */
.contact-details-box {
    padding: 10px 0 0 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-details-box__title {
    font-size: 32px;
    font-weight: 800;
    color: #0d2944;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-details-box__subtext {
    font-size: 15px;
    color: #636b75;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.detail-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 142, 210, 0.15);
}

.detail-card__icon {
    min-width: 50px;
    height: 50px;
    background: #008ed2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.detail-card:hover .detail-card__icon {
    background: #008ed2;
}

.detail-card__content {
    flex: 1;
}

.detail-card__content h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0d2944;
    margin: 0 0 3px 0;
}

.detail-card__content p {
    font-size: 13px;
    color: #636b75;
    margin: 0;
    line-height: 1.4;
}

/* Social Media Section */
.contact-socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.contact-socials__title {
    font-size: 15px;
    font-weight: 700;
    color: #0d2944;
}

.contact-socials__links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #f1f2f4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d2944;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #008ed2;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    .contact-details-box {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Card Equalization in Contact Info Section */
.contact-info .row {
    display: flex;
    flex-wrap: wrap;
}
.contact-info [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.contact-info-elite {
    padding: 60px 0;
    background: transparent;
}

.contact-info-elite__inner {
    background: #0d2944;
    border-radius: 25px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(13, 41, 68, 0.15);
}

.info-elite-item {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.info-elite-icon-box {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-elite-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 142, 210, 0.3);
    border-radius: 50%;
}

.info-elite-icon-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #008ed2;
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%); /* Partial ring effect */
}

.info-elite-icon-box i {
    font-size: 32px !important;
    color: #ffffff !important;
    z-index: 10 !important;
    position: relative;
    transition: all 0.3s ease;
}

.info-elite-content h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.info-elite-line {
    width: 35px;
    height: 3px;
    background: #008ed2;
    border-radius: 2px;
    margin-bottom: 15px;
}

.info-elite-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-elite-details a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-elite-details a i {
    color: #008ed2;
    font-size: 14px;
}

.info-elite-details a:hover {
    color: #008ed2;
    transform: translateX(5px);
}

.info-elite-divider {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 40px;
}

@media (max-width: 1199px) {
    .contact-info-elite__inner {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    .info-elite-divider {
        display: none;
    }
}
