/* Contact section enhancement */
.contact-section {
    padding: 5rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments for contact section */
@media (max-width: 1024px) {
    .contact-container {
        gap: 2rem;
        max-width: 90%;
    }
    
    .contact-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-form-container {
        order: 0;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        width: 95%;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .social-links-contact a {
        width: 35px;
        height: 35px;
    }
}

/* Contact info enhancement */
.contact-info {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(98, 0, 234, 0.1);
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-text p {
    margin-bottom: 0;
    font-size: var(--small-size);
    color: var(--text-color);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links-contact a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 5px 15px rgba(98, 0, 234, 0.1);
}

.social-links-contact a:hover {
    background: linear-gradient(90deg, #6200EA, #00E5FF);
    color: white;
    transform: translateY(-3px);
}

/* Form container enhancement */
.form-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: var(--small-size);
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(98, 0, 234, 0.1);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: var(--small-size);
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control.error {
    border-color: var(--accent-color);
}

.error-message {
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    font-family: var(--font-family);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(98, 0, 234, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00E5FF, #6200EA);
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(98, 0, 234, 0.4);
}

.submit-btn:hover::before {
    left: 0;
}

.success-message {
    text-align: center;
    padding: 3rem 0;
}

.success-message i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

/* Map section enhancement */
.map-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.05) 0%, rgba(0, 229, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Offices section enhancement */
.offices-section {
    padding: 5rem 0;
}

.offices-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.offices-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.offices-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.office-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-info {
    padding: 1.5rem;
}

.office-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.office-address {
    margin-bottom: 1rem;
    font-size: var(--small-size);
    color: var(--text-color);
    line-height: 1.6;
}

.office-contact {
    font-size: var(--small-size);
    color: var(--secondary-color);
    line-height: 1.6;
}