/* Modern Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, #4e9af1, #26d0ce);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

/* Contact Info Card */
.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-header {
    background: linear-gradient(135deg, #4e9af1, #26d0ce);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.contact-info-header i {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info-header h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.contact-details {
    padding: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: #4e9af1;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item p {
    margin: 0 0 5px 0;
    color: #555;
    line-height: 1.5;
}

.contact-item a {
    color: #4e9af1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #26d0ce;
    text-decoration: underline;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #4e9af1;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #4e9af1;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
}

.contact-form-header {
    padding: 25px 25px 15px;
}

.contact-form-header h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.contact-form-header p {
    color: #666;
    margin: 0;
}

#contact-form {
    padding: 0 25px 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group label i {
    color: #4e9af1;
    margin-right: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #4e9af1;
    box-shadow: 0 0 0 3px rgba(78, 154, 241, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4e9af1, #26d0ce);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #3d8ae0, #1fc0be);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 154, 241, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

/* Form Message Styles */
.form-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.message-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.message-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.message-info {
    background-color: rgba(78, 154, 241, 0.1);
    border: 1px solid rgba(78, 154, 241, 0.2);
    color: #4e9af1;
}

.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

/* Input Focus Effect */
.input-focused .form-control {
    border-color: #4e9af1;
    box-shadow: 0 0 0 3px rgba(78, 154, 241, 0.1);
}

/* Map Container */
.map-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.map-header i {
    font-size: 24px;
    color: #4e9af1;
    margin-right: 15px;
}

.map-header h3 {
    font-size: 22px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.map-frame {
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card, 
    .contact-form-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .contact-info-header h3,
    .contact-form-header h3,
    .map-header h3 {
        font-size: 20px;
    }
    
    .contact-item i {
        font-size: 18px;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .contact-details,
    #contact-form,
    .map-frame {
        padding: 15px;
    }
}/* Modern Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, #4e9af1, #26d0ce);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

/* Contact Info Card */
.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-header {
    background: linear-gradient(135deg, #4e9af1, #26d0ce);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.contact-info-header i {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info-header h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.contact-details {
    padding: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: #4e9af1;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item p {
    margin: 0 0 5px 0;
    color: #555;
    line-height: 1.5;
}

.contact-item a {
    color: #4e9af1;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #26d0ce;
    text-decoration: underline;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #4e9af1;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #4e9af1;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
}

.contact-form-header {
    padding: 25px 25px 15px;
}

.contact-form-header h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.contact-form-header p {
    color: #666;
    margin: 0;
}

#contact-form {
    padding: 0 25px 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group label i {
    color: #4e9af1;
    margin-right: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #4e9af1;
    box-shadow: 0 0 0 3px rgba(78, 154, 241, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4e9af1, #26d0ce);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #3d8ae0, #1fc0be);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 154, 241, 0.3);
}

.submit-btn i {
    margin-right: 8px;
}

/* Form Message Styles */
.form-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.message-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.message-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.message-info {
    background-color: rgba(78, 154, 241, 0.1);
    border: 1px solid rgba(78, 154, 241, 0.2);
    color: #4e9af1;
}

.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

/* Input Focus Effect */
.input-focused .form-control {
    border-color: #4e9af1;
    box-shadow: 0 0 0 3px rgba(78, 154, 241, 0.1);
}

/* Map Container */
.map-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.map-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.map-header i {
    font-size: 24px;
    color: #4e9af1;
    margin-right: 15px;
}

.map-header h3 {
    font-size: 22px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.map-frame {
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card, 
    .contact-form-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .contact-info-header h3,
    .contact-form-header h3,
    .map-header h3 {
        font-size: 20px;
    }
    
    .contact-item i {
        font-size: 18px;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .contact-details,
    #contact-form,
    .map-frame {
        padding: 15px;
    }
}