/* =========================================
   Contact Page Redesign
   ========================================= */

/* Hero Icon (Glassmorphism) */
.hero-icon-wrapper {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.hero-icon-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-icon-wrapper i {
    font-size: 5rem;
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Modern Contact Form */
.modern-contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.modern-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.modern-contact-form .form-label {
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.modern-contact-form .form-control {
    background-color: #f9fafb;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #1f2937;
    transition: all 0.2s ease;
}

.modern-contact-form .form-control:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 87, 219, 0.1);
}

.modern-contact-form .form-control::placeholder {
    color: #9ca3af;
}

.modern-contact-form .btn-submit {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(30, 87, 219, 0.25);
    transition: all 0.3s ease;
}

.modern-contact-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 87, 219, 0.35);
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef4ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-circle {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 16px rgba(30, 87, 219, 0.2);
}

/* Full Width Map Adjustment - Fix Gap */
.map-section {
    position: relative;
    z-index: 5;
    margin-bottom: -40px;
    margin-top: -6rem;
    /* Pull map up against the hero angle */
    padding-top: 0 !important;
}

.map-section iframe {
    display: block;
}

/* Fix Hero Bottom Padding */
.modern-hero.hero-full {
    padding-bottom: 8rem !important;
    /* Ensure enough space for content but allow map to overlap */
}

/* Footer Overlap Fix */
.contact-page-wrapper {
    padding-bottom: 5rem;
}