        
        /* Redundant body and footer !important overrides removed */
        .glass-form-card { position: relative;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 25px 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Form Inputs */
        .form-input {
            width: 100%;
            padding: 8px 12px;
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        textarea.form-input {
            border-radius: 20px;
        }

        .form-input::placeholder {
            color: rgba(255,255,255,0.8);
        }

        .form-input:focus {
            border-color: #f59e0b; /* saffron equivalent for focus */
        }
        
        select.form-input {
            background: rgba(0,0,0,0.5);
            color: white;
        }
        
        select.form-input option {
            background: #111;
            color: white;
        }
        
        
        

        

        .logo-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .recycle-svg {
            width: 300px;
            height: 300px;
            display: block;
            animation: rotateLogo 4s linear infinite;
            filter: drop-shadow(0 8px 30px rgba(0, 40, 20, 0.15));
        }

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

        .flow-path {
            stroke-dasharray: 8 14;
            stroke-dashoffset: 0;
            animation: flowDash 1.2s linear infinite;
        }

        @keyframes flowDash {
            0%   { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: -22; }
        }

        .recycle-svg:hover {
            animation-play-state: paused;
        }
        .recycle-svg:hover .flow-path {
            animation-play-state: paused;
        }

        .caption {
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: #1e3d2a;
            background: rgba(195, 230, 195, 0.35);
            padding: 10px 32px;
            border-radius: 60px;
            backdrop-filter: blur(4px);
            border: 1.5px solid #C3E6C3;
        }

        .caption small {
            font-weight: 400;
            opacity: 0.6;
            font-size: 0.85rem;
        }

        @media (max-width: 480px) {
            .recycle-svg { width: 200px; height: 200px; }
            .caption { font-size: 1rem; padding: 6px 18px; }
        }
    
    
        /* Explicit Form Spacing */
        .glass-form-card form > div {
            margin-bottom: 25px;
        }
        .glass-form-card form > div:last-child {
            margin-bottom: 0;
        }
        .glass-form-card form .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 768px) {
            .form-row-2 {
                grid-template-columns: 1fr 1fr;
            }
        }
        .glass-form-card label {
            display: block;
            margin-bottom: 10px;
        }
    

/* Layout */
.contact-main-wrapper {
    padding-bottom: 6rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 160px;
    background-image: url('../public/image/homepage/epr_neo_green_vasundhara_hompage_background_image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-grid-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
}
@media (min-width: 1024px) {
    .contact-grid-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.contact-title-wrapper {
    margin-bottom: 3rem;
    width: 100%;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: sans-serif;
    white-space: nowrap;
}
@media (min-width: 1024px) {
    .contact-subtitle {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
.contact-subtitle .text-red { color: #D2042D; }
.contact-subtitle .text-green { color: #1e3d2a; }

.contact-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    font-family: sans-serif;
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    color: #4A3728;
}
@media (min-width: 1024px) {
    .contact-title {
        font-size: 3.75rem;
    }
}

/* Form Styles */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .form-row-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-label-green {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.contact-label-yellow {
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #fcd34d;
    margin-bottom: 0.25rem;
}

.context-input {
    background-color: rgba(6, 78, 59, 0.5);
    color: #d1fae5;
    border-color: rgba(16, 185, 129, 0.3);
}

.consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.consent-checkbox {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    border-color: #d1d5db;
    border-radius: 0.25rem;
}

.consent-label {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #d1d5db;
    font-weight: 500;
}
.consent-link {
    color: #f59e0b;
    text-decoration: none;
}
.consent-link:hover {
    text-decoration: underline;
}

.captcha-outer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.fake-captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    width: 100%;
    max-width: 300px;
}

.captcha-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 0.5rem;
}

.captcha-checkbox {
    width: 1.5rem;
    height: 1.5rem;
    color: #059669;
    background-color: #333;
    border-color: #6b7280;
    border-radius: 0.25rem;
    cursor: pointer;
}

.captcha-label {
    color: #e5e7eb;
    font-weight: 500;
    font-family: sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
}

.captcha-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0.5rem;
}

.captcha-links {
    font-size: 9px;
    color: #9ca3af;
    margin-top: 0.25rem;
    display: flex;
    gap: 0.25rem;
}
.captcha-links a {
    text-decoration: none;
    color: inherit;
}
.captcha-links a:hover {
    text-decoration: underline;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    background-color: #f59e0b;
    color: #000000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3), 0 4px 6px -4px rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
    font-size: 1.125rem;
    line-height: 1.75rem;
    border: none;
    cursor: pointer;
}
.contact-submit-btn:hover {
    background-color: #fbbf24;
    transform: translateY(-0.25rem);
}

/* ---------- BIRD CONTAINER ---------- */
.bird-perch {
    position: absolute;
    top: -76px;
    right: -6px;
    z-index: 10;
    transform: scaleX(-1) scale(0.75);
    pointer-events: none;
    overflow: visible;
}

/* ---------- BIRD ANIMATIONS ---------- */
.bird-body {
    transform-origin: 44px 64px;
    animation: bodyRock 4s ease-in-out infinite;
}
@keyframes bodyRock {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

.head-group {
    transform-origin: 44px 44px;
    animation: headShake 3.0s ease-in-out infinite;
}
@keyframes headShake {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    10% { transform: rotate(8deg) translate(4px, -6px); }
    25% { transform: rotate(-9deg) translate(-5px, 5px); }
    40% { transform: rotate(6deg) translate(5px, -5px); }
    55% { transform: rotate(-6deg) translate(-4px, 6px); }
    70% { transform: rotate(4deg) translate(3px, -3px); }
    85% { transform: rotate(-5deg) translate(-3px, 4px); }
}

.eye-group {
    transform-origin: 68px 32px;
    animation: blink 6s ease-in-out infinite;
}
@keyframes blink {
    0%, 90%, 94%, 100% { transform: scaleY(1); }
    92% { transform: scaleY(0.1); }
}

.wing-group {
    transform-origin: 44px 52px;
    animation: wingStretch 4.5s ease-in-out infinite;
}
@keyframes wingStretch {
    0%, 80%, 100% { transform: rotate(0deg) scale(1); }
    90% { transform: rotate(-18deg) scale(1.2); }
    95% { transform: rotate(4deg) scale(1.05); }
}

.tail-group {
    transform-origin: 20px 56px;
    animation: tailFan 3.5s ease-in-out infinite;
}
@keyframes tailFan {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(12deg); }
}

.leg-group {
    transform-origin: 44px 90px;
    animation: legShift 4s ease-in-out infinite;
}
@keyframes legShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(3px, -6px); }
}

/* ---------- RESPONSIVE BIRD ---------- */
@media (max-width: 480px) {
    .bird-perch {
        top: -62px;
        right: -4px;
        transform: scaleX(-1) scale(0.6);
    }
}


