:root {
    --primary-green: #ff8c00;
    --light-green: #e8f5e9;
    --accent-gold: #e67e00;
    --text-dark: #1a1a1a;
    --text-grey: #555555;
    --bg-color: #fafafa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --error-red: #d32f2f;
}

 header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
/* Grid Layout for Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%; /* Equal height columns */
}

.section-title {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-gold);
    padding-left: 15px;
}

/* Map Styles */
.map-container {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-grey);
}

.contact-icon {
    width: 30px;
    height: 30px;
    background-color: var(--light-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    height : auto;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-control.error {
    border-color: var(--error-red);
}

.error-message {
    color: var(--error-red);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.btn-submit {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Status Messages */
#form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    display: none;
}
.success {
    background-color: var(--light-green);
    color: var(--primary-green);
}
.error {
    background-color: #ffebee;
    color: var(--error-red);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 250px;
    }
}
