/* ========================================
   Base & Layout
   ======================================== */
.contact-container-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-heading-new {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1c365b;
    margin-bottom: 3rem;
}

/* ========================================
   Main Contact Grid
   ======================================== */
.contact-main-section {
    padding: 5rem 0;
    background-color: #f9fbfe;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
}

/* Form Styles */
.form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    font-size: 1.8rem;
    color: #1c365b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #03b9e2;
}

.submit-btn {
    background-color: #03b9e2;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0294b5;
}

/* Sidebar Stats Info */
.info-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid #03b9e2;
}

.info-icon {
    background: #f0faff;
    padding: 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: #1c365b;
}

.info-details p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.info-details a {
    color: #03b9e2;
    text-decoration: none;
    font-weight: 600;
}

.mini-map {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Locations Section
   ======================================== */
.locations-section {
    padding: 5rem 0;
    background-color: #fff;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-card-modern {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.location-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #03b9e2;
}

.loc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.flag-icon {
    font-size: 2rem;
}

.loc-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1c365b;
}

.address {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-card {
        padding: 2rem;
    }

    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-new {
        font-size: 1.8rem;
    }
}