/* Contact Page Specific Styles */

/* Contact Form Section */
.greenworld-contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.greenworld-contact-form .greenworld-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.greenworld-contact-form label {
    font-weight: 600;
    color: #424242;
    font-size: 1rem;
}

.greenworld-contact-form input,
.greenworld-contact-form textarea,
.greenworld-contact-form select {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.greenworld-contact-form input:focus,
.greenworld-contact-form textarea:focus,
.greenworld-contact-form select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.greenworld-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.greenworld-contact-form .greenworld-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.greenworld-contact-form .greenworld-submit-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.greenworld-contact-form .greenworld-submit-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(46, 125, 50, 0.3);
}

.greenworld-contact-form .greenworld-submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Section */
.greenworld-contact-info-section {
    padding: 4rem 0;
    background: white;
}

.greenworld-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.greenworld-contact-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.greenworld-contact-info-card:hover {
    transform: translateY(-0.5rem);
}

.greenworld-contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.greenworld-contact-info-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #424242;
}

.greenworld-contact-info-desc {
    color: #757575;
    line-height: 1.6;
}

/* Map Section */
.greenworld-map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.greenworld-map-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.greenworld-map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.greenworld-map-address {
    text-align: center;
    color: #424242;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .greenworld-contact-form .greenworld-form-row {
        grid-template-columns: 1fr;
    }
    
    .greenworld-contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .greenworld-contact-info-grid {
        grid-template-columns: 1fr;
    }
}
