/* Contact Section - Modern Clean Design */
.contact-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Left Column - Company Info & Form */
.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Company Information Box */
.company-info-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    color: white;
}

/* Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.info-content p {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

/* Contact Form Box */
.contact-form-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    text-align: center;
}

.form-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Right Column - Map */
.contact-right-column {
    display: flex;
    flex-direction: column;
}

.map-container {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    min-height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 600px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 15px;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    .map-container iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section-wrapper {
        padding: 20px 10px;
        gap: 20px;
    }
    
    .company-info-box,
    .contact-form-box {
        padding: 20px;
    }
    
    .company-name,
    .form-title {
        font-size: 18px;
        padding: 12px 15px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .form-row input,
    .form-row textarea {
        padding: 12px 15px;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section-wrapper {
        padding: 15px 5px;
    }
    
    .company-info-box,
    .contact-form-box {
        padding: 15px;
    }
    
    .company-name,
    .form-title {
        font-size: 16px;
    }
}

/* Animation Effects */
.info-item {
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item:hover .info-icon {
    transform: scale(1.1);
}

.company-info-box,
.contact-form-box,
.map-container {
    transition: all 0.3s ease;
}

.company-info-box:hover,
.contact-form-box:hover,
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
