/* Custom CSS for My Digital Cash Website */

:root {
    --primary-color: #0EA5E9;
    --primary-dark: #0284C7;
    --primary-light: #06b6d4;
    --secondary-color: #0B1A3D;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #d4183d;
    --dark-bg: #0B1A3D;
    --dark-bg-2: #1e3a8a;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: #374151 !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar.scrolled .nav-phone-link {
    color: #374151 !important;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.nav-phone-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-phone-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.btn-apply {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 50%, var(--dark-bg) 100%);
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-background::before,
.hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
}

.hero-background::before {
    top: 80px;
    right: 40px;
    background: var(--primary-color);
}

.hero-background::after {
    bottom: 80px;
    left: 40px;
    background: #8b5cf6;
    animation-delay: 1s;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Card */
.hero-card {
    position: relative;
    padding: 2rem;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.card-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.card-header-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 1rem;
    padding: 1.5rem;
}

.card-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0.5rem 0;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
}

.emi-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emi-amount {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(to bottom, white, #f9fafb);
    padding: 5rem 0;
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.stat-icon.blue {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary-color);
}

.stat-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

.stat-icon.orange {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning-color);
}

.stat-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    display: inline;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    display: inline;
}

.stat-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #f9fafb, white);
    padding: 5rem 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 999px;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.card-top-bar {
    height: 8px;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-icon.blue {
    background: #dbeafe;
    color: var(--primary-color);
}

.service-icon.green {
    background: #d1fae5;
    color: var(--success-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.service-original-price {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.highlight-badge.blue {
    background: #dbeafe;
    color: #1e40af;
}

.highlight-badge.green {
    background: #d1fae5;
    color: #065f46;
}

.features-list-custom {
    list-style: none;
    padding: 0;
}

.features-list-custom li {
    padding: 0.5rem 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #374151;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.quick-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.quick-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), #8b5cf6);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-year {
    position: absolute;
    left: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
}

.mission-card {
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.mission-card.bg-purple {
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-icon.blue {
    background: #dbeafe;
    color: var(--primary-color);
}

.value-icon.green {
    background: #d1fae5;
    color: var(--success-color);
}

.value-icon.purple {
    background: #e9d5ff;
    color: #8b5cf6;
}

.value-icon.orange {
    background: #fed7aa;
    color: var(--warning-color);
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(to bottom, white, #f9fafb);
    padding: 5rem 0;
}

.calculator-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.calculator-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.amount-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-range {
    height: 8px;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-color);
    width: 20px;
    height: 20px;
}

.form-range::-moz-range-thumb {
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    border: none;
}

.emi-result-card {
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.emi-result-amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.breakdown-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.breakdown-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #f9fafb, white, #f9fafb);
    padding: 5rem 0;
}

.reason-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.reason-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.reason-icon.blue {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.reason-icon.orange {
    background: linear-gradient(135deg, #f97316, #fbbf24);
}

.reason-icon.purple {
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.reason-icon.green {
    background: linear-gradient(135deg, var(--success-color), #34d399);
}

.reason-icon.indigo {
    background: linear-gradient(135deg, #6366f1, var(--primary-color));
}

.reason-icon.teal {
    background: linear-gradient(135deg, #14b8a6, var(--primary-light));
}

.reason-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: #6b7280;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: white;
}

.partner-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.partner-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-logo.red {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.partner-logo.orange {
    background: linear-gradient(135deg, #f97316, #fbbf24);
}

.partner-logo.blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.partner-logo.purple {
    background: linear-gradient(135deg, #9333ea, #ec4899);
}

.partner-logo.pink {
    background: linear-gradient(135deg, #db2777, #ec4899);
}

.partner-logo.cyan {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.partner-logo.indigo {
    background: linear-gradient(135deg, #6366f1, #9333ea);
}

.partner-logo.green {
    background: linear-gradient(135deg, var(--success-color), #34d399);
}

.partner-name {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 50%, var(--dark-bg) 100%);
    overflow: hidden;
}

.testimonials-background::before,
.testimonials-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.testimonials-background::before {
    top: 80px;
    right: 80px;
    background: var(--primary-color);
}

.testimonials-background::after {
    bottom: 80px;
    left: 80px;
    background: #8b5cf6;
    animation-delay: 1s;
}

.section-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: white;
    font-size: 0.875rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-name {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--primary-color));
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 600;
}

/* Footer */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 50%, var(--dark-bg) 100%);
    color: white;
    overflow: hidden;
}

.footer-background::before,
.footer-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
}

.footer-background::before {
    top: 0;
    right: 0;
    background: var(--primary-color);
}

.footer-background::after {
    bottom: 0;
    left: 0;
    background: #8b5cf6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Step 5 Loading Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.step-progress-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.step-progress-item.show {
    opacity: 1;
    transform: translateX(0);
}

.step-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.step-progress-item.show .step-check-icon {
    transform: scale(1);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tenure Option Styles */
.tenure-option {
    border-color: #e5e7eb !important;
    background: white;
    transition: all 0.3s ease;
}

.tenure-option:hover {
    border-color: #0EA5E9 !important;
}

.tenure-option.active {
    border-color: #0EA5E9 !important;
    background: #eff6ff;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.2);
}

.tenure-radio {
    border-color: #d1d5db !important;
    background: white;
    transition: all 0.3s ease;
}

.tenure-option.active .tenure-radio {
    border-color: #0EA5E9 !important;
    background: #0EA5E9;
}

.tenure-option.active .tenure-radio i {
    display: block !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

