/* Contact Page Styling */
.new-contact-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;

    text-shadow: none !important;

}

.new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 40px 0 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d4059;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,  rgb(98, 224, 94), #dfe6e5);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: none !important;

}

/* Contact Section */
.new-contact-section {
    padding: 30px 0 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.new-contact-info {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease 0.5s forwards;
}

.new-contact-form {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease 0.5s forwards;
}

.new-info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid  rgb(34, 97, 42);
}

.new-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.new-info-card h3 {
    font-size: 1.4rem;
    color: #2d4059;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.new-info-card h3 i {
    margin-right: 12px;
    color: #0d0f77;
    font-size: 1.6rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: #555;
}

.contact-details li i {
    width: 28px;
    height: 28px;
    background: #4ecdc4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d4059;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-3px);
}

/* Form Styles */
.new-form-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #16723c;
}

.new-form-container h3 {
    font-size: 1.6rem;
    color: #2d4059;
    margin-bottom: 22px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d4059;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
    background: white;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    background-color: #2d4059;
    color: rgb(3, 3, 3);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 40px 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1s forwards;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2d4059;
    margin-bottom: 35px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 380px;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d4059;
    font-size: 1.1rem;
    border: 1px solid #ddd;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .new-contact-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .new-contact-info, .new-contact-form {
        min-width: 100%;
    }
    
    .map-container {
        height: 300px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.9rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .new-info-card, .new-form-container {
        padding: 20px;
    }
    
    .map-section h2 {
        font-size: 1.7rem;
    }
}