/* ===================================
   KwickMoney - Custom Styles
   Bootstrap 5 Based Design
   =================================== */

/* CSS Variables */
:root {
    --primary-green: #00E676;
    --primary-green-dark: #00C853;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Header & Navigation
   =================================== */
.floating-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.btn-signin {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border: none;
    background: transparent;
}

.btn-signin:hover {
    color: var(--primary-green);
}

.btn-primary-custom {
    background: var(--primary-green);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.3);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-green-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999;
    padding-top: 6rem;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-link {
    font-size: 1.25rem;
    padding: 1rem 1.5rem !important;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.badge-ai {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 1rem;
    background: rgba(0, 230, 118, 0.2);
    transform: rotate(-1deg);
    z-index: -1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 36rem;
    line-height: 1.7;
}

/* Stats Cards */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    max-width: 28rem;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 230, 118, 0.3);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.trust-badge-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

/* Application Form Card */
.application-card {
    background: linear-gradient(135deg, #1a1a1a, #000);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

.instant-badge {
    display: inline-block;
    background: var(--primary-green);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.application-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.application-card .subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
}

.form-label-custom {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-label-custom span {
    color: var(--primary-green);
}

.form-control-custom {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control-custom::placeholder {
    color: #6b7280;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
}

.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-check-custom input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary-green);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-check-custom label {
    color: #d1d5db;
    font-size: 0.875rem;
}

.form-check-custom a {
    color: var(--primary-green);
}

.form-check-custom a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

.security-note {
    color: #9ca3af;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
}

/* ===================================
   Loan Calculator Section
   =================================== */
.calculator-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light), #fff);
    position: relative;
    overflow: hidden;
}

/* .calculator-section::before,
.calculator-section::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
} */

.calculator-section::before {
    top: 0;
    left: 0;
    background: rgba(0, 230, 118, 0.05);
}

.calculator-section::after {
    bottom: 0;
    right: 0;
    background: rgba(0, 200, 83, 0.05);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary-green);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.calculator-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.slider-container {
    margin-bottom: 2rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.slider-value {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.custom-range {
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--primary-green);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 230, 118, 0.4);
}

.custom-range::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--primary-green);
    cursor: pointer;
    border: none;
}

.slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.quick-select {
    margin-top: 2rem;
}

.quick-select-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.quick-btn {
    padding: 0.5rem 0.75rem;
    background: var(--bg-light);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: var(--transition);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.quick-btn:hover,
.quick-btn.active {
    background: var(--primary-green);
    color: #fff;
}

/* EMI Result Cards */
.emi-result-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    color: #fff;
    box-shadow: var(--shadow-2xl);
    margin-bottom: 1.5rem;
}

.emi-result-card .label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.emi-result-card .value {
    font-size: 3rem;
    font-weight: 600;
}

.emi-result-card .note {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-top: 0.5rem;
}

.emi-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.breakdown-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.breakdown-card .label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.breakdown-card .value {
    font-size: 1.5rem;
    font-weight: 600;
}

.breakdown-card .value.green {
    color: var(--primary-green);
}

.btn-apply-loan {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.25rem;
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-apply-loan:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 5rem 0;
    background: #fff;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.feature-icon.yellow { background: linear-gradient(135deg, #fbbf24, #f97316); }
.feature-icon.blue { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.feature-icon.green { background: linear-gradient(135deg, #4ade80, #22c55e); }
.feature-icon.purple { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.feature-icon.pink { background: linear-gradient(135deg, #f472b6, #ec4899); }
.feature-icon.indigo { background: linear-gradient(135deg, #818cf8, #6366f1); }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light), #fff, rgba(219, 234, 254, 0.3));
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-green-dark));
    transform: translateX(-50%);
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    flex: 1;
    padding: 0 2rem;
}

.process-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    display: inline-block;
    max-width: 28rem;
    transition: var(--transition);
}

.process-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: scale(1.05);
}

.process-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.process-step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.process-step-icon.blue { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.process-step-icon.yellow { background: linear-gradient(135deg, #fbbf24, #f97316); }
.process-step-icon.green { background: linear-gradient(135deg, #4ade80, #22c55e); }
.process-step-icon.purple { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }

.process-step-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--text-gray);
}

.process-center-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 4px #fff, 0 8px 20px rgba(0, 230, 118, 0.3);
    z-index: 10;
    flex-shrink: 0;
}

.process-empty {
    flex: 1;
}

.process-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.process-cta-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;    
    color: var(--primary-green);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-section {
    padding: 5rem 0;
    background: #fff;
}

.review-card {
    background: linear-gradient(135deg, var(--bg-light), #fff);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    box-shadow: var(--shadow-xl);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: var(--primary-green);
}

.review-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

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

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.cta-section::before {
    top: 0;
    left: 25%;
    background: var(--primary-green);
}

.cta-section::after {
    bottom: 0;
    right: 25%;
    background: var(--primary-green-dark);
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    background: var(--primary-green);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-primary:hover {
    background: var(--primary-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1.25rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.9375rem;
    max-width: 28rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-green);
}

/* ===================================
   OTP Verification Page
   =================================== */
.otp-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-light), #fff, rgba(0, 230, 118, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.otp-page::before,
.otp-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.otp-page::before {
    top: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(0, 230, 118, 0.1);
}

.otp-page::after {
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 200, 83, 0.1);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.otp-left {
    padding: 2rem;
}

.otp-left h2 {
    font-size: 3rem;
    line-height: 1.2;
}

.otp-left h2 span {
    color: var(--primary-green);
}

.otp-illustration {
    position: relative;
    height: 20rem;
    margin-top: 2rem;
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card.green {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: #fff;
    top: 0;
    left: 0;
    width: 16rem;
}

.floating-card.white {
    top: 5rem;
    right: 0;
    width: 14rem;
    animation-delay: 1s;
}

.floating-card.small {
    bottom: 0;
    left: 2.5rem;
    width: 12rem;
    padding: 1.25rem;
}

.otp-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.otp-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), transparent);
    border-bottom-left-radius: 100px;
}

.otp-inputs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.otp-input {
    width: 66px;
    aspect-ratio: 1;
    text-align: center;
    font-size: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    transition: var(--transition);
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2);
}

.resend-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.btn-resend {
    color: var(--primary-green);
    background: none;
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-resend:disabled {
    color: var(--text-light);
    cursor: not-allowed;
}

.btn-verify {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-verify:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.otp-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 230, 118, 0.05);
    border-radius: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.otp-note i {
    color: var(--primary-green);
    flex-shrink: 0;
}

.otp-note p {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
}

.otp-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 2rem;
}

.otp-stat {
    text-align: center;
}

.otp-stat .value {
    font-size: 1.5rem;
    font-weight: 600;
}

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

/* ===================================
   Fill Details Page
   =================================== */
.details-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-light), #fff, rgba(0, 230, 118, 0.05));
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.details-page::before,
.details-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.details-page::before {
    top: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 230, 118, 0.1);
}

.details-page::after {
    bottom: 5rem;
    left: 5rem;
    width: 20rem;
    height: 20rem;
    background: rgba(0, 200, 83, 0.1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.progress-step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.progress-step.completed .progress-step-circle,
.progress-step.active .progress-step-circle {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.progress-step-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.progress-line {
    flex: 1;
    height: 4px;
    background: var(--border-color);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-line.completed {
    background: var(--primary-green);
}

.form-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.form-card-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    padding: 1.5rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.form-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.form-card-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: #ef4444;
}

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

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    transition: var(--transition);
}

.input-icon-wrapper input:focus + i,
.input-icon-wrapper:focus-within i {
    color: var(--primary-green);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
}

.form-select {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
}

.cibil-options,
.employment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.cibil-option,
.employment-option {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.cibil-option:hover,
.employment-option:hover {
    border-color: var(--text-light);
}

.cibil-option.selected,
.employment-option.selected {
    border-color: var(--primary-green);
    background: rgba(0, 230, 118, 0.05);
}

.cibil-option .label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.cibil-option .range {
    font-size: 0.875rem;
    font-weight: 500;
}

.employment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    padding: 1.5rem;
}

.employment-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.employment-option.selected .employment-icon {
    background: var(--primary-green);
    color: #fff;
}

.employment-option .title {
    font-size: 1.125rem;
    font-weight: 500;
}

.employment-option .subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
}

.btn-submit-details {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-details:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.info-card .label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.info-card .value {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===================================
   Loan Offers Page
   =================================== */
.offers-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-light), #fff, rgba(0, 230, 118, 0.05));
}

.offers-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.offers-progress {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.congratulations-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 1.5rem;
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.congratulations-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon-inner {
    width: 3rem;
    height: 3rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.btn-buy-nova {
    background: #fff;
    color: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-buy-nova:hover {
    background: var(--bg-light);
    color: var(--primary-green);
    box-shadow: var(--shadow-xl);
}

.approved-amount-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.credit-card-visual {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 1rem;
    padding: 1.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.586/1;
 
}

.credit-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: #fff;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}

.card-dots {
    display: flex;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.dots-group {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.card-mastercard {
    display: flex;
}

.card-mastercard span {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    opacity: 0.9;
}

.card-mastercard span:first-child {
    background: linear-gradient(135deg, #fb923c, #ea580c);
}

.card-mastercard span:last-child {
    background: linear-gradient(135deg, #f87171, #dc2626);
    margin-left: -0.75rem;
}

.emi-plan-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
      
}

.emi-option {
    padding: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.emi-option:hover {
    border-color: var(--text-light);
}

.emi-option.selected {
    border-color: var(--primary-green);
    background: rgba(0, 230, 118, 0.05);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.emi-option .label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.emi-option .value {
    font-size: 1.5rem;
    font-weight: 600;
}

.emi-option .months {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.emi-option .rate-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
}

.emi-option.selected .label {
    color: var(--primary-green);
}

.emi-option.selected .value {
    color: var(--primary-green);
}

.emi-option.selected .rate-badge {
    background: var(--primary-green);
    color: #fff;
}

.emi-option .rate-badge {
    background: var(--bg-light);
    color: var(--text-gray);
}

.lender-offer {
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.lender-offer:hover {
    border-color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.lender-offer.selected {
    border-color: var(--primary-green);
    background: rgba(0, 230, 118, 0.05);
    box-shadow: var(--shadow-lg);
}

.lender-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    color: #fff;
}

.lender-badge.recommended {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
}

.lender-badge.fast {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.lender-badge.flexible {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.lender-badge.trusted {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.lender-badge.bank {
    background: linear-gradient(135deg, #fb923c, #ea580c);
}

.lender-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0.75rem;
}

.sidebar-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card.dark {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #fff;
    border: none;
}

.sidebar-card.orange {
    background: linear-gradient(135deg, #fff7ed, #fff);
    border-color: #fed7aa;
}

.sidebar-card.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border: none;
}

.loan-detail-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
}

.loan-detail-item .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loan-detail-item .value {
    /* font-size: 1.5rem; */
    font-weight: 600;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.benefit-icon.blue { background: #3b82f6; }
.benefit-icon.green { background: var(--primary-green); }
.benefit-icon.purple { background: #8b5cf6; }
.benefit-icon.yellow { background: #eab308; }
.benefit-icon.pink { background: #ec4899; }
.benefit-icon.cyan { background: #06b6d4; }

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

/* ===================================
   Thank You Page
   =================================== */
.thankyou-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), #fff, rgba(233, 213, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.thankyou-page::before,
.thankyou-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.thankyou-page::before {
    top: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 230, 118, 0.2);
}

.thankyou-page::after {
    bottom: 5rem;
    right: 2.5rem;
    width: 32rem;
    height: 32rem;
    background: rgba(192, 132, 252, 0.3);
}

.thankyou-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    max-width: 56rem;
    width: 100%;
    position: relative;
}

.thankyou-gradient-bar {
    height: 0.75rem;
    background: linear-gradient(90deg, var(--primary-green), #facc15, #ec4899, #8b5cf6);
}

.thankyou-content {
    padding: 2rem 2.5rem;
}

.success-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.success-badge::before,
.success-badge::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.3);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.success-badge::before {
    inset: -1rem;
}

.success-badge::after {
    inset: -2rem;
    animation-delay: 0.5s;
}

.success-badge-inner {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.sparkle-badge {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: bounce 2s ease-in-out infinite;
}

.sparkle-badge.yellow {
    top: -1rem;
    right: -1rem;
    background: linear-gradient(135deg, #facc15, #ea580c);
}

.sparkle-badge.pink {
    bottom: -0.5rem;
    left: -0.5rem;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    width: 2.5rem;
    height: 2.5rem;
    animation-delay: 0.3s;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.thankyou-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.thankyou-title span {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-box {
    background: linear-gradient(135deg, rgba(233, 213, 255, 0.3), rgba(254, 215, 170, 0.3), rgba(254, 249, 195, 0.3));
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #e9d5ff;
    margin-bottom: 2rem;
}

.approved-summary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 1.5rem;
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.approved-summary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.approved-summary .amount {
    font-size: 4rem;
    font-weight: 600;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.summary-stat {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.summary-stat .label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.summary-stat .value {
    font-size: 1.5rem;
    font-weight: 600;
}

.summary-stat .note {
    font-size: 0.75rem;
    opacity: 0.7;
}

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

.benefit-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: scale(1.05);
}

.benefit-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0.75rem;
}

.benefit-card-icon.blue { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.benefit-card-icon.yellow { background: linear-gradient(135deg, #fbbf24, #f97316); }
.benefit-card-icon.purple { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
.benefit-card-icon.pink { background: linear-gradient(135deg, #f472b6, #ec4899); }

.office-hours {
    background: linear-gradient(135deg, var(--bg-light), rgba(219, 234, 254, 0.3));
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.office-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.office-hour-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.office-hour-card:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.office-hour-card.green { border-color: rgba(0, 230, 118, 0.2); }
.office-hour-card.blue { border-color: #bfdbfe; }
.office-hour-card.red { border-color: #fecaca; }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    border-radius: 1rem;
    padding: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.contact-card.call {
    background: linear-gradient(135deg, #06b6d4, #0284c7);
}

.contact-card.email {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.contact-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-home {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1.25rem;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-back-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-back-home:hover::before {
    left: 100%;
}

.btn-back-home:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
}

.thankyou-footer {
    background: linear-gradient(135deg, var(--bg-light), rgba(219, 234, 254, 0.3), rgba(233, 213, 255, 0.3));
    padding: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.footer-badge:hover {
    transform: scale(1.1);
}

.footer-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-badge-icon.green { color: var(--primary-green); }
.footer-badge-icon.blue { color: #3b82f6; }
.footer-badge-icon.purple { color: #8b5cf6; }
.footer-badge-icon.yellow { color: #eab308; }

/* Confetti Animation */
.confetti {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .floating-header {
        top: 1rem;
        width: 90%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-top: 7rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-item {
        flex-direction: column !important;
    }
    
    .process-center-icon {
        margin: 1rem 0;
    }
    
    .process-empty {
        display: none;
    }
    
    .process-card {
        max-width: 100%;
    }
    
    .otp-left {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .floating-header {
        width: 95%;
        padding: 0.75rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .cibil-options,
    .employment-options {
        grid-template-columns: 1fr;
    }
    
    .emi-plan-card .row {
        gap: 1rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .office-hours-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .thankyou-title {
        font-size: 2rem;
    }
    
    .approved-summary .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .application-card {
        padding: 1.5rem;
    }
    
    .calculator-card {
        padding: 1.5rem;
    }
    
    .emi-result-card {
        padding: 1.5rem;
    }
    
    .emi-result-card .value {
        font-size: 2rem;
    }
}

