/* Enhanced Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fefefe 0%, #f8fafc 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Color variables */
:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary-color: #059669;
    --secondary-light: #10b981;
    --secondary-dark: #047857;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --text-dark: #1f2937;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Enhanced gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #1e40af 50%, #1d4ed8 75%, #2563eb 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Enhanced shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.02);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.04);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.04);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 10px 10px -5px rgb(0 0 0 / 0.02);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.15);
    --shadow-colored: 0 10px 25px -5px rgb(30 64 175 / 0.15), 0 4px 6px -2px rgb(30 64 175 / 0.05);
    --shadow-glow: 0 0 20px rgb(30 64 175 / 0.15);
    
    /* Animation variables */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

/* Enhanced Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-logo a:hover {
    transform: translateY(-1px);
}

.nav-logo i {
    font-size: 32px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
}

.nav-logo:hover i {
    transform: rotate(5deg) scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.nav-link:hover {
    color: white;
    background: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.nav-link:hover::before {
    left: 0;
    opacity: 1;
}

.language-selector select {
    padding: 10px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xs);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-selector select:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-colored);
    transform: translateY(-1px);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Clean Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .highlight {
    color: #fbbf24;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button {
    background: #fbbf24;
    color: #1e40af;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero image styles removed for cleaner design */

/* Enhanced Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    padding: 120px 0;
    position: relative;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-section h2 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.calculator-section > .container > p {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.calculator {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-2xl);
    padding: 50px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.input-group {
    margin-bottom: 40px;
    position: relative;
}

.input-group label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.input-group label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.slider-container {
    position: relative;
}

.slider-container input[type="range"] {
    width: 100%;
    height: 12px;
    border-radius: var(--radius-lg);
    background: linear-gradient(to right, var(--bg-lighter) 0%, var(--border-color) 100%);
    outline: none;
    appearance: none;
    position: relative;
    transition: var(--transition-normal);
}

.slider-container input[type="range"]:hover {
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-light) var(--thumb-position, 50%), var(--border-color) var(--thumb-position, 50%));
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(30, 64, 175, 0.1);
    transition: var(--transition-normal);
    border: 3px solid white;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--gradient-primary);
    transform: scale(1.15);
    box-shadow: var(--shadow-xl), 0 0 0 8px rgba(30, 64, 175, 0.15);
}

.slider-container input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
}

.slider-value {
    margin-top: 16px;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.slider-value::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.result-card {
    background: var(--gradient-secondary);
    color: white;
    padding: 40px;
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.result-card > * {
    position: relative;
    z-index: 1;
}

.result-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.result-item:last-of-type {
    margin-bottom: 40px;
}

.result-item span {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

.result-item strong {
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.apply-button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 18px 28px;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-dark) 100%);
    transition: var(--transition-normal);
    z-index: -1;
}

.apply-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.apply-button:hover::before {
    left: 0;
}

.apply-button:active {
    transform: translateY(0) scale(0.98);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
}

.how-it-works > .container > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 80px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: 1;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial p {
    font-size: 18px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: left;
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

.contact-item:hover::before {
    opacity: 0.03;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.contact-item > * {
    position: relative;
    z-index: 2;
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h3 i {
    color: var(--accent-color);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Sticky Help Button */
.help-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.help-button:hover {
    background: #d97706;
    transform: scale(1.1);
}

/* Help Modal */
.help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.help-modal.active {
    display: flex;
}

.help-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.help-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.help-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.help-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.help-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.help-option:hover {
    background: #1d4ed8;
}

.close-help {
    background: var(--border-color);
    color: var(--text-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.close-help:hover {
    background: #d1d5db;
}

/* Verification Modal - SIMPLE VERSION */
.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 9999;
}

.verification-modal.active {
    display: block;
}

.verification-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    overflow-y: auto;
}

.verification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px 16px 0 0;
}

.verification-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-verification {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-verification:hover {
    background: rgba(255, 255, 255, 0.1);
}

.verification-steps {
    padding: 32px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step-item.completed .step-number {
    background: var(--success-color);
    color: white;
}

.step-item span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

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

/* Verification Steps */
.verification-step {
    display: none;
}

.verification-step.active {
    display: block;
}

.verification-step h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Document Section */
.document-section {
    margin-bottom: 40px;
}

.document-section h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 24px;
}

.upload-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.upload-option h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(30, 64, 175, 0.05);
}

.upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(30, 64, 175, 0.1);
}

.upload-area i {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
}

.upload-area p {
    color: var(--text-light);
    margin: 0;
}

.preview {
    margin-top: 12px;
}

.preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.camera-option {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.camera-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.camera-btn:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* Face Verification */
.face-verification-section {
    text-align: center;
}

.verification-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.info-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.face-capture {
    margin-bottom: 24px;
}

.face-placeholder {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 60px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.face-placeholder:hover {
    border-color: var(--primary-color);
}

.face-placeholder i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
}

.face-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.capture-btn,
.upload-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.capture-btn:hover,
.upload-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 16px;
}

.next-btn,
.prev-btn,
.submit-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-btn,
.submit-btn {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.next-btn:hover,
.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.prev-btn {
    background: var(--border-color);
    color: var(--text-dark);
}

.prev-btn:hover {
    background: #d1d5db;
}

.submit-btn {
    background: var(--success-color);
}

.submit-btn:hover {
    background: #059669;
}

/* Success Step */
.success-content {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 24px;
}

.success-content h3 {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.success-content > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 32px;
}

.next-steps {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.next-steps h4 {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.next-steps ol {
    color: var(--text-dark);
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 8px;
}

.contact-info {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.contact-info p {
    margin: 0;
    margin-bottom: 8px;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 8px;
}

.close-btn {
    background: var(--text-light);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.close-btn:hover {
    background: #4b5563;
}

/* Camera Modal */
.camera-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.camera-modal.active {
    display: flex;
}

.camera-content {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    max-width: 600px;
    width: 90%;
}

.camera-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--text-dark);
    color: white;
}

.camera-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-camera {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-camera:hover {
    background: rgba(255, 255, 255, 0.1);
}

.camera-body {
    position: relative;
    padding: 0;
}

#camera-video {
    width: 100%;
    height: auto;
    display: block;
}

.camera-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.camera-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
}

.camera-controls {
    padding: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.capture-document-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.capture-document-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.cancel-btn {
    background: var(--text-light);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #4b5563;
}

/* Enhanced Scroll Effects & Modern UI Additions */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Floating Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-2xl);
    background: var(--gradient-accent);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

/* Enhanced Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Improved Selection Colors */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Enhanced Tooltip System */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    pointer-events: none;
}

[data-tooltip]:after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    pointer-events: none;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Card Hover Effects */
.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

/* Pulse Animation for Important Elements */
.pulse {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 5px var(--primary-color);
    }
    to {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

/* Enhanced Glassmorphism Components */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Enhanced Gradient Text Effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Button Micro-interactions */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
    transition: var(--transition-normal);
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:active::before {
    width: 300px;
    height: 300px;
}

/* Ripple Effect for Button Clicks */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Form Elements */
.form-enhanced {
    position: relative;
}

.form-enhanced input,
.form-enhanced select,
.form-enhanced textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    transition: var(--transition-normal);
    width: 100%;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.form-enhanced input:focus,
.form-enhanced select:focus,
.form-enhanced textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    background: rgba(255, 255, 255, 1);
}

/* Animated Icons */
.icon-animated {
    transition: var(--transition-normal);
}

.icon-animated:hover {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* Page Transition Effects */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    animation: pageEnter 0.8s ease-out forwards;
}

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

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        margin: 8px 0;
    }

    .language-selector {
        margin-top: 20px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    .calculator {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    


    .steps {
        grid-template-columns: 1fr;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .help-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }

    h2 {
        font-size: 32px !important;
    }

    .container {
        padding: 0 15px;
    }

    /* Verification Modal Mobile */
    .verification-content {
        width: 95%;
        max-height: 95vh;
        margin: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .verification-header {
        padding: 16px 20px;
    }

    .verification-header h2 {
        font-size: 20px;
    }

    .verification-steps {
        padding: 20px 16px;
    }

    .step-indicator {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .step-indicator::before {
        display: none;
    }

    .step-item {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .step-number {
        margin-right: 12px;
        flex-shrink: 0;
    }

    .verification-step h3 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .upload-options {
        grid-template-columns: 1fr;
    }

    .camera-option {
        flex-direction: column;
        align-items: center;
    }

    .camera-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .verification-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .face-controls {
        flex-direction: column;
        align-items: center;
    }

    .face-controls button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .step-navigation {
        flex-direction: column;
        gap: 12px;
    }

    .step-navigation .prev-btn,
    .step-navigation .next-btn,
    .step-navigation .submit-btn {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .next-steps {
        padding: 20px;
    }

    .contact-info {
        padding: 16px;
        text-align: center;
    }

    /* Camera Modal Mobile */
    .camera-content {
        width: 95%;
    }

    .camera-frame {
        width: 250px;
        height: 160px;
    }

    .camera-controls {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .camera-controls button {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Animation Classes */
.animate-in {
    animation-play-state: running !important;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Focused States */
.focused {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Dark Mode Support (Optional - can be toggled) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-white: #1f2937;
        --bg-light: #111827;
        --bg-lighter: #0f172a;
        --text-dark: #f9fafb;
        --text-medium: #e5e7eb;
        --text-light: #d1d5db;
        --border-color: #374151;
        --border-light: #4b5563;
    }
    
    body {
        background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    }
    
    .navbar {
        background: rgba(31, 41, 55, 0.95);
        border-bottom: 1px solid rgba(75, 85, 99, 0.2);
    }
    
    .calculator {
        background: rgba(31, 41, 55, 0.9);
        border: 1px solid rgba(75, 85, 99, 0.3);
    }
    
    .scroll-to-top {
        background: var(--gradient-primary);
        color: white;
    }
} 

/* Success Story Section */
.success-story {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.success-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.success-badge-large {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
    animation: pulse 3s ease-in-out infinite alternate;
}

.success-badge-large i {
    font-size: 18px;
}

.success-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.success-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 12px;
    border-radius: var(--radius-lg);
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item div strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.highlight-item div span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.success-stats-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-2xl);
    padding: 40px;
    color: white;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.success-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.success-stats-card > * {
    position: relative;
    z-index: 1;
}

.main-stat {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.big-number {
    font-size: 56px;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.big-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.95;
}

.secondary-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
    display: block;
}

.secondary-stat .stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Enhanced Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    
    .testimonials h2 {
        font-size: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 24px;
    }
    
    .testimonial p {
        font-size: 16px;
    }
    
    .success-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .success-text h2 {
        font-size: 36px;
    }
    
    .success-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .success-stats-card {
        padding: 30px 20px;
    }
    
    .secondary-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-stat {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .big-number {
        font-size: 42px;
    }
    
    .secondary-stat .stat-number {
        font-size: 28px;
    }
} 