/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --primary-dark: #357ABD;
    --secondary-color: #50C878;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.5;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
}

.featured-video {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    background: #000;
    aspect-ratio: 16 / 9;
}

.featured-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-cta {
    text-align: center;
    margin-top: 2rem;
}

.video-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.2));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.download-content {
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.store-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.store-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.store-button.disabled:hover {
    transform: none;
}

.store-button div {
    text-align: right;
}

.store-button span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
}

.store-button strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
    -webkit-text-fill-color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Policy Pages */
.policy-section {
    padding: 60px 0;
    background: var(--bg-white);
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.policy-date {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.policy-intro {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(74, 144, 226, 0.1));
    padding: 24px;
    border-radius: var(--radius-md);
    border-right: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.policy-intro p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-block {
    margin-bottom: 3rem;
}

.policy-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.policy-block h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-block ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-block li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-block strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-block a:hover {
    text-decoration: underline;
}

.policy-summary {
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.policy-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.summary-item {
    text-align: center;
}

.summary-item svg {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.summary-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.summary-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.important-notice {
    background: #FFF9E6;
    border: 2px solid #FFD700;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 3rem;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.important-notice svg {
    color: #FFB700;
    flex-shrink: 0;
}

.important-notice h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.important-notice p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .video-container {
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .featured-video {
        max-width: 100%;
        border-radius: var(--radius-md);
    }

    .video-cta p {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.hero-text,
.hero-image {
    animation: fadeInUp 0.6s ease-out;
}

/* Guide & FAQ Pages Styles */

/* Guide Steps */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.guide-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.step-content ul {
    margin: 1rem 0 1rem 2rem;
}

.step-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Tip & Warning Boxes */
.tip-box {
    background: linear-gradient(135deg, #E8F4FD, #D6EBFA);
    border-right: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 1.5rem 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tip-box svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-box span {
    color: var(--text-dark);
    line-height: 1.7;
}

.tip-box.success {
    background: linear-gradient(135deg, #E8F8F0, #D1F2E0);
    border-right-color: var(--secondary-color);
}

.tip-box.success svg {
    color: var(--secondary-color);
}

.warning-box {
    background: linear-gradient(135deg, #FFF4E6, #FFE8CC);
    border-right: 4px solid #FF9800;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 1.5rem 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.warning-box svg {
    color: #FF9800;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-box span {
    color: var(--text-dark);
    line-height: 1.7;
}

/* Maintenance Types Grid */
.maintenance-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.maintenance-category {
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    padding: 24px;
    border-radius: var(--radius-md);
    border-right: 3px solid var(--primary-color);
}

.maintenance-category h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.maintenance-category ul {
    list-style: none;
    margin: 0;
}

.maintenance-category li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-right: 0;
}

.maintenance-category strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Numbered Lists */
.numbered-list {
    counter-reset: item;
    list-style: none;
    margin: 1.5rem 0;
    padding-right: 0;
}

.numbered-list li {
    counter-increment: item;
    position: relative;
    padding-right: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.numbered-list li ul {
    margin-top: 0.75rem;
    margin-right: 1.5rem;
}

.numbered-list li ul li {
    counter-increment: none;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
}

.numbered-list li ul li::before {
    content: '•';
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--primary-color);
    border-radius: 0;
    margin-left: 8px;
}

/* Report Types */
.report-type {
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border-right: 3px solid var(--primary-color);
}

.report-type h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.report-type p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.report-type ul {
    margin: 0;
    margin-right: 1.5rem;
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin: 1.5rem 0;
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.3);
}

.premium-badge svg {
    fill: #1A1A1A;
}

/* Notification Types */
.notification-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.notif-type {
    padding: 20px;
    border-radius: var(--radius-md);
    border: 2px solid;
}

.notif-type.critical {
    background: linear-gradient(135deg, #FFE8E8, #FFD6D6);
    border-color: #D32F2F;
}

.notif-type.high {
    background: linear-gradient(135deg, #FFEFE6, #FFE0CC);
    border-color: #F57C00;
}

.notif-type.medium {
    background: linear-gradient(135deg, #FFF9E6, #FFF3CC);
    border-color: #FBC02D;
}

.notif-type.low {
    background: linear-gradient(135deg, #E8F8F0, #D1F2E0);
    border-color: var(--secondary-color);
}

.notif-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.notif-type h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.notif-type p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Currency List */
.currency-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.currency-list li {
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-right: 3px solid var(--primary-color);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip-card {
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    padding: 24px;
    border-radius: var(--radius-md);
    border-right: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tip-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
}

.faq-question svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 2000px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin: 1rem 0 1rem 2rem;
}

.faq-answer li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer .highlight {
    background: linear-gradient(135deg, #FFF9E6, #FFE8CC);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-right: 3px solid #FF9800;
    display: block;
    margin: 1rem 0;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-answer .warning {
    color: #D32F2F;
    font-weight: 600;
}

/* Comparison Table */
.comparison-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.comparison-table th {
    padding: 16px 20px;
    text-align: right;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tbody tr:hover {
    background: linear-gradient(135deg, #f5f7fa, #ffffff);
}

/* Maintenance Types Compact */
.maintenance-types-compact div {
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border-right: 3px solid var(--primary-color);
}

.maintenance-types-compact strong {
    color: var(--text-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Cards */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #f5f7fa, #e8f0fe);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-card svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Responsive for Guide & FAQ */
@media (max-width: 768px) {
    .guide-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .maintenance-types-grid,
    .notification-types,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .numbered-list li {
        padding-right: 2rem;
    }

    .numbered-list li::before {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .currency-list {
        grid-template-columns: 1fr;
    }
}
