/* ================================================= */
/* RP Meditech - Contact Page Specific Styles */
/* ================================================= */

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background: white;
}

/* Contact Info */
.contact-info {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-info:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.contact-info h4 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-red));
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info p i {
    color: var(--primary-red);
    font-size: 1.3rem;
    min-width: 25px;
    margin-top: 3px;
}

.contact-info p a {
    color: #555;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info p a:hover {
    color: var(--primary-red);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(238, 68, 73, 0.1);
    background: white;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-red));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(238, 68, 73, 0.3);
}

.contact-form button:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 68, 73, 0.4);
}

/* Map Box */
.map-box {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.map-box:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}