/* ================================================================
   CONTACT PAGE STYLES — Dr. Consultant
   ================================================================ */

/* --- NEW PREMIUM CONTACT PAGE STYLES --- */

/* Glassmorphism */
.glass-container {
    position: relative;
    z-index: 1;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.glass-container::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 300px; height: 300px;
    background: var(--secondary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.glass-form {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

/* Form Hover Effects */
.glass-form input, .glass-form select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.glass-form input:focus, .glass-form select:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
    transform: translateY(-2px);
}

/* Social Proof Reviews */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 1.5rem;
    border-left: 4px solid #f59e0b;
}
.review-stars {
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

/* Themed Map */
.themed-map iframe {
    filter: grayscale(20%) contrast(1.1) hue-rotate(190deg) saturate(1.5);
    border-radius: var(--radius-lg);
}

/* Clinic Gallery */
.clinic-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.location-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px;
    border-radius: var(--radius-lg);
    display: block;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem 0 !important;
    }
}
