.contact-grid-1bb0359e {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
    align-items: start;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
}

@media(min-width: 1024px) {
    .contact-grid-1bb0359e {
        grid-template-columns: 4fr 5fr;
        gap: 50px;
    }
}

/* Left Card Styling */
.sticky-column-1bb0359e {
    width: 100%;
}

@media(min-width: 1024px) {
    .sticky-column-1bb0359e {
        position: sticky;
        top: 120px;
        z-index: 10;
    }
}

.card-left-1bb0359e {
    background: linear-gradient(145deg, #f4f1e9, #ffffff);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(255, 255, 255, 0.7);
    animation: fadeInUp1bb0359e 0.8s ease-out forwards;
}

.logo-wrapper-1bb0359e {
    margin-bottom: 24px;
}

.logo-img-1bb0359e {
    max-width: 180px;
    height: auto;
    display: block;
}

.badge-trusted-1bb0359e {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 6px 14px;
    border-radius: 100px;
    gap: 8px;
    margin-bottom: 20px;
}

.pulse-dot-1bb0359e {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    position: relative;
}

.pulse-dot-1bb0359e::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background-color: #2ec4b6;
    animation: pulseGlow1bb0359e 1.5s infinite;
}

.badge-txt-1bb0359e {
    font-size: 13px;
    font-weight: 600;
    color: #2d3748;
}

.heading-left-1bb0359e {
    font-family: "Georgia", serif;
    font-size: 38px;
    color: #0f1e36;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.desc-left-1bb0359e {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-list-1bb0359e {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item-1bb0359e {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-icon-1bb0359e {
    font-size: 20px;
}

.info-text-1bb0359e {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.5;
}

/* Contact Anchor Link Styling */
.contact-link-1bb0359e {
    color: #0f1e36;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-link-1bb0359e:hover {
    opacity: 0.7;
}

.footer-hours-1bb0359e {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #718096;
}

/* Right Card & Form Styling */
.form-column-1bb0359e {
    width: 100%;
}

.card-right-1bb0359e {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    animation: fadeInUp1bb0359e 1s ease-out forwards;
}

.form-title-1bb0359e {
    font-size: 28px;
    color: #0f1e36;
    font-weight: 700;
    margin: 0 0 35px 0;
}

.input-group-1bb0359e {
    position: relative;
    margin-bottom: 35px;
    width: 100%;
    box-sizing: border-box;
}

/* Updated Input Field Styles */
.form-input-1bb0359e,
.form-textarea-1bb0359e,
.form-select-1bb0359e {
    width: 100% !important;
    display: block !important;
    padding: 16px 20px 12px 15px !important;
    border: none !important;
    border-bottom: 1.5px solid #e2e8f0 !important;
    background: transparent !important;
    outline: none !important;
    font-size: 16px !important;
    color: #2d3748 !important;
    transition: border-color 0.3s ease !important;
    box-sizing: border-box !important;
}

.form-textarea-1bb0359e {
    resize: none !important;
}

.form-label-1bb0359e {
    position: absolute;
    left: 15px;
    top: 16px;
    color: #a0aec0;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) all;
}

/* Optimized non-overlapping float label logic */
.form-input-1bb0359e:focus ~ .form-label-1bb0359e,
.form-input-1bb0359e:not(:placeholder-shown) ~ .form-label-1bb0359e,
.form-textarea-1bb0359e:focus ~ .form-label-1bb0359e,
.form-textarea-1bb0359e:not(:placeholder-shown) ~ .form-label-1bb0359e {
    top: -24px;
    left: 0;
    font-size: 13px;
    color: #0f1e36;
    font-weight: 600;
}

/* Material expansion line */
.border-line-1bb0359e {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #0f1e36;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-input-1bb0359e:focus ~ .border-line-1bb0359e,
.form-textarea-1bb0359e:focus ~ .border-line-1bb0359e,
.form-select-1bb0359e:focus ~ .border-line-1bb0359e {
    width: 100% !important;
}

.form-select-1bb0359e {
    appearance: none;
    cursor: pointer;
}

.select-group-1bb0359e::after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 15px;
    top: 22px;
    color: #a0aec0;
    pointer-events: none;
}

/* Submit Button */
.submit-btn-1bb0359e {
    background-color: #0f1e36;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn-1bb0359e:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 30, 54, 0.2);
}

.btn-arrow-1bb0359e {
    transition: transform 0.3s ease;
}

.submit-btn-1bb0359e:hover .btn-arrow-1bb0359e {
    transform: translateX(6px);
}

/* Feedback Styling */
.form-feedback-1bb0359e {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.form-feedback-1bb0359e.success {
    color: #2ec4b6;
}

.form-feedback-1bb0359e.error {
    color: #e63946;
}

/* Animations */
@keyframes fadeInUp1bb0359e {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow1bb0359e {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}
