.contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#contact-form {
    background: white;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
#contact-form .container {
    max-width: 54rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
#contactForm{
    position: relative;
    z-index: 2;
}
.contact-details{
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 20px;
}
.contact-details p{
    font-size: 1rem;
    font-weight: 500; 
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}
.contact-details .contact-email{
    display: flex;
    align-items: center;
    gap: 0.5rem; 
    color: #374151;
    text-decoration: none;
    font-weight: 500; 
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input,
select,
textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
}

textarea {
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.success-message {
    margin-top: 1rem;
    color: green;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-purple {
    background: linear-gradient(to right, #60a5fa, #c084fc);
    color: white;
}

.green-emerald {
    background: linear-gradient(to right, #34d399, #10b981);
    color: white;
}

.purple-pink {
    background: linear-gradient(to right, #a78bfa, #ec4899);
    color: white;
}

.visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}
.feature-text{
    text-align: left;
}