/* Contact Section */
.contact-section {
padding: clamp(60px, 10vw, 100px) 0;
background: #f8f9fa;
}

.contact-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1.5fr;
/* gap: 60px; */
align-items: stretch;
}

.contact-info {
background: linear-gradient(135deg, #528d01, #528d01);
border-radius: 20px;
padding: 50px 40px;
color: white;
position: relative;
overflow: hidden;
}

.contact-info h2 {
font-size: clamp(1.8rem, 4vw, 2.2rem);
font-weight: bold;
margin-bottom: 20px;
color: white;
}

.contact-info p {
font-size: 1rem;
line-height: 1.6;
margin-bottom: 40px;
opacity: 0.9;
}

.contact-item {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 25px;
font-size: 1rem;
}

.contact-icon {
font-size: 1.2rem;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.social-links {
display: flex;
gap: 15px;
margin-top: 40px;
}

.social-link {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s ease;
}

.social-link:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}

.contact-decoration {
position: absolute;
bottom: 0;
right: 0;
}

.decoration-circle {
width: 150px;
height: 150px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
position: absolute;
bottom: -75px;
right: -30px;
}

.decoration-circle.small {
width: 80px;
height: 80px;
bottom: 20px;
right: 50px;
background: rgba(255, 255, 255, 0.15);
}

.contact-form {
background: white;
border-radius: 20px;
padding: 50px 40px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 20px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-weight: 500;
color: #333;
margin-bottom: 8px;
font-size: 0.95rem;
}

.form-input,
.form-textarea {
width: 100%;
padding: 12px 0;
border: none;
border-bottom: 2px solid #e0e0e0;
background: transparent;
font-size: 1rem;
transition: border-color 0.3s ease;
outline: none;
}

.form-input:focus,
.form-textarea:focus {
border-bottom-color: #4CAF50;
}

.form-textarea {
resize: vertical;
min-height: 100px;
font-family: inherit;
}

.subject-group {
margin-bottom: 30px;
}

.subject-group label {
margin-bottom: 15px;
}

.radio-group {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}

.radio-item {
display: flex;
align-items: center;
gap: 10px;
}

.radio-item input[type="radio"] {
width: 18px;
height: 18px;
accent-color: #528d01;
}

.radio-item label {
font-size: 0.9rem;
font-weight: normal;
color: #666;
cursor: pointer;
margin: 0;
}

.submit-btn {
background: #528d01;
color: white;
border: none;
padding: 15px 40px;
border-radius: 30px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 20px;
float: right;
}

.submit-btn:hover {
background: #45a049;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
 /* Alert Styles */
        .alert {
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-danger {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
 /* Loading State */
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
            color: #667eea;
        }

        .spinner {
            width: 30px;
            height: 30px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 10px;
        }




         @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Error Text */
        .text-danger {
            color: #dc3545;
            font-size: 0.85rem;
            margin-top: 5px;
            display: block;
        }

        /* Decorative Elements */
        .contact-decoration {
            position: absolute;
            top: -50px;
            right: -50px;
            z-index: -1;
        }

        .decoration-circle {
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            position: absolute;
        }

        .decoration-circle.small {
            width: 100px;
            height: 100px;
            top: 150px;
            right: 100px;
            background: rgba(255, 255, 255, 0.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                /* gap: 40px; */
                padding: 0 15px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .radio-group {
                grid-template-columns: 1fr;
            }

            .contact-info h2 {
                font-size: 2rem;
            }
        }
