/**
 * Banner Section CSS - Modern Design
 * Matches new theme structure with old theme logic
 */

/* ============================================
   Banner Container
============================================ */
.eltdf-title-holder {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 60px 0;
}

.eltdf-title-wrapper {
    max-width: var(--ah-main-content-width, 1400px);
    margin: 0 auto;
    padding: 0 var(--ah-main-content-gutter, 20px);
}

/* .eltdf-title-inner {
    width: 100%;
} */

.banner-inner-page-title-holder {
    height: auto;
    background: #f8f8fc;
    padding: 56px 0 46px;
}

.banner-inner-page-title-holder .eltdf-title-wrapper {
    max-width: 1350px;
    padding-left: var(--ah-main-content-gutter, 20px);
    padding-right: var(--ah-main-content-gutter, 20px);
}

/* ============================================
   Inner Page Banner (Two Column Layout)
============================================ */
#innerbnrbg {
    width: 100%;
    position: relative;
}

/* .eltdf-row-grid-section-wrapper {
    width: 100%;
} */

/* .eltdf-row-grid-section {
    width: 100%;
} */

.wpb_row.vc_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

/* ============================================
   Banner Two-Column Layout
============================================ */
.banner-col {
    flex: 1;
    min-width: 300px;
}

/* .banner-title-align-left {
    text-align: left;
} */

.banner-inner-page-title-holder .eltdf-st-inner {
    color: #111827;
}

.banner-inner-page-title-holder .eltdf-page-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.28;
    margin: 0 0 16px 0;
    color: #111827;
}

.banner-inner-page-title-holder .eltdf-st-text {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: #303342;
    opacity: 1;
}

.banner-subtitle {
    margin-top: 0;
}


/* Stats Counter */
.eltdf-countdownnew {
    margin-top: 30px;
}

.countdown-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.countdown-section {
    flex: 1;
    min-width: 118px;
    background: #ffffff;
    border: 1px solid #e5e7ef;
    border-radius: 10px;
    padding: 18px 12px 16px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
    transition: all 0.3s ease;
}

.countdown-section:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.countdown-amount {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.countdown-period {
    display: block;
    font-size: 10px;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

/* ============================================
   Right Column: Order Form
============================================ */
.order-form-widget {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* .order-form-content-holder {
    width: 100%;
} */

.order-form-mark {
    position: absolute;
    top: -4px;
    left: -41px;
    z-index: 2;
    display: block;
    width: 150px;
    text-align: center;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    padding: 8px 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
}

.order-form-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.3;
    text-align: center;
}

/* ============================================
   Form Styling
============================================ */
.orderform-section {
    width: 100%;
}

.orderform-section .form-row {
    gap: 12px;
    margin-bottom: 13px;
}

.orderform-section .form-row .col-6 {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
}

/* Form row input styling */
.form-row input,
.form-row select,
.form-row textarea {
    box-sizing: border-box;
}

.form-input {
    width: 100%;
    height: 44px;
    padding: 9px 12px 9px 32px;
    border: 1px solid #dce5f5;
    border-radius: 8px;
    font-size: 13px;
    color: #2d3748;
    transition: all 0.3s ease;
    background: #fcfdff;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
    color: #a0aec0;
}

/* Form Icons */
.col-12 .fa,
.col-6 .fa {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #abb8c3;
    font-size: 14px;
    z-index: 1;
}

/* Textarea */
textarea.form-input {
    height: auto;
    min-height: 126px;
    resize: vertical;
    padding-top: 15px;
    padding-bottom: 40px; /* Space for attach file icon */
}

.col-12 textarea + .fa,
.col-6 textarea + .fa {
    top: 20px;
    transform: none;
}

/* Select Dropdown */
select.form-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 34px;
    line-height: 1.2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-size: 10px 10px;
}

/* Icon next to select - ensure vertical centering */
select.form-input + .fa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 44px;
    text-align: center;
    top: 0 !important;
    transform: none !important;
    line-height: 1;
    pointer-events: none;
}

/* Date/Time Input - consistent styling */
input[type="datetime-local"].form-input {
    appearance: none;
    -webkit-appearance: none;
}

/* Hide native date picker icon on iOS to use our own */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
}

/* ============================================
   Page Counter
============================================ */
.pageCountGroupBtn {
    background: #667eea;
    color: #ffffff;
    border: none;
    width: 48px;
    height: 44px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pageCountGroupBtn:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.page-counter-wrap {
    position: relative;
    width: 100%;
}

.pageCount {
    width: 100% !important;
    display: block !important;
    text-align: center;
    margin: 0;
    font-weight: 600;
    height: 44px;
    padding-left: 48px;
    padding-right: 48px;
}

.page-counter-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.page-counter-control--dec {
    left: 0;
}

.page-counter-control--inc {
    right: 0;
}

.wordCount {
    display: block;
    text-align: center;
    color: #667eea;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

/* ============================================
   File Upload
============================================ */

#fileUploadType:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

#uploadFiles {
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

#uploadFiles:hover {
    color: #5568d3;
}

#uploadFiles .fa {
    position: static;
    transform: none;
    margin-right: 8px;
    font-size: 18px;
}

.fileMessage {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #718096;
}

#fileUpload,
#fileMessage {
    margin: 0;
    padding: 0;
}

#fileUpload:empty,
#fileMessage:empty {
    display: none;
}

#fileUpload:not(:empty) {
    margin-bottom: 15px;
}

#fileMessage:not(:empty) {
    margin-top: 10px;
}

.file-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 12px;
    color: #a0aec0;
}

/* Reset icon positioning inside file items */
.file-item .fa,
.file-info .fa,
.btn-remove .fa,
#fileMessage .fa {
    position: static;
    transform: none;
    left: auto;
    top: auto;
}

.file-info .fa {
    color: #667eea;
    font-size: 16px;
    flex-shrink: 0;
}

.btn-remove .fa {
    color: inherit;
    font-size: 14px;
}

.file-actions {
    min-width: 110px;
}

.banner-requirements-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.banner-requirements-col {
    position: relative;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper .banner-requirements-footer {
    position: absolute !important;
    left: 12px !important;
    right: auto !important;
    bottom: 14px !important;
    margin-top: 0 !important;
    z-index: 2;
    pointer-events: auto;
}

.banner-requirements-col #fileUploadType {
    min-height: auto;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    text-align: left;
}

.upload-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #667eea;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.upload-trigger:hover {
    color: #5568d3;
    opacity: 1;
}

.upload-trigger .fa {
    position: static;
    transform: rotate(-45deg);
    margin-right: 0;
    font-size: 16px;
}

.banner-requirements-footer .upload-trigger .fa {
    color: #abb8c3;
}

.banner-submit-btn {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

.banner-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.banner-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.progress-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.3s ease;
}

.btn-remove {
    display: none;
    /* background: #f56565; */
    color: #abb8c3;;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .btn-remove:hover {
    background: #e53e3e;
} */

/* ============================================
   Submit Button
============================================ */
.order-form-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.order-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.order-form-animation .order-form-submit {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

/* Note: .hide-if-customize is defined in theme style.css */

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 991px) {
    .wpb_row.vc_inner {
        flex-direction: column;
    }
    
    .banner-col {
        width: 100%;
        min-width: 100%;
    }
    
    .banner-inner-page-title-holder .eltdf-page-title {
        font-size: 32px;
    }
    
    .countdown-section {
        min-width: 100px;
    }
    
    .countdown-amount {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .eltdf-title-holder {
        padding: 40px 0;
    }
    
    .order-form-widget {
        padding: 20px;
    }
    
    .order-form-title {
        font-size: 20px;
    }
    
    .banner-col {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        flex: none;
        margin-right: 0 !important;
    }

    .orderform-section .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .orderform-section .form-row .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .textarea-wrapper .banner-requirements-footer {
        left: 12px;
        right: auto;
        bottom: 14px;
    }
    
    .countdown-row {
        gap: 10px;
    }
    
    .countdown-section {
        min-width: calc(50% - 5px);
        padding: 15px 10px;
    }
    
    .banner-inner-page-title-holder .eltdf-page-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .form-input {
        /* height: 38px; */
        padding: 9px 12px 9px 32px;
        font-size: 13px;
    }
    
    /* Textarea height auto on mobile */
    textarea.form-input {
        height: auto;
    }
    
    .pageCountGroupBtn {
        width: 48px;
        height: 44px;
        font-size: 15px;
    }
    
    .pageCount {
       
        padding-left: 48px;
        padding-right: 48px;
    }
    
    .countdown-amount {
        font-size: 18px;
    }
    
    .countdown-period {
        font-size: 11px;
    }
}

/* ============================================
   Animation Effects
============================================ */
/* .eltdf-eh-item {
    animation: fadeInUp 0.6s ease;
} */

.order-form-widget {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Simple Title Section (Homepage/Other Pages)
============================================ */
.eltdf-title-holder .eltdf-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.eltdf-title-holder .eltdf-title-info {
    margin-bottom: 20px;
}

.eltdf-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 10px;
}

/* ============================================
   Form Validation States
============================================ */
.form-input.is-invalid,
.form-input.is-invalid:focus {
    background: #fff5f5;
    border: 1px solid #f56565 !important;
}

.form-input.is-valid {
    border-color: #48bb78;
    background: #f0fff4;
}

/* File Message Styling */
#fileMessage {
    margin-top: 8px;
    font-size: 13px;
    min-height: 20px;
}

#fileMessage .file-error-msg {
    color: #f56565;
    font-weight: 500;
}

#fileMessage .file-success-msg {
    color: #48bb78;
    font-weight: 500;
}

#fileMessage.has-files {
    color: #48bb78;
}

/* ============================================
   Loading State
============================================ */
.order-form-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.order-form-submit.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Note: Utility classes (.clearfix, .hidden-file-upload) are in theme style.css */

/* ============================================
   Deadline Input (Date + Time Combined)
============================================ */
.deadline-input-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 43px;
    border: 1px solid #dce5f5;
    border-radius: 8px;
    background: #fcfdff;
    transition: all 0.3s ease;
}

.deadline-input-wrapper:focus-within {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.deadline-date-input,
.deadline-time-input {
    border: none;
    padding: 0;
    font-size: 13px;
    background-color: transparent;
    outline: none;
    
    box-sizing: border-box;
    height: 100%;
}

.deadline-date-input {
    flex: 2;
    border-right: 1px solid #dce5f5;
    padding: 9px 7px 9px 28px;
}

.deadline-time-input {
    flex: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px 10px;
    padding: 9px 12px;
}

.deadline-time-input option {
    padding: 8px 12px;
}

.deadline-input-wrapper.is-invalid {
    border-color: #f56565 !important;
    background: #fff5f5 !important;
}

.deadline-input-wrapper.is-invalid:focus-within {
    box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.1) !important;
}

/* Icon for deadline - position on top */
.col-6 .deadline-input-wrapper + .fa {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #abb8c3;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

/* Visual Composer empty space */
.vc_empty_space {
    display: block;
}

.vc_empty_space_inner {
    display: block;
}

/* ============================================
   Homepage Banner Specific Styles
============================================ */
.homepage-hero {
    position: relative;
    min-height: 560px;
    padding: 26px 0 34px;
    background: linear-gradient(90deg, #fbfbff 0%, #f7f7ff 58%, #f1efff 100%);
}



.homepage-hero .eltdf-row-grid-section {
    position: relative;
    z-index: 1;
    max-width: var(--ah-main-content-width, 1160px);
    margin: 0 auto;
    padding: 0 var(--ah-main-content-gutter, 16px);
}

/* Form Section (Top/Right) */
.banner-discription-inner {
    max-width: 450px;
    margin-left: auto;
    margin-bottom: 40px;
}

.banner-discription {
    background: #ffffff;
    border: 1px solid #e3e6f3;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(33, 43, 84, 0.08);
}

.homepage-hero .order-form-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.3;
    text-align: center;
    color: #263044;
}

/* Content Section (Below Form) */
.banner-txt {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

/* .banner-txt-inner {
    margin-bottom: 40px;
} */

.eltdf-st-tagline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    color: #4037d8;
    margin-bottom: 22px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eaf0ff;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eltdf-st-tagline::before {
    content: "\f058";
    font-family: FontAwesome;
    font-size: 15px;
    line-height: 1;
}

.eltdf-st-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 18px 0;
    line-height: 1.08;
}

.eltdf-st-text {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    color: #2f3544;
}

.eltdf-st-text strong {
    color: #111827;
}

/* Features Grid */
.wpb_column-feature {
    display: flex;
    gap: 38px;
    margin-top: 28px;
    text-align: left;
}

.wpb_column-feature .feature-col {
    flex: 1;
}

.eltdf-iwt-text {
    min-height: 32px;
    font-size: 13px;
    line-height: 1.32;
    font-weight: 600;
    color: #3c4050;
    margin: 0 0 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.eltdf-iwt-text .fa {
    color: #3f3dd8;
    font-size: 16px;
    line-height: 18px;
    margin-top: 1px;
    flex: 0 0 auto;
}

/* Trust Badges */
.uni-feature-wrapper {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid #e7e8f0;
}

.uni-feature-heading {
    margin-bottom: 18px;
}

.uni-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.uni-feature-title strong {
    color: #5142e9;
}

.uni-features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    background: #ffffff;
    padding: 10px 12px;
    border: 1px solid #edf0f7;
    border-radius: 7px;
    box-shadow: 0 5px 16px rgba(33, 43, 84, 0.04);
}

.uni-feature-item {
    flex: 1 1 0;
    text-align: center;
}

.uni-feature-item img {
    max-width: 145px;
    height: auto;
    transition: all 0.3s ease;
}

.uni-feature-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* ============================================
   Homepage Banner Responsive
============================================ */
@media (max-width: 991px) {
    .homepage-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    
    .banner-discription-inner {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }
    
    .eltdf-st-title {
        font-size: 36px;
    }
    
    .wpb_column-feature {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .homepage-hero {
        padding: 40px 0 30px;
    }
    
    .banner-discription {
        padding: 20px;
    }
    
    .homepage-hero .order-form-title {
        font-size: 18px;
    }
    
    .eltdf-st-title {
        font-size: 28px;
    }
    
    .eltdf-st-text {
        font-size: 16px;
    }
    
    .uni-features-row {
        gap: 12px;
        flex-wrap: wrap;
        padding: 10px;
    }

    .uni-feature-item {
        flex: 1 1 calc(33.333% - 12px);
        min-width: 96px;
    }
    
    .uni-feature-item img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .eltdf-st-tagline {
        font-size: 14px;
    }
    
    .eltdf-st-title {
        font-size: 24px;
    }
    
    .uni-feature-title {
        font-size: 20px;
    }
    
    .uni-feature-item img {
        max-width: 100px;
    }
}

/* ============================================
   Homepage Banner Grid Layout (Two Columns)
============================================ */

.homepage-banner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(550px, 430px);
    gap: 36px;
    align-items: start;
}

.banner-content-column {
    max-width: 800px;
    color: #111827;
}

.banner-form-column {
    position: sticky;
    top: 100px;
    width: 100%;
}

/* Override previous styles for new structure */
.homepage-hero .banner-discription-inner {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 0;
}

/* .homepage-hero .banner-txt {
    text-align: left;
    margin-bottom: 0;
} */

/* Responsive Grid Layout */
@media (max-width: 1024px) {
    .homepage-banner-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 420px);
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .homepage-banner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .banner-form-column {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .banner-content-column {
        order: 2;
    }
    
    .banner-form-column {
        order: 1;
    }
}
