/* ========================================
   Dream India Finance - Custom Styles
   ======================================== */

/* CSS Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #C9A961;
    --gold-dark: #8B7355;
    --amber-500: #F59E0B;
    --amber-600: #D97706;
    --navy-900: #1E3A5F;
    --red-600: #DC2626;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: var(--gray-700);
    overflow-x: hidden;
}

/* Gradient Text Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--gold-primary) !important;
}

/* Gradient Background Classes */
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary)) !important;
}

.brown-gradient {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-dark)) !important;
}

.amber-gradient {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600)) !important;
}

.navy-gradient {
    background: linear-gradient(135deg, var(--navy-900), #2563EB) !important;
}

.red-gradient {
    background: linear-gradient(135deg, var(--red-600), #EF4444) !important;
}

.orange-gradient {
    background: linear-gradient(135deg, var(--red-600), var(--amber-500)) !important;
}

/* ========================================
   Floating Navigation
   ======================================== */
.floating-nav {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 3px 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    height: 78px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFBEB, #fff, #FEF9C3);
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000, transparent);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.orb-1 {
    top: 0;
    left: 25%;
    width: 500px;
    height: 500px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.4), rgba(201, 169, 97, 0.4));
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    top: 25%;
    right: 25%;
    width: 400px;
    height: 400px;
    background: linear-gradient(to right, rgba(201, 169, 97, 0.3), rgba(212, 175, 55, 0.3));
    animation: floatDelayed 10s ease-in-out infinite;
}

.orb-3 {
    bottom: 0;
    left: 50%;
    width: 600px;
    height: 600px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.3), rgba(254, 243, 199, 0.3));
    animation: floatSlow 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes floatDelayed {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 30px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: linear-gradient(to right, #FFFBEB, #FEF9C3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 560px;
    margin-bottom: 32px;
}

/* Stat Cards */
.stat-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.feature-item span {
    font-size: 14px;
}

/* Form Card */
.form-card-wrapper {
    position: relative;
}

.form-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    border-radius: 24px;
    filter: blur(30px);
    opacity: 0.2;
    animation: pulseSlow 3s ease-in-out infinite;
}

@keyframes pulseSlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.form-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.sparkle-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    animation: bounceSlow 2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Slider Groups */
.slider-group {
    margin-bottom: 24px;
}

.slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.slider-header label {
    font-size: 14px;
    color: var(--gray-700);
}

.slider-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.custom-range {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: 8px;
    appearance: none;
    cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.custom-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    cursor: pointer;
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-500);
}

/* EMI Display */
.emi-display {
    background: linear-gradient(to right, #FFFBEB, #FEF9C3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.emi-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.emi-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.emi-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
}

.emi-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Phone Input */
.phone-input-group {
    margin-bottom: 24px;
}

.phone-input-group label {
    display: block;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.phone-input {
    position: relative;
    display: flex;
    align-items: center;
}

.country-code {
    position: absolute;
    left: 16px;
    color: var(--gray-600);
    font-weight: 500;
}

.phone-input input {
    width: 100%;
    padding: 16px 16px 16px 56px;
    background: var(--gray-50);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

.phone-input input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.phone-input input::placeholder {
    color: var(--gray-500);
}

/* Submit Button */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover:not(:disabled) i {
    transform: translateX(4px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    margin-top: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400);
}

/* ========================================
   Section Common Styles
   ======================================== */
.section-grid-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.section-grid-bg.dark {
    background: linear-gradient(rgba(10, 35, 81, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 35, 81, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.section-header {
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #FFFBEB;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-700);
}

.section-badge i {
    color: var(--gold-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
}

/* ========================================
   Trust Bar Section
   ======================================== */
.trust-bar-section {
    position: relative;
    background: linear-gradient(to bottom, #fff, var(--gray-50));
    padding: 80px 0;
    overflow: hidden;
}

.trust-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.trust-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gray-300);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.badge-item span {
    font-size: 14px;
    color: var(--gray-700);
}

/* ========================================
   Calculator Section
   ======================================== */
.calculator-section {
    position: relative;
    background: linear-gradient(to bottom, #FFFBEB, #fff);
    padding: 100px 0;
    overflow: hidden;
}

.calc-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.calc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calc-header label {
    color: var(--gray-700);
}

.calc-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.interest-card {
    background: linear-gradient(to right, #FFFBEB, #FEF9C3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.interest-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.interest-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.interest-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Result Card */
.result-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.result-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.result-label {
    font-size: 14px;
    color: var(--gray-600);
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.result-sub-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 16px;
}

.sub-label {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.sub-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.total-payable {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.total-payable span:first-child {
    color: var(--gray-600);
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Breakdown Card */
.breakdown-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.breakdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.breakdown-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.breakdown-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-item {
    margin-bottom: 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-label span:first-child {
    color: var(--gray-600);
}

.progress-label span:last-child {
    font-weight: 500;
    color: var(--gray-900);
}

.custom-progress {
    height: 12px;
    background: var(--gray-100);
    border-radius: 8px;
    overflow: hidden;
}

.custom-progress .progress-bar {
    height: 100%;
    border-radius: 8px;
    transition: width 0.5s ease;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    position: relative;
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.features-section .orb-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(to left, rgba(254, 243, 199, 0.3), transparent);
    border-radius: 50%;
    filter: blur(120px);
}

.features-section .orb-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(to right, rgba(254, 249, 195, 0.3), transparent);
    border-radius: 50%;
    filter: blur(120px);
}

.feature-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gray-300);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    display: inline-block;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary), var(--amber-600));
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.cta-banner p {
    color: #fff;
    font-weight: 500;
    margin: 0;
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    position: relative;
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.process-section .orb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: linear-gradient(to right, rgba(254, 243, 199, 0.3), rgba(254, 249, 195, 0.3), rgba(254, 243, 199, 0.3));
    border-radius: 50%;
    filter: blur(120px);
}

.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold-primary), var(--amber-500), var(--gold-secondary));
    opacity: 0.2;
}

.timeline-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.timeline-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gray-300);
}

.step-number {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 64px;
    height: 64px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.timeline-card:hover .timeline-icon {
    transform: scale(1.1);
}

.timeline-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.timeline-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.progress-dots {
    display: flex;
    gap: 8px;
}

.progress-dots .dot {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: 4px;
}

.progress-dots .dot.active {
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary), var(--amber-600));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
    color: #fff;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    position: relative;
    background: linear-gradient(to bottom, #fff, var(--gray-50));
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-section .orb-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.3), transparent);
    border-radius: 50%;
    filter: blur(120px);
}

.testimonials-section .orb-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(315deg, rgba(254, 249, 195, 0.3), transparent);
    border-radius: 50%;
    filter: blur(120px);
}

.testimonial-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gray-300);
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #FFFBEB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-author h5 {
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 4px 0;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray-600);
}

/* Stats Bar */
.stats-bar {
    position: relative;
    margin-top: 64px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
    padding: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: var(--gray-600);
}

/* ========================================
   Footer Section
   ======================================== */
.footer-section {
    position: relative;
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
    padding-top: 64px;
}

.footer-logo {
    height: 40px;
}

.footer-desc {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #fff;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-600);
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    color: var(--gray-300);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--red-600);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.footer-badges a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-badges a:hover {
    color: var(--red-600);
}

.footer-badges span {
    color: var(--gray-600);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--navy-900), var(--red-600));
    border: none;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.1);
}

.scroll-top i {
    transition: transform 0.3s ease;
}

.scroll-top:hover i {
    transform: translateY(-2px);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 48px;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-value,
    .trust-value {
        font-size: 1.5rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .timeline-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .floating-nav {
        top: 16px;
    }
    
    .nav-container {
        padding: 12px 24px;
    }
    
    .nav-logo {
        height: 24px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}
