/* ========================================
   Eazy Loan Credit - Main Stylesheet
   Modern, Responsive Design
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Brand Colors */
    --primary-color: #00a896;
    --primary-dark: #008577;
    --primary-light: #02c39a;
    --secondary-color: #f77f00;
    --secondary-dark: #d36d00;
    --secondary-light: #ff9500;

    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f0f4f8;
    --border-color: #e0e0e0;

    /* Status Colors */
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Container Width */
    --container-max-width: 1200px;
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: var(--line-height-base);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-position: inside;
}

.highlight {
    color: var(--primary-color);
}

/* ========== Container ========== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    background-color: rgba(0, 168, 150, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all var(--transition-base);
    border-radius: var(--radius-sm);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #ffffff !important;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.05), rgba(247, 127, 0, 0.05));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(247, 127, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 0.8s ease;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-light);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 0.8s ease;
}

.hero-card {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform var(--transition-base);
}

.hero-card:hover {
    transform: translateY(-10px);
}

.hero-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.hero-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.hero-card p {
    color: var(--text-muted);
}

/* ========== Stats Section ========== */
.stats {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.05), rgba(247, 127, 0, 0.05));
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

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

/* ========== Features Section ========== */
.features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(247, 127, 0, 0.1));
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== How It Works Section ========== */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + var(--spacing-xl));
    background: linear-gradient(180deg, var(--primary-color), transparent);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-content {
    background-color: var(--bg-lighter);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(247, 127, 0, 0.1));
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

/* ========== Eligibility Section ========== */
.eligibility {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.05), rgba(247, 127, 0, 0.05));
}

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.eligibility-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.eligibility-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.eligibility-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.eligibility-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.eligibility-item span {
    color: var(--text-light);
    font-size: 1.125rem;
}

.eligibility-image {
    display: flex;
    justify-content: center;
}

.eligibility-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 400px;
}

.eligibility-card i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.eligibility-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.eligibility-card p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ========== CTA Section ========== */
.cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta .btn-secondary:hover {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

/* ========== Contact Section ========== */
.contact {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.contact-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(247, 127, 0, 0.1));
    border-radius: var(--radius-full);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

/* ========== Footer ========== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-lighter);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-logo-text {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-logo-text i {
    color: var(--primary-light);
}

.footer-tagline {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--bg-lighter);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--bg-lighter);
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-section ul li i {
    margin-right: var(--spacing-xs);
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bg-lighter);
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

.developer-credit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.developer-credit a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ========== Page Header ========== */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(247, 127, 0, 0.1));
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* ========== About Page Styles ========== */
.about-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-card {
    background-color: var(--bg-lighter);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.about-card p {
    color: var(--text-muted);
}

.what-we-do {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.content-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.mission-vision {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.mv-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-base);
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mission-card {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(0, 168, 150, 0.05));
    border: 2px solid var(--primary-color);
}

.vision-card {
    background: linear-gradient(135deg, rgba(247, 127, 0, 0.1), rgba(247, 127, 0, 0.05));
    border: 2px solid var(--secondary-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.mission-card .mv-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.vision-card .mv-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.mv-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.mv-card p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.our-promise {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.promise-card {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(247, 127, 0, 0.1));
    border-radius: var(--radius-full);
}

.promise-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.promise-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.promise-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.why-choose {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: var(--spacing-xl) 0;
    box-shadow: var(--shadow-md);
}

.highlight-box h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.values {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(247, 127, 0, 0.1));
    border-radius: var(--radius-full);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-muted);
}

/* ========== Features Page Styles ========== */
.features-detailed {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.feature-detail {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background-color: var(--bg-lighter);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-detail:hover {
    box-shadow: var(--shadow-md);
}

.feature-detail-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.feature-detail-reverse .feature-detail-content {
    grid-template-columns: 1fr auto;
}

.feature-detail-reverse .feature-detail-text {
    order: -1;
}

.feature-detail-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.feature-detail-icon i {
    font-size: 2.5rem;
    color: var(--bg-white);
}

.feature-detail-text h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature-detail-text>p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.feature-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-light);
}

.loan-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.05), rgba(247, 127, 0, 0.05));
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--bg-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.product-card h3 {
    font-size: 1.75rem;
    margin: var(--spacing-md) 0;
}

.product-tenure {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.product-feature i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.product-feature span {
    color: var(--text-light);
}

.documents-required {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.document-card {
    background-color: var(--bg-lighter);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
}

.document-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.document-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.document-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.document-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
}

.document-card p {
    color: var(--text-muted);
}

.comparison {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.125rem;
}

.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-sm);
}

.highlight-cell {
    background-color: rgba(0, 168, 150, 0.1);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-cell i {
    font-size: 1.25rem;
    margin-right: var(--spacing-xs);
}

.comparison-cell i.yes {
    color: var(--success-color);
}

.comparison-cell i.no {
    color: var(--error-color);
}

/* ========== Legal Pages Styles ========== */
.legal-content {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background-color: var(--bg-lighter);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.legal-section h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.legal-section ul {
    list-style-position: outside;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-section ul li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.7;
}

.legal-section ul li strong {
    color: var(--text-dark);
}

.contact-info-box {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.contact-info-box p {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-info-box i {
    color: var(--primary-color);
    width: 20px;
}

.legal-footer {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(247, 127, 0, 0.1));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--spacing-xl);
}

.legal-footer p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.legal-footer p strong {
    color: var(--primary-color);
}

/* ========== Animations ========== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Responsive Design ========== */

/* Tablet */
@media (max-width: 992px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-xxl: 3rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-content,
    .eligibility-content {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        font-size: 0.875rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --font-size-base: 15px;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: var(--spacing-md);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features-grid,
    .stats-grid,
    .products-grid,
    .documents-grid,
    .values-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .comparison-cell {
        justify-content: flex-start;
        text-align: left;
    }

    .feature-detail-content {
        grid-template-columns: 1fr;
    }

    .feature-detail-icon {
        width: 60px;
        height: 60px;
    }

    .feature-detail-icon i {
        font-size: 2rem;
    }

    .feature-benefits {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --font-size-base: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .footer,
    .cta,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .page-header {
        padding: 20px 0;
    }
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mt-3 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ========== Hero Illustration ========== */
.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========== Trust Badges ========== */
.trust-badges {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
    text-align: center;
}

.trust-badges-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

/* ========== EMI Calculator ========== */
.emi-calculator {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-lighter);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
}

.calculator-inputs {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.input-group {
    margin-bottom: var(--spacing-lg);
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.input-with-symbol {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.currency-symbol,
.percent-symbol {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--text-muted);
    pointer-events: none;
}

.currency-symbol {
    left: 15px;
    right: auto;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: none;
}

.amount-input,
.rate-input {
    padding: 12px 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.amount-input:focus,
.rate-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.tenure-options {
    display: flex;
    gap: var(--spacing-sm);
}

.tenure-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tenure-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tenure-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.calculator-result {
    display: flex;
    align-items: center;
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 100%;
}

.result-card h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.emi-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    color: var(--bg-white);
}

.result-breakdown {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.125rem;
}

.breakdown-item span {
    color: rgba(255, 255, 255, 0.8);
}

.breakdown-item strong {
    color: var(--bg-white);
    font-weight: 700;
}

.result-card .btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.result-card .btn:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

/* ========== Testimonials ========== */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--bg-lighter);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== Application Form ========== */
.application-form {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.03), rgba(247, 127, 0, 0.03));
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.loan-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.form-step-title i {
    color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}

.form-group input.error~.error-message,
.form-group select.error~.error-message,
.form-group textarea.error~.error-message {
    display: block;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-navigation {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--border-color);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    flex: 1;
    position: relative;
    opacity: 0.4;
    transition: opacity var(--transition-base);
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: -1;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.completed::after {
    background-color: var(--primary-color);
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--bg-lighter);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.progress-step.active .progress-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.progress-step.completed .progress-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.progress-step span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.progress-step.active span {
    color: var(--primary-color);
}

/* ========== Responsive Updates ========== */
@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-progress {
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .progress-step::after {
        display: none;
    }

    .hero-illustration {
        max-width: 100%;
    }

    .trust-badges-image {
        max-height: 60px;
    }

    .emi-amount {
        font-size: 2.5rem;
    }

    .form-wrapper {
        padding: var(--spacing-lg);
    }
}