/* Existing styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    color: #301b46;
    font-size: 1.8rem;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 25px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #301b46;
}

.navbar ul li a.active {
    color: #301b46;
    font-weight: 600;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #301b46, #7e628c);
    color: white;
    padding: 80px 0;
}

.hero-content-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.hero-text-content {
    flex: 1;
    min-width: 300px;
}

.hero-text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text-content p:first-of-type {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-text-content p:last-of-type {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-form-content {
    flex: 1;
    min-width: 300px;
}

.cta-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: #f59e0b;
    color: white;
}

.primary-btn:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Loan Application Section */
.loan-application {
    background-color: white;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
}

.progress-bar {
    margin-bottom: 30px;
}

.progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.progress-track {
    flex-grow: 1;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 5px;
    margin: 0 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #251637;
    border-radius: 5px;
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
}

.application-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1e293b;
}

.application-form h3 {
    color: #1e293b;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
}

.amount-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #301b46;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #301b46;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.amount-input:focus {
    background-color: #ffffff;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    outline: none;
}

/* Chrome, Safari, Edge, Opera - Remove arrows */
.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox - Remove arrows */
.amount-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.amount-display {
    text-align: center;
    margin-top: 15px;
}

.amount-display span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #301b46;
}

select,
input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    background-color: white;
    font-size: 1rem;
}

select:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: #301b46;
    box-shadow: 0 0 0 3px rgba(48, 27, 70, 0.1);
}

input.error {
    border: 2px solid #ef4444;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.why-choose>p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    color: #301b46;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #64748b;
}

/* Loan Purposes Section */
.loan-purposes {
    padding: 80px 0;
    background-color: white;
}

.loan-purposes h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.loan-purposes>p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
}

.purpose-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.purpose-card {
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.purpose-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.purpose-card p {
    color: #64748b;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #301b46, #301b46);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.footer-logo h2 {
    color: #301b46;
    font-size: 32px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #301b46;
}

.footer-info {
    text-align: right;
    font-size: 14px;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-info {
        text-align: center;
    }

    .disclaimer {
        margin: 15px auto 0;
    }
}

/* How It Works Hero */
.how-it-works-hero {
    background: linear-gradient(135deg, #251637, #251637);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.how-it-works-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.how-it-works-hero p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Visualization */
.process-visualization {
    padding: 60px 0;
    background-color: white;
}

.process-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #251637;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon span {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.step-icon img {
    width: 40px;
    height: 40px;
}

.process-step h3 {
    color: #1e293b;
    margin-bottom: 10px;
}

.process-step p {
    color: #64748b;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* Detailed Process */
.detailed-process {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.detailed-process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.process-steps-detailed {
    max-width: 800px;
    margin: 0 auto;
}

.step-detail {
    display: flex;
    margin-bottom: 50px;
    align-items: flex-start;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-image-number {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-image-number img {
    width: 100%;
    height: 100%;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-content p {
    color: #64748b;
    margin-bottom: 15px;
}

.step-content ul {
    color: #64748b;
    margin-left: 20px;
    margin-bottom: 20px;
}

.step-content ul li {
    margin-bottom: 10px;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: white;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.timeline {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    display: none;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.timeline-image img {
    width: 100%;
    height: 100%;
}

.timeline-content h3 {
    color: #1e293b;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    color: #1e293b;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #251637;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #64748b;
}

.faq-answer.open {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Personal Loans Page */
.personal-loans {
    padding: 80px 0 40px;
    background-color: white;
    text-align: center;
}

.personal-loans h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.personal-loans>p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 50px;
}

.loan-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.loan-option {
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.loan-option:hover {
    transform: translateY(-10px);
}

.loan-option h2 {
    color: #251637;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.loan-option p {
    color: #64748b;
    margin-bottom: 20px;
}

.loan-option ul {
    text-align: left;
    margin: 20px 0;
    color: #64748b;
    list-style: none;
    padding: 0;
}

.loan-option ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.loan-option ul li:before {
    content: "✓";
    color: #251637;
    position: absolute;
    left: 0;
}

/* Loan Benefits Section */
.loan-benefits {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.loan-benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefit-card h3 {
    color: #251637;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #64748b;
}

/* Process Steps */
.process-steps {
    padding: 80px 0;
    background-color: white;
}

.process-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #251637;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.step p {
    color: #64748b;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8fafc;
    color: #333;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.contact-section>p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: #251637;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #64748b;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    background-color: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #251637;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text-content,
    .hero-form-content {
        flex: none;
        width: 100%;
    }

    .loan-application {
        max-height: none;
        /* mobile पर scroll limit हटाओ */
        overflow-y: visible;
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }

    .navbar .nav-links {
        position: fixed;
        right: 0;
        top: 80px;
        /* header height के according */
        height: calc(100vh - 80px);
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.15);
        padding-top: 40px;
        z-index: 999;
    }

    .navbar ul li {
        margin: 20px 0;
        opacity: 0;
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    /* Burger animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero section */
    .hero-text-content h1,
    .how-it-works-hero h1 {
        font-size: 2.2rem;
    }

    .hero-text-content p:first-of-type {
        font-size: 1.1rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        max-width: 300px;
        margin: 10px 0;
        text-align: center;
    }

    /* Progress bar mobile */
    .progress {
        flex-direction: column;
        gap: 15px;
    }

    .progress-track {
        width: 100%;
        margin: 10px 0;
    }

    /* Form navigation buttons */
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .form-navigation .btn {
        width: 100%;
    }

    /* Grids stack properly */
    .features,
    .purpose-cards,
    .loan-options,
    .benefits-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    /* Process diagram */
    .process-diagram {
        flex-direction: column;
        gap: 30px;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    /* Detailed steps */
    .step-detail {
        flex-direction: column;
        text-align: center;
    }

    .step-image-number {
        margin: 0 auto 20px;
    }

    /* Timeline */
    .timeline {
        flex-direction: column;
        gap: 50px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Header */
    header .container {
        padding: 15px 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero,
    .how-it-works-hero {
        padding: 60px 0;
    }

    .hero-text-content h1,
    .how-it-works-hero h1 {
        font-size: 1.9rem;
    }

    .hero-text-content p,
    .how-it-works-hero p {
        font-size: 1rem;
    }

    /* Section paddings */
    .why-choose,
    .loan-purposes,
    .cta-section,
    .personal-loans,
    .loan-benefits,
    .process-steps,
    .process-visualization,
    .detailed-process,
    .timeline-section,
    .faq-section,
    .contact-section {
        padding: 50px 0;
    }

    /* Headings */
    .why-choose h2,
    .loan-purposes h2,
    .cta-section h2,
    .loan-benefits h2,
    .process-steps h2,
    .timeline-section h2,
    .faq-section h2,
    .detailed-process h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .personal-loans h1 {
        font-size: 2rem;
    }

    /* Form inputs */
    select,
    input,
    textarea {
        padding: 14px;
        font-size: 1rem;
        /* iOS zoom issue avoid */
    }

    /* Loan application card */
    .loan-application {
        padding: 20px;
        border-radius: 8px;
    }

    .application-form h2 {
        font-size: 1.6rem;
    }

    /* Feature & purpose cards */
    .feature-card,
    .purpose-card,
    .loan-option,
    .benefit-card {
        padding: 25px;
    }
}

/* Extra: Smooth burger menu animation for links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Testimonials Slider Section - New Design */
.testimonials-slider-section {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    /* Blue/Purple gradient matching image */
    padding: 80px 0;
    text-align: center;
    color: white;
}

.testimonials-slider-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.testimonials-slider-section .subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slider-container {
    max-width: 500px;
    /* Card width looks constrained in image */
    margin: 0 auto;
    position: relative;
    padding-bottom: 40px;
    /* Space for dots */
}

.slides-wrapper {
    position: relative;
}

.slide {
    display: none;
    /* Hidden by default */
    animation: fadeEffect 0.5s ease;
    width: 100%;
}

.slide.active {
    display: block;
    /* Show active slide */
}

@keyframes fadeEffect {
    from {
        opacity: 0.6;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid #fbbf24;
    /* Yellow border matching image */
    text-align: center;
    position: relative;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.credit-score-badge {
    background-color: #0ea5e9;
    /* Cyan/Light blue */
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.3);
}

.quote {
    color: #334155;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.author-info h4 {
    color: #1e40af;
    /* Dark blue for name */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #fbbf24;
    /* Yellow active dot */
    transform: scale(1.1);
}

/* Home Improvement Page Styles */

/* Hero Section */
.home-improvement-hero {
    background: linear-gradient(135deg, #251637 0%, #3d2a5f 100%);
    color: white;
    padding: 80px 0;
    margin-top: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 35px;
    font-size: 1.05rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Section Title Styling */
.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Section */
.why-choose-home-improvement {
    padding: 100px 0;
    background-color: #f8fafc;
}

.why-choose-home-improvement h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.benefits-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #fbbf24;
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #251637, #3d2a5f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fbbf24;
}

.benefit-card-modern h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card-modern p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Popular Projects Section */
.popular-projects {
    padding: 100px 0;
    background-color: white;
}

.popular-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.projects-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card-modern {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card-modern:hover {
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    transform: translateY(-5px);
}

.project-image-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #251637, #3d2a5f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #fbbf24;
}

.project-card-modern h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.project-roi {
    color: #251637;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 15px;
}

/* How It Works Section */
.how-it-works-home {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.how-it-works-home h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #251637, #3d2a5f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(37, 22, 55, 0.2);
}

.timeline-step h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-step p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-connector {
    width: 50px;
    height: 3px;
    background: #fbbf24;
    margin: 0 10px;
}

/* Comparison Table */
.financing-comparison {
    padding: 100px 0;
    background-color: white;
}

.financing-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, #251637, #3d2a5f);
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1e293b;
    background-color: #f8fafc;
}

.recommendation {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    color: #047857;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #fbbf24;
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #251637, #3d2a5f);
    color: white;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-lg {
    padding: 16px 50px;
    font-size: 1.1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .steps-timeline {
        flex-direction: column;
    }

    .timeline-connector {
        width: 3px;
        height: 50px;
        margin: 10px 0;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .home-improvement-hero {
        padding: 60px 0;
        margin-top: 50px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 20px;
        margin-bottom: 0;
    }

    .stat-item {
        flex: 1;
    }

    .why-choose-home-improvement,
    .popular-projects,
    .how-it-works-home,
    .financing-comparison,
    .faq-section,
    .final-cta {
        padding: 60px 0;
    }

    .why-choose-home-improvement h2,
    .popular-projects h2,
    .how-it-works-home h2,
    .financing-comparison h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .benefit-card-modern,
    .project-card-modern,
    .faq-item {
        padding: 25px 20px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px !important;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        border-radius: 12px;
    }

    .comparison-table {
        min-width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .home-improvement-hero {
        padding: 40px 0;
        margin-top: 40px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 15px;
        justify-content: space-around;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .why-choose-home-improvement,
    .popular-projects,
    .how-it-works-home,
    .financing-comparison,
    .faq-section,
    .final-cta {
        padding: 40px 0;
    }

    .why-choose-home-improvement h2,
    .popular-projects h2,
    .how-it-works-home h2,
    .financing-comparison h2,
    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .benefit-card-modern,
    .project-card-modern,
    .faq-item {
        padding: 20px 15px;
    }

    .benefit-card-modern h3,
    .project-card-modern h3 {
        font-size: 1.1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .project-image-container {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-step h3 {
        font-size: 1.1rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ==================== NEW PROFESSIONAL STYLES FOR LOAN PAGES ==================== */

/* Loan Hero Section */
.loan-hero {
    background: linear-gradient(135deg, #301b46 0%, #4a2e62 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.loan-hero .hero-overlay {
    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="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.loan-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    font-size: 1.05rem;
    padding: 14px 40px;
}

/* Debt Consolidation Hero Specific */
.debt-hero {
    background: linear-gradient(135deg, #301b46 0%, #4a2e62 100%);
}

/* Loan Details Section */
.loan-details-section {
    padding: 100px 0;
    background-color: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-details h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
}

.benefits-section h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    padding: 25px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(37, 22, 55, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Process Steps - Enhanced */
.process-steps {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.process-steps h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 2.5rem;
    color: #f59e0b;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #301b46, #4a2e62);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Savings Calculator Section */
.savings-calculator {
    padding: 100px 0;
    background-color: #fff;
}

.savings-calculator h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.savings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.savings-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.savings-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.example-header,
.tips-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.example-header i,
.tips-header i {
    font-size: 2rem;
    color: #f59e0b;
}

.savings-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 600;
}

.savings-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.savings-highlight {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-item .label {
    color: #475569;
    font-weight: 500;
}

.highlight-item .amount {
    font-size: 1.6rem;
    color: #301b46;
    font-weight: 700;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 12px 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tips-list i {
    color: #f59e0b;
    font-size: 0.9rem;
}

/* Requirements Section */
.requirements {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.requirements h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.requirement-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.requirement-icon i {
    font-size: 1.8rem;
    color: white;
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
}

.requirement-list {
    list-style: none;
}

.requirement-list li {
    padding: 12px 0;
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.requirement-list i {
    color: #10b981;
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background-color: #fff;
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 50px;
    border-radius: 15px;
}

.calculator-inputs {
    display: grid;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.input-group input,
.input-group select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator-results h3 {
    font-size: 1.4rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.result-item span:first-child {
    color: #64748b;
    font-weight: 500;
}

.result-value {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
}

.result-item.total-savings .result-value.highlight {
    color: #f59e0b;
    font-size: 1.3rem;
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* CTA Section Enhancement */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #301b46 0%, #4a2e62 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* Footer Enhancement */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: #301b46;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f59e0b;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Testimonials Enhancement */
.testimonials-slider-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-slider-section h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-header {
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: #f59e0b;
}

.credit-score-badge {
    display: inline-block;
    background: #f0f4f8;
    color: #301b46;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.quote {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.author-info h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .calculator {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .savings-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-details h2 {
        font-size: 1.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        padding: 60px 0;
    }

    .steps {
        gap: 25px;
    }

    .step {
        padding: 30px 20px;
    }

    .savings-card {
        padding: 30px 20px;
    }

    .calculator {
        padding: 30px;
        border-radius: 12px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}