/* Medicawy Company Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    text-align: right;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Color Variables matching medicawy.com */
:root {
    --primary-blue: #090979;
    --light-blue: #00d4ff;
    --gradient-start: #090979;
    --gradient-end: #00d4ff;
    --text-dark: #1F2937;
    --text-secondary: #6B7280;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
}

/* Header Styles */
.header {
    background: linear-gradient(270deg, var(--gradient-start) 0%, var(--gradient-start) 35%, var(--gradient-end) 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(9, 9, 121, 0.3);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--light-blue);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: white;
}

.hero img {
    max-width: 250px;
    margin-bottom: 2rem;
}

.hero h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero .lead {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.card h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-box i {
    color: var(--success-green);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-box h5 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-box i {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.info-box h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-box .text-muted {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Platform Showcase */
.platform-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.platform-showcase h2 {
    color: white;
    margin-bottom: 1rem;
}

.platform-showcase h3 {
    color: white;
    margin-bottom: 1rem;
}

.platform-showcase p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #0606a0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 9, 121, 0.3);
}

.btn-light {
    background: white;
    color: var(--primary-blue);
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-green);
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
}

.btn-success:hover {
    background: #059669;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h5 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h2 {
        font-size: 1.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.fw-bold {
    font-weight: 700;
}

.text-primary {
    color: var(--primary-blue);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: #9ca3af;
}
