/* Loan Detail Page Styles */

/* Modern Hero Section */
.loan-hero-modern {
    background: linear-gradient(180deg, #f5faf5 0%, #ffffff 60%);
    padding: 1.75rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.loan-hero-modern::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    right: -140px;
    top: -140px;
    background: radial-gradient(circle, rgba(45, 138, 90, 0.18) 0%, rgba(45, 138, 90, 0) 60%);
    z-index: 0;
}

.hero-modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-modern-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
    margin-top: 0;
}

.hero-text-content {
    max-width: 600px;
}

.hero-modern-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.625rem;
    color: var(--text-color);
}

.hero-modern-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.125rem;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-color);
    background: white;
    border: 1px solid rgba(45, 138, 90, 0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.hero-benefits i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-benefits {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-benefits {
        gap: 0.4rem;
    }
}

.hero-modern-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-modern-primary,
.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.btn-modern-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 138, 90, 0.25);
}

.btn-modern-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 138, 90, 0.35);
}

.btn-modern-secondary {
    background: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-modern-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-modern-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: invert(1);
    mix-blend-mode: multiply;
}

/* Hero Form Container */
.hero-form-container {
    width: 100%;
}

.consultation-form-hero {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.consultation-form-hero h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-color);
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.consultation-form-hero .selected-loan-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.125rem;
    background: rgba(45, 138, 90, 0.05);
    border: 1px solid rgba(45, 138, 90, 0.15);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
}

.consultation-form-hero .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.consultation-form-hero .badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.consultation-form-hero .badge-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.consultation-form-hero .badge-loan-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.consultation-form-hero .badge-change {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-form-hero .badge-change:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.consultation-form-hero .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.consultation-form-hero label {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.consultation-form-hero label span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-color);
}

.consultation-form-hero .required {
    color: #ef4444;
}

.consultation-form-hero input,
.consultation-form-hero select {
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-color);
    transition: all 0.2s ease;
    background: white;
}

.consultation-form-hero input:focus,
.consultation-form-hero select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 138, 90, 0.1);
}

.consultation-form-hero .submit-btn {
    width: 100%;
    padding: 0.9375rem 1.75rem;
    background-color: #0f172a;
    color: white;
    border: none;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.consultation-form-hero .submit-btn:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.consultation-form-hero .btn-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff714a, #ff3d00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    transition: transform 0.3s ease;
}

.consultation-form-hero .submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.consultation-form-hero .form-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4375rem;
    justify-content: center;
}

.consultation-form-hero .form-note i {
    color: var(--primary-color);
}

.consultation-form-hero .business-field {
    display: none;
}

/* Loan Type Section */
.loan-type-section {
    background: white;
    padding: 3rem 0 1rem;
}

.loan-type-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.loan-type-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.loan-type-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.loan-type-note {
    color: var(--primary-color);
    font-style: italic;
}

.loan-type-scroll {
    position: relative;
    margin-top: 2.5rem;
}

.loan-type-scroll::before,
.loan-type-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 1;
}

.loan-type-scroll::before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.loan-type-scroll::after {
    right: 0;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.loan-type-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}

.loan-type-grid::-webkit-scrollbar {
    height: 6px;
}

.loan-type-grid::-webkit-scrollbar-thumb {
    background: rgba(45, 138, 90, 0.3);
    border-radius: 999px;
}

.loan-type-card {
    background: #f6f8f9;
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 210px;
    scroll-snap-align: start;
}

.loan-type-card:hover {
    background: white;
    border-color: rgba(45, 138, 90, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.loan-type-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(45, 138, 90, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.loan-type-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

.slider-hint {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.slider-hint i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .loan-type-container {
        padding: 0 1.5rem;
    }
    
    .loan-type-header h2 {
        font-size: 1.75rem;
    }
    
    .loan-type-grid {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .loan-type-section {
        padding: 2.5rem 0 1rem;
    }
    
    .loan-type-container {
        padding: 0 1rem;
    }
    
    .loan-type-card {
        min-width: 180px;
    }
}

/* Loan Apply Guide */
.loan-apply-guide {
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 70%);
    padding: 3.5rem 0;
}

.loan-apply-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.loan-apply-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
}

.loan-apply-text {
    background: white;
    border-radius: 1.5rem;
    padding: 2.25rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
}

.loan-apply-text h3 {
    font-size: 1.9rem;
    color: var(--text-color);
    margin-bottom: 0.85rem;
}

.loan-apply-text p {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    color: white;
    background: var(--primary-color);
}

.loan-apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.apply-step {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 230px;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
}

.step-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(45, 138, 90, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.step-copy h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--text-color);
}

.step-copy p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-count {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 992px) {
    .loan-apply-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .loan-apply-text {
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .loan-apply-text p {
        margin: 0 auto 1.25rem;
        max-width: 80%;
    }
    
    .outline-btn {
        margin: 0 auto;
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .loan-apply-container {
        padding: 0 1.25rem;
    }
    
    .loan-apply-content {
        padding: 1.5rem;
    }
    
    .loan-apply-text p {
        max-width: 100%;
    }
    
    .loan-apply-steps {
        grid-template-columns: 1fr;
    }
}

/* Eligibility + Documents */
.eligibility-docs-section {
    margin-top: 3rem;
}

.eligibility-docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.eligibility-panel,
.documents-panel {
    background: #f9fafb;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
}

.eligibility-panel header span,
.documents-panel header span {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}

.eligibility-panel header h3,
.documents-panel header h3 {
    margin-top: 0.4rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.criteria-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.criteria-columns h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.criteria-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.criteria-columns li {
    color: var(--text-light);
    font-size: 0.9375rem;
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.documents-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.documents-columns h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.documents-columns p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .eligibility-docs-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-columns {
        grid-template-columns: 1fr;
    }
}

/* Charges Section */
.loan-charges-section {
    background: white;
    padding: 3rem 0;
}

.loan-charges-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.charges-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.charges-header p {
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.charges-card {
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: white;
    overflow: hidden;
}

.charges-table {
    width: 100%;
    border-collapse: collapse;
}

.charges-table th,
.charges-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}

.charges-table th {
    font-weight: 600;
    width: 45%;
    color: var(--text-color);
}

.charges-table td {
    color: var(--text-light);
}

.charges-table tr:last-child th,
.charges-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .loan-charges-container {
        padding: 0 1.25rem;
    }
    
    .charges-table th,
    .charges-table td {
        padding: 0.85rem 1rem;
        display: block;
        width: 100%;
    }
    
    .charges-table th {
        margin-bottom: 0.35rem;
    }
    
    .charges-table tr {
        display: block;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 0.5rem;
    }
}

/* Instant Loan CTA */
.instant-loan-section {
    background: #f7f7fb;
    padding: 3.5rem 0;
}

.instant-loan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 2rem;
    align-items: center;
}

.instant-text h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.instant-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.instant-cta {
    display: inline-flex;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(45, 138, 90, 0.25);
    transition: transform 0.2s ease;
}

.instant-cta:hover {
    transform: translateY(-2px);
}

.instant-visual {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.instant-phone {
    width: 240px;
    height: 430px;
    border-radius: 40px;
    border: 8px solid #1f2937;
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 45px rgba(31, 41, 55, 0.12);
}

.instant-phone span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.instant-phone strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.instant-phone button {
    margin-top: 2rem;
    width: 100%;
    padding: 0.65rem;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.instant-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-chip {
    border: 2px solid rgba(45, 138, 90, 0.2);
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--text-color);
    background: white;
}

.benefit-chip i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .instant-loan-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instant-visual {
        flex-direction: column;
    }
    
    .instant-benefits {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .instant-loan-container {
        padding: 0 1.25rem;
    }
    
    .instant-phone {
        width: 200px;
        height: 380px;
    }
    
    .benefit-chip {
        flex-direction: column;
        gap: 0.25rem;
    }
}

.loan-cities-section {
    padding: 3.5rem 0;
    background: white;
}

.loan-cities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.city-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.city-intro p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.outline-btn.dark {
    border-color: var(--text-color);
    color: var(--text-color);
}

.city-content {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.india-map {
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.india-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    padding: 1rem;
}

.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.875rem;
}

.city-list h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.city-list h3 span {
    color: #c2185b;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 1rem;
}

.city-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.city-grid li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color);
    font-weight: 500;
}

.city-grid i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .city-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .loan-cities-container {
        padding: 0 1.25rem;
    }
    
    .city-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

/* Partners Section */
.partners-section {
    background: #f7f9fb;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.partners-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.partners-label {
    min-width: 180px;
    padding-right: 2rem;
    border-right: 1px solid var(--border-color);
}

.partners-label p {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.partners-slider-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    padding: 1rem 0;
}

.partners-track {
    display: flex;
    gap: 6rem;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.partner-logo img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.partners-track:hover {
    animation-play-state: paused;
}

.slider-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.slider-fade-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-fade-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Quick Stats Section */
.quick-stats-section {
    background: white;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(45, 138, 90, 0.05);
    transform: translateY(-2px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: rgba(45, 138, 90, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.stat-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Old Loan Hero Section (Fallback) */
.loan-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.loan-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.loan-hero-content {
    position: relative;
    z-index: 1;
}

.loan-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.loan-breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.loan-breadcrumb a:hover {
    color: var(--primary-color);
}

.loan-breadcrumb i {
    font-size: 0.75rem;
}

.loan-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.loan-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.loan-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.loan-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.loan-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.loan-hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-apply,
.btn-calculate {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-apply {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-calculate {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-calculate:hover {
    background: rgba(255, 255, 255, 0.3);
}

.loan-hero-right {
    position: relative;
}

.loan-hero-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.loan-hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-card-list i {
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Loan Details Section */
.loan-details-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(45, 138, 90, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Eligibility Section */
.eligibility-section {
    margin-bottom: 5rem;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.eligibility-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.eligibility-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(45, 138, 90, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.eligibility-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.eligibility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.eligibility-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.eligibility-card li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Documents Section */
.documents-section {
    margin-bottom: 5rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.document-category {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.document-category:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.document-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.document-category h3 i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.document-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.document-category li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.document-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* EMI Calculator */
.loan-calculator-section {
    margin-bottom: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2rem;
    color: white;
}

.loan-calculator-section .section-header h2,
.loan-calculator-section .section-header p {
    color: white;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-input-group label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.calc-current-value {
    font-weight: 600;
    color: white;
}

.calculator-results {
    position: sticky;
    top: 2rem;
}

.result-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: var(--text-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.result-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.result-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(45, 138, 90, 0.05);
    border-radius: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.result-value-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.result-label {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.result-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
}

.result-value.total {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.calc-apply-btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calc-apply-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 138, 90, 0.3);
}

/* Process Section */
.process-section {
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 100%);
    opacity: 0.2;
    z-index: 0;
}

.process-step {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(45, 138, 90, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: white;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(45, 138, 90, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.process-step p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.faq-item summary:hover {
    color: var(--primary-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Similar Loans Section */
.similar-loans-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.similar-loans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.similar-loan-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.similar-loan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.similar-loan-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(45, 138, 90, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.similar-loan-card:hover .similar-loan-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.similar-loan-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.similar-loan-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.similar-loan-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.similar-loan-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.similar-loan-meta i {
    color: var(--primary-color);
}

/* CTA Section */
.loan-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.loan-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.loan-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-apply-large,
.btn-contact-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.0625rem;
}

.btn-apply-large {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-apply-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-contact-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-contact-large:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-modern-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-modern-image {
        height: 400px;
        order: -1;
    }
    
    .partners-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .partners-label {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1rem;
        width: 100%;
    }
    
    .partners-label p {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .loan-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .loan-hero h1 {
        font-size: 2.5rem;
    }
    
    .loan-highlights {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        position: static;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .similar-loans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .loan-hero-modern {
        padding: 6rem 0 2rem;
    }
    
    .hero-modern-container {
        padding: 0 1.5rem;
    }
    
    .hero-modern-content {
        gap: 2rem;
    }
    
    .hero-modern-title {
        font-size: 2rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1rem;
    }
    
    .hero-modern-image {
        height: 300px;
    }
    
    .hero-modern-actions {
        flex-direction: column;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .consultation-form-hero {
        padding: 2rem;
    }
    
    .consultation-form-hero h3 {
        font-size: 1.5rem;
    }
    
    .partners-section {
        padding: 2rem 0;
    }
    
    .partners-container {
        padding: 0 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .loan-hero {
        padding: 6rem 0 3rem;
    }
    
    .loan-hero h1 {
        font-size: 2rem;
    }
    
    .loan-subtitle {
        font-size: 1rem;
    }
    
    .loan-hero-actions {
        flex-direction: column;
    }
    
    .btn-apply,
    .btn-calculate {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .eligibility-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .loan-calculator-section {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-apply-large,
    .btn-contact-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .loan-hero-modern {
        padding: 5rem 0 1.5rem;
    }
    
    .hero-modern-container {
        padding: 0 1rem;
    }
    
    .hero-modern-title {
        font-size: 1.75rem;
    }
    
    .hero-modern-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-modern-image {
        height: 250px;
    }
    
    .consultation-form-hero {
        padding: 1.5rem;
    }
    
    .consultation-form-hero h3 {
        font-size: 1.375rem;
    }
    
    .form-subtitle {
        font-size: 0.875rem;
    }
    
    .consultation-form-hero .selected-loan-badge {
        padding: 0.875rem 1rem;
    }
    
    .consultation-form-hero .badge-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .consultation-form-hero input,
    .consultation-form-hero select {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .partners-section {
        padding: 1.5rem 0;
    }
    
    .partners-container {
        padding: 0 1rem;
    }
    
    .partners-track {
        gap: 4rem;
    }
    
    .partner-logo img {
        height: 20px;
    }
    
    .quick-stats-section {
        padding: 2rem 0;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .stat-value {
        font-size: 0.9375rem;
    }
    
    .loan-hero {
        padding: 5rem 0 2rem;
    }
    
    .loan-hero h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .loan-hero-card {
        padding: 2rem;
    }
    
    .result-value-large {
        font-size: 2rem;
    }
}

