/* Iyadeti Coming Soon Page Styles */

:root {
    --primary-color: #1B9AAA;
    --secondary-color: #3DA679;
    --text-color: #1a1a2e;
    --text-light: #4a5568;
    --background: #f8fafc;
    --white: #ffffff;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, var(--background) 0%, #e2e8f0 100%);
    height: 100vh;
    direction: rtl;
    color: var(--text-color);
    position: relative;
}

/* Medical Background Pattern */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='60' viewBox='0 0 200 60'%3E%3Cpath d='M0 30 L40 30 L50 10 L60 50 L70 20 L80 40 L90 30 L200 30' fill='none' stroke='%231B9AAA' stroke-width='1.5' opacity='0.08'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M42 20h16v20h20v16h-20v20h-16v-20h-20v-16h20z' fill='%231B9AAA' opacity='0.03'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Ccircle cx='75' cy='75' r='30' fill='none' stroke='%233DA679' stroke-width='1' opacity='0.05'/%3E%3Ccircle cx='75' cy='75' r='45' fill='none' stroke='%233DA679' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E");
    background-position: 0 50%, 0 0, center center;
    background-size: 200px 60px, 100px 100px, 150px 150px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(27, 154, 170, 0.3);
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: var(--border-radius);
}

.nav-link {
    padding: 0.5rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--white);
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(27, 154, 170, 0.3);
}

/* Sections */
.section {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    overflow-y: auto;
}

.section.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.section-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Home Section */
.coming-soon {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(27, 154, 170, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 154, 170, 0.4);
}

/* About Cards */
.about-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Contact */
.contact-methods {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(27, 154, 170, 0.2);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    text-align: center;
    z-index: 100;
}

.footer p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.footer .founder {
    margin-top: 0.15rem;
    font-size: 0.75rem;
}

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

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
        gap: 0.4rem;
    }

    .nav-logo-img {
        width: 36px;
        height: 36px;
    }

    .nav-logo span {
        font-size: 1.25rem;
    }

    .nav-links {
        padding: 0.2rem;
    }

    .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .section {
        top: 80px;
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 2.5rem;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cards {
        flex-direction: column;
        align-items: center;
    }

    .about-card {
        max-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 0.3rem;
    }

    .nav-logo-img {
        width: 30px;
        height: 30px;
    }

    .nav-logo span {
        font-size: 1.1rem;
    }

    .nav-link {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
    }

    .section {
        top: 75px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
    }
}
