/* ========================================
   CONTACT PAGE MODERN STYLES
   ======================================== */



/* Contact Info Cards Section */
.contact-info-cards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.contact-info-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-info-card-modern .card-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.contact-info-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-info-card-modern p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info-card-modern .card-action-modern {
    margin-top: auto;
}

.contact-info-card-modern .btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info-card-modern .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Contact Form Section */
.contact-form-section-modern {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper-modern {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper-modern .section-header-modern {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-wrapper-modern .section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-wrapper-modern .section-header-modern p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.form-group-modern {
    margin-bottom: 30px;
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.input-wrapper-modern {
    position: relative;
}

.input-wrapper-modern i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-size: 1.1rem;
    z-index: 2;
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-modern:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control-modern::placeholder {
    color: #999;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-primary-modern .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-modern:hover .btn-glow {
    left: 100%;
}

/* Contact Sidebar */
.contact-sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.working-hours-card-modern,
.social-media-card-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.working-hours-card-modern:hover,
.social-media-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header-modern i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-header-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.time-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.time-item-modern:last-child {
    border-bottom: none;
}

.time-item-modern .day {
    font-weight: 600;
    color: #333;
}

.time-item-modern .time {
    color: #666;
    font-weight: 500;
}



.social-links-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-modern:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.social-link-modern i {
    font-size: 1.3rem;
}

/* Map Section */
.map-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-section-modern .section-header-modern {
    text-align: center;
    margin-bottom: 50px;
}

.map-section-modern .section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.map-section-modern .section-header-modern p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.map-wrapper-modern {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.map-container-modern {
    position: relative;
}

.map-container-modern iframe {
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.map-wrapper-modern:hover .map-container-modern iframe {
    transform: scale(1.02);
}

.map-overlay-modern {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.map-info-card-modern {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-info-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.map-info-card-modern p {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-card-modern p i {
    color: #ff6b35;
    width: 20px;
}

.map-info-card-modern .btn {
    margin-top: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-info-card-modern .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Animation for floating elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Contact Page Responsive Design */
@media (max-width: 991px) {
    .contact-form-wrapper-modern {
        padding: 30px;
    }
    
    .contact-sidebar-modern {
        margin-top: 40px;
    }
    
    .map-overlay-modern {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .contact-info-cards-section,
    .contact-form-section-modern,
    .map-section-modern {
        padding: 60px 0;
    }
    
    .contact-form-wrapper-modern {
        padding: 25px;
    }
    
    .contact-form-wrapper-modern .section-header-modern h2 {
        font-size: 2rem;
    }
    
    .map-section-modern .section-header-modern h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-info-card-modern {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper-modern {
        padding: 20px;
    }
    
    .form-control-modern {
        padding: 12px 15px 12px 45px;
    }
    
    .btn-primary-modern {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
