/* SafeReport Complete CSS Stylesheet - Redesigned */
/* Contains all styles for: Main Page, Login Page, How It Works Page, FAQ Page, Redesigned Modal */

/* ====== BASE STYLES & VARIABLES ====== */
:root {
    /* Color Palette */
    --primary: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --secondary: #f5f5f5;
    --accent: #ff5252;
    --accent-light: #ff8a80;
    --text: #333;
    --text-light: #666;
    --safe: #4caf50;
    --safe-light: #8bc34a;
    --warning: #ff9800;
    --border: #e0e0e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    --gradient-accent: linear-gradient(135deg, #ff5252 0%, #ff8a80 100%);
    --gradient-safe: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    
    /* Shadows */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --modal-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

h1 { font-size: 48px; }
h2 { font-size: 42px; }
h3 { font-size: 36px; }
h4 { font-size: 28px; }
h5 { font-size: 22px; }
h6 { font-size: 18px; }

p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

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

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

/* ====== BUTTONS ====== */
.btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 15px;
    min-height: 44px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(26, 35, 126, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid transparent;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 82, 82, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-icon {
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    min-height: 36px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
    min-height: 52px;
}

.btn-full {
    width: 100%;
}

/* ====== HEADER & NAVIGATION ====== */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo i {
    font-size: 28px;
    color: var(--primary);
}

.logo h1 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

nav a:hover, nav a.active {
    color: var(--primary);
}

/* ====== HERO SECTIONS ====== */
/* Main Page Hero */
.hero {
    padding: var(--space-2xl) 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.hero h2 {
    font-size: 42px;
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

/* Page Hero (for other pages) */
.page-hero {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-2xl) 0 var(--space-xl);
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h2 {
    font-size: 48px;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    position: relative;
    color: white;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ====== SEARCH SECTIONS ====== */
/* Main Page Search */
.search-container {
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    position: relative;
}

.search-box {
    display: flex;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    background-color: white;
}

.search-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    font-size: 16px;
    outline: none;
    background: white;
}

.search-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0 30px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color var(--transition-normal);
    min-width: 60px;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-options {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.search-tag {
    background-color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-light);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.search-tag:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* FAQ Search */
.search-faq {
    max-width: 600px;
    margin: var(--space-2xl) auto 0;
    position: relative;
}

.search-faq input {
    width: 100%;
    padding: 18px 24px;
    border-radius: var(--radius-full);
    border: none;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding-left: 55px;
    background: white;
}

.search-faq i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
}

/* ====== FEATURES SECTIONS ====== */
/* Main Page Features */
.features {
    padding: var(--space-2xl) 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title h3 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

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

.feature-card {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 32px;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

/* Security Features */
.security-features {
    background-color: white;
    padding: var(--space-2xl) 0;
    margin-top: var(--space-xl);
}

/* ====== LOGIN PAGE STYLES ====== */
.login-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
    min-height: calc(100vh - 200px);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.login-info {
    padding-right: var(--space-xl);
}

.login-info h2 {
    font-size: 42px;
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
    line-height: 1.2;
}

.login-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.features-list {
    list-style: none;
    margin-top: var(--space-xl);
}

.features-list li {
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.features-list i {
    color: var(--safe);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.features-list h4 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
    color: var(--primary-dark);
}

/* Login Form */
.login-form-container {
    background-color: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2xl);
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    border: 1px solid var(--border);
}

.login-form-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.login-form-header h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.login-form-header p {
    color: var(--text-light);
    font-size: 15px;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 16px;
    transition: all var(--transition-normal);
    background: white;
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}

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

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 1;
}

.input-with-icon input {
    padding-left: 45px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-light);
}

.forgot-password {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.divider {
    text-align: center;
    position: relative;
    margin: var(--space-lg) 0;
    color: var(--text-light);
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border);
    z-index: 1;
}

.divider span {
    background-color: white;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.social-login {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.social-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.social-btn.google {
    color: #DB4437;
}

.social-btn.microsoft {
    color: #0078d4;
}

.signup-link {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
}

.signup-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* ====== HOW IT WORKS PAGE STYLES ====== */
.how-it-works {
    padding: var(--space-2xl) 0;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Vertical timeline line */
.steps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-light), var(--accent));
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.step:nth-child(odd) {
    flex-direction: row;
}

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

.step-content {
    flex: 1;
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid var(--border);
}

.step-number {
    position: absolute;
    top: -24px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    border: 6px solid #f9f9f9;
    box-shadow: var(--shadow-lg);
}

.step:nth-child(odd) .step-number {
    left: -30px;
}

.step:nth-child(even) .step-number {
    right: -30px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow);
}

.step h4 {
    font-size: 24px;
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.step p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.step-features {
    list-style: none;
    margin-top: var(--space-lg);
}

.step-features li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.step-features i {
    color: var(--safe);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.step-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-xl);
}

.step-visual {
    width: 100%;
    max-width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e3f2fd 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 80px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* ====== FAQ PAGE STYLES ====== */
/* FAQ Categories */
.faq-categories {
    padding: var(--space-lg) 0 var(--space-2xl);
    background-color: white;
}

.categories-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.category-btn {
    padding: 12px 24px;
    background-color: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text);
}

.category-btn:hover, .category-btn.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.category-btn i {
    font-size: 16px;
}

/* FAQ Main Content */
.faq-main {
    padding: var(--space-2xl) 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: var(--space-2xl);
    scroll-margin-top: var(--space-lg);
}

.faq-category-section h4 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.faq-category-section h4 i {
    color: var(--primary);
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition-normal);
    border-left: 4px solid transparent;
    border: 1px solid var(--border);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
}

.faq-item.active {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color var(--transition-normal);
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer.active {
    padding: 0 24px 24px;
    max-height: 1000px;
}

.faq-toggle {
    color: var(--primary);
    font-size: 20px;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin: var(--space-md) 0;
}

.faq-answer li {
    margin-bottom: var(--space-sm);
}

.highlight {
    background-color: rgba(255, 82, 82, 0.1);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--accent);
}

/* ====== CONTACT SECTIONS ====== */
.contact-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #e3f2fd 100%);
    padding: var(--space-2xl) 0;
    border-radius: var(--radius-xl);
    margin-top: var(--space-2xl);
    border: 1px solid var(--border);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.contact-info h4 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    font-size: 17px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
    color: var(--primary-dark);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 15px;
}

.contact-form {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.contact-form h5 {
    font-size: 22px;
    margin-bottom: var(--space-lg);
    color: var(--primary-dark);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* ====== QUICK LINKS ====== */
.quick-links {
    padding: var(--space-2xl) 0 var(--space-2xl);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.link-card {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: var(--text);
    display: block;
    border: 1px solid var(--border);
}

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

.link-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 28px;
    transition: transform var(--transition-normal);
}

.link-card:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
}

.link-card h5 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.link-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #e3f2fd 100%);
    padding: var(--space-2xl) 0;
    text-align: center;
    margin-top: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.cta-content h3 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

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

/* ====== REDESIGNED MODAL STYLES ====== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: modalBgFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalBgFadeIn {
    from { opacity: 0; backdrop-filter: blur(0px); }
    to { opacity: 1; backdrop-filter: blur(5px); }
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 900px;
    max-height: 95vh;
    border-radius: var(--radius-2xl);
    box-shadow: var(--modal-shadow);
    overflow: hidden;
    animation: modalSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
}

@keyframes modalSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-60px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Modal Header */
.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-lg) var(--space-2xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.modal-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.modal-header-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: white;
}

.modal-header-text p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.close-modal {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Enhanced Progress Indicator */
.progress-indicator {
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 106px;
    z-index: 9;
    backdrop-filter: blur(10px);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border);
    z-index: 1;
}

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

.step-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: var(--space-sm);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    box-shadow: var(--shadow);
}

.progress-step.active .step-indicator {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.progress-step.completed .step-indicator {
    background: var(--gradient-safe);
    border-color: var(--safe);
    color: white;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    max-width: 100px;
    transition: color var(--transition-normal);
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

.step-completion {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--safe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-normal);
}

.progress-step.completed .step-completion {
    opacity: 1;
    transform: scale(1);
}

/* Modal Body */
.modal-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
    scroll-behavior: smooth;
    background: linear-gradient(180deg, rgba(245, 247, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.modal-scroll-container {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Enhanced Security Notice */
.security-banner {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(57, 73, 171, 0.1) 100%);
    border: 1px solid rgba(26, 35, 126, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.security-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
}

.security-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.security-content h4 {
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
    font-size: 18px;
    font-weight: 700;
}

.security-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Form Styles */
.form-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: var(--space-lg);
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--secondary);
}

.form-section-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

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

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-label i {
    color: var(--primary);
    font-size: 14px;
}

.required::after {
    content: ' *';
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    transition: all var(--transition-normal);
    background: white;
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: var(--primary-light);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a237e' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
    font-family: inherit;
}

/* Enhanced File Upload */
.file-upload-container {
    border: 3px dashed var(--border);
    border-radius: var(--radius-xl);
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: linear-gradient(135deg, rgba(245, 247, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.file-upload-container:hover, .file-upload-container.dragover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-3px);
}

.file-upload-icon {
    font-size: 64px;
    color: var(--primary-light);
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.file-upload-text h5 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.file-upload-text p {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.file-upload-text small {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 13px;
}

.browse-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin-top: var(--space-md);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.file-list {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.file-item {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.file-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.file-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: var(--space-md);
    font-size: 18px;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-xs);
}

.file-size {
    font-size: 13px;
    color: var(--text-light);
}

.file-remove {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.file-remove:hover {
    background: rgba(255, 82, 82, 0.1);
    transform: rotate(90deg);
}

/* Enhanced Modal Footer */
.modal-footer {
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.footer-actions {
    display: flex;
    gap: var(--space-md);
}

/* Warning Banner */
.warning-banner {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.warning-banner i {
    color: var(--warning);
    font-size: 22px;
    margin-top: 2px;
}

.warning-banner strong {
    color: var(--warning);
    display: block;
    margin-bottom: var(--space-xs);
}

/* ====== FOOTER STYLES ====== */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-logo span {
    color: var(--accent);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
    color: white;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-column ul li a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* ====== BACK TO TOP BUTTON ====== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    border: 2px solid white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ====== NOTIFICATION STYLES ====== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification.notification-error {
    background: var(--gradient-accent);
    color: white;
}

.notification.notification-success {
    background: var(--gradient-safe);
    color: white;
}

.notification.notification-info {
    background: var(--gradient-primary);
    color: white;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ====== FORM VALIDATION STYLES ====== */
.form-control.error {
    border-color: var(--accent);
    background: rgba(255, 82, 82, 0.05);
}

.error-message {
    color: var(--accent);
    font-size: 13px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

.char-counter.warning {
    color: var(--warning);
}

.char-counter.error {
    color: var(--accent);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0 0 0 60px var(--safe); }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* Success Animation */
.success-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: var(--safe);
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0 0 0 var(--safe);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: var(--safe);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .login-info {
        padding-right: 0;
        text-align: center;
    }
    
    .features-list li {
        justify-content: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .modal-header,
    .modal-scroll-container,
    .modal-footer,
    .progress-indicator {
        padding: var(--space-lg);
    }
    
    .steps-container::before {
        left: 30px;
    }
    
    .step {
        flex-direction: row !important;
    }
    
    .step-number {
        left: 0px !important;
        right: auto !important;
    }
    
    .step-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    nav ul {
        gap: var(--space-md);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 26px; }
    h4 { font-size: 22px; }
    
    .page-hero h2 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .section-title h3 {
        font-size: 30px;
    }
    
    .cta-content h3 {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .footer-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: var(--space-lg);
        justify-content: center;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .progress-step {
        flex: none;
        width: calc(33.333% - 20px);
    }
    
    .form-section {
        padding: var(--space-lg);
    }
    
    .security-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .security-icon {
        align-self: center;
    }
    
    .faq-question {
        padding: var(--space-md) var(--space-lg);
        font-size: 17px;
    }
    
    .categories-container {
        gap: var(--space-sm);
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .page-hero {
        padding: var(--space-xl) 0 var(--space-lg);
    }
    
    .page-hero h2 {
        font-size: 30px;
    }
    
    .modal-content {
        border-radius: var(--radius-xl);
    }
    
    .modal-scroll-container {
        padding: var(--space-lg);
    }
    
    .form-section {
        padding: var(--space-lg);
    }
    
    .progress-step {
        width: calc(50% - 20px);
    }
    
    .modal-header-text h3 {
        font-size: 24px;
    }
    
    .faq-question {
        padding: var(--space-md);
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 var(--space-md);
    }
    
    .faq-answer.active {
        padding: 0 var(--space-md) var(--space-md);
    }
    
    .contact-form {
        padding: var(--space-lg);
    }
    
    .contact-info h4 {
        font-size: 28px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .search-faq input {
        padding: 15px 20px;
        padding-left: 50px;
    }
    
    .step-content {
        padding: var(--space-lg);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: -15px;
    }
    
    .step h4 {
        font-size: 22px;
    }
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Modal specific scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ====== UTILITY CLASSES ====== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-1 { flex: 1; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }
.gap-4 { gap: var(--space-lg); }
.gap-5 { gap: var(--space-xl); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

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

.bg-white { background: white; }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.bg-safe { background: var(--safe); }

.text-white { color: white; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-safe { color: var(--safe); }
.text-muted { color: var(--text-light); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-normal { font-weight: 400; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mw-100 { max-width: 100%; }
.mh-100 { max-height: 100%; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    pointer-events: none;
}

/* Hidden Elements */
.hidden {
    display: none !important;
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .modal,
    .back-to-top,
    .notification,
    .search-box,
    .cta-buttons {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}