/* Contact Section specific styling */
.contact-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.8rem;
    color: #1AFF64;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: fit-content;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-info h2 {
    color: #1AFF64;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 25px;
    color: #444;
    line-height: 1.7;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f0fff5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #1AFF64;
    font-size: 1.2rem;
}

.contact-text h3 {
    color: #1AFF64;
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 0;
    color: #666;
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: #1AFF64;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #1AFF64;
    box-shadow: 0 0 0 3px rgba(26, 255, 100, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #1AFF64;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.submit-btn:hover {
    background-color: #16e057;
}

.submit-btn i {
    margin-right: 8px;
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #f0fff5;
    color: #1AFF64;
    border: 1px solid #1AFF64;
}

.form-message.error {
    background: #fff0f0;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Responsive Design for Contact Section */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}