.contact-layout1 {
    background: #f8fafc;
    padding: 80px 0;
}

.contact-panel {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(13, 27, 62, 0.06);
    border: 1px solid rgba(13, 27, 62, 0.04);
    overflow: hidden;
}

.contact-panel__form {
    padding: 50px;
    flex: 1 1 50%;
}

.contact-panel__title {
    color: #0d1b3e;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-panel__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 27, 62, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    height: 400px;
}

.contact-panel__info {
    padding: 50px;
    flex: 1 1 50%;
    background: linear-gradient(135deg, #0d1b3e 0%, #1e3a8a 100%) !important;
    position: relative;
    z-index: 1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-panel__info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/medcity/assets/images/banners/1.jpg") no-repeat center center;
    background-size: cover;
    opacity: 0.08;
    z-index: -1;
}

.contact-panel__info .contact-panel__title {
    color: #ffffff;
}

.contact-panel__info .contact-panel__desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact__lists {
    padding: 0;
    margin: 0;
}

.contact__lists li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact__lists li i {
    font-size: 1.1rem;
    color: #00a6a6;
    background: rgba(0, 166, 166, 0.15);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact__lists li:hover i {
    background: #00a6a6;
    color: #ffffff;
}

.contact__lists li a {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    margin-top: 8px;
}

.contact__lists li a:hover {
    color: #00a6a6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    margin-top: 10px;
}

.btn-whatsapp:hover {
    background: #20ba56;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}