/* LmsVision Website Styles */

body {
    font-family: 'IRANSans', 'Tahoma', sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.pricing-card.recommended {
    border: 2px solid #1976d2;
}

/* Testimonial Cards */
.testimonial-card {
    background: #f5f5f5;
    border-radius: 16px;
}

/* Stats Section */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1976d2;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* RTL Adjustments */
[dir="rtl"] .mud-drawer-anchor-left {
    right: 0;
    left: auto;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Features Page Hero */
.features-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 120px 0 60px 0;
}

/* Pricing Page Hero */
.pricing-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 120px 0 60px 0;
}

/* Pricing Toggle */
.pricing-toggle {
    padding: 16px;
}

.pricing-toggle .text-primary {
    color: #1976d2 !important;
}

.pricing-toggle .text-secondary {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* Pricing Card Enhancements */
.pricing-card {
    position: relative;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.pricing-card.recommended {
    border: 2px solid #1976d2;
    background: linear-gradient(180deg, rgba(25, 118, 210, 0.02) 0%, transparent 100%);
}

.pricing-card .recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card .features-list {
    max-height: 300px;
    overflow-y: auto;
}

.pricing-card .features-list .mud-list-item {
    padding: 4px 0;
}

/* Comparison Table */
.comparison-table {
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: #f5f5f5;
}

.comparison-table td {
    vertical-align: middle;
}

/* Feature Section List Items */
.feature-section .mud-list-item {
    padding: 12px 0;
}

/* Order classes for responsive layout */
@media (min-width: 960px) {
    .order-md-1 {
        order: 1;
    }
    .order-md-2 {
        order: 2;
    }
}


/* Registration Page Styles */
.register-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 100px 0 40px 0;
}

.registration-paper {
    border-radius: 16px;
}

.step-content {
    min-height: 350px;
}

/* Plan Selection Cards */
.plan-selection-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
    border-radius: 12px;
}

.plan-selection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.plan-selection-card.selected {
    border-color: var(--mud-palette-primary);
    background: rgba(25, 118, 210, 0.04);
}

/* Stepper Customization */
.mud-stepper {
    direction: rtl;
}

.mud-stepper .mud-step-label-content {
    font-size: 0.875rem;
}

/* Form Validation Styles */
.mud-input-error .mud-input-outlined-border {
    border-color: var(--mud-palette-error) !important;
}

/* Responsive adjustments for registration */
@media (max-width: 600px) {
    .registration-paper {
        padding: 16px !important;
    }
    
    .step-content {
        min-height: auto;
    }
    
    .register-hero-section {
        padding: 80px 0 20px 0;
    }
}


/* Login Page Styles */
.login-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 100px 0 40px 0;
}

.login-paper {
    border-radius: 16px;
}

/* Forgot Password Page Styles */
.forgot-password-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 100px 0 40px 0;
}

.forgot-password-paper {
    border-radius: 16px;
}

/* Reset Password Page Styles */
.reset-password-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 100px 0 40px 0;
}

.reset-password-paper {
    border-radius: 16px;
}

/* Password Strength Indicator */
.password-strength {
    height: 4px;
    border-radius: 2px;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    background: #f44336;
    width: 33%;
}

.password-strength.medium {
    background: #ff9800;
    width: 66%;
}

.password-strength.strong {
    background: #4caf50;
    width: 100%;
}

/* OTP Input Styling */
.otp-input {
    letter-spacing: 8px;
    font-size: 1.5rem;
    text-align: center;
}

/* Responsive adjustments for auth pages */
@media (max-width: 600px) {
    .login-paper,
    .forgot-password-paper,
    .reset-password-paper {
        padding: 16px !important;
    }
    
    .login-hero-section,
    .forgot-password-hero-section,
    .reset-password-hero-section {
        padding: 80px 0 20px 0;
    }
}


/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 120px 0 60px 0;
}

.contact-paper {
    border-radius: 16px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
}

.quick-link-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Demo Page Styles */
.demo-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 120px 0 60px 0;
}

.demo-paper {
    border-radius: 16px;
}

.benefit-card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

/* Blog Page Styles */
.blog-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 120px 0 60px 0;
}

.blog-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-card-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    padding: 120px 0 60px 0;
}

.team-card {
    border-radius: 12px;
    transition: transform 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.value-card {
    border-radius: 12px;
    text-align: center;
    padding: 24px;
}

.achievement-card {
    border-radius: 12px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact-hero-section,
    .demo-hero-section,
    .blog-hero-section,
    .about-hero-section {
        padding: 80px 0 40px 0;
    }
}


/* Blog Article Page Styles */
.blog-article-hero {
    padding: 120px 0 80px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1976d2;
}

.article-content p {
    margin-bottom: 1.2rem;
    color: #333;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.2rem;
    padding-right: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-right: 4px solid #1976d2;
    padding-right: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.search-field .mud-input-outlined-border {
    border-radius: 24px;
}
