/* ============================================
   مجمع أفياء الطبي - ملف التصميم الرئيسي
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ألوان هوية المجمع */
    --primary-color: #c73740;
    --secondary-color: #fffcf7;
    --primary-light: #e8a4a9;
    --primary-dark: #a02d35;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-gray: #666666;
    
    /* الخطوط */
    --font-primary: 'Cairo', 'Tajawal', sans-serif;
    
    /* المسافات */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    direction: rtl;
    text-align: right;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    font-family: var(--font-primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ============================================
   Header & Navigation
   ============================================ */

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(199, 55, 64, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.nav-menu li a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
    background-color: rgba(199, 55, 64, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: var(--secondary-color);
    padding: var(--spacing-md) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(199, 55, 64, 0.12) 0%, rgba(199, 55, 64, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(199, 55, 64, 0.1) 0%, rgba(199, 55, 64, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 1.85rem;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    animation: fadeInUp 0.8s ease;
    line-height: 1.3;
}

.hero p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(199, 55, 64, 0.5);
}

/* ============================================
   Sections
   ============================================ */

section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding: 0 var(--spacing-md);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin: 0;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color));
    transform: translateY(-50%);
}

.section-title h2::before {
    right: 100%;
}

.section-title h2::after {
    left: 100%;
    background: linear-gradient(to left, transparent, var(--primary-color));
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .section-title h2::before,
    .section-title h2::after {
        width: 30px;
    }
    
    .about-section h2 {
        font-size: 1.75rem;
    }
    
    .card h3,
    .feature-item h3,
    .service-card h3,
    .doctor-card h3,
    .contact-item h3 {
        font-size: 1.5rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Cards
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.card {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(199, 55, 64, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(199, 55, 64, 0.1);
}

.card-icon-white {
    background: #c73740;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(67%) saturate(2000%) hue-rotate(340deg) brightness(0.8) contrast(0.9);
}

.card-icon-white img {
    filter: brightness(0) invert(1);
}

.card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ============================================
   Why Section
   ============================================ */

.why-section {
    background-color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(199, 55, 64, 0.1);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(67%) saturate(2000%) hue-rotate(340deg) brightness(0.8) contrast(0.9);
}

.feature-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* ============================================
   Insurance Companies Section
   ============================================ */

.insurance-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    padding: var(--spacing-xl) 0;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    align-items: center;
    justify-items: center;
}

.insurance-item {
    background: var(--white);
    border-radius: 12px;
    padding: var(--spacing-sm);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(199, 55, 64, 0.1);
    height: 100px;
    width: 100%;
    max-width: 160px;
    position: relative;
    overflow: hidden;
}

.insurance-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 55, 64, 0.05), transparent);
    transition: left 0.5s ease;
}

.insurance-item:hover::before {
    left: 100%;
}

.insurance-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 25px rgba(199, 55, 64, 0.2);
    border-color: rgba(199, 55, 64, 0.3);
}

.insurance-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: grayscale(15%);
    transition: all 0.4s ease;
}

.insurance-item:hover img {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.05);
}

.payment-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid rgba(199, 55, 64, 0.1);
    text-align: center;
}

.payment-title-wrapper {
    margin-bottom: var(--spacing-lg);
}

.payment-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin: 0;
    position: relative;
    display: inline-block;
    padding: 0 var(--spacing-md);
}

.payment-title::before,
.payment-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color));
    transform: translateY(-50%);
}

.payment-title::before {
    right: 100%;
}

.payment-title::after {
    left: 100%;
    background: linear-gradient(to left, transparent, var(--primary-color));
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.payment-item {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(199, 55, 64, 0.15);
    height: 120px;
    width: 200px;
    position: relative;
    overflow: hidden;
}

.payment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 55, 64, 0.08), transparent);
    transition: left 0.6s ease;
}

.payment-item:hover::before {
    left: 100%;
}

.payment-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 30px rgba(199, 55, 64, 0.25);
    border-color: rgba(199, 55, 64, 0.4);
}

.payment-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.4s ease;
}

.payment-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .payment-title {
        font-size: 1.75rem;
    }
    
    .payment-title::before,
    .payment-title::after {
        width: 30px;
    }
    
    .payment-methods {
        gap: var(--spacing-md);
    }
    
    .payment-item {
        width: 160px;
        height: 100px;
    }
}

.payment-item:hover img {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.05);
}

/* ============================================
   About Page
   ============================================ */

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.about-section h2::before {
    content: '🏥';
    font-size: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    background: rgba(199, 55, 64, 0.1);
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
}

/* ============================================
   Services Page
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 55, 64, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   Doctors Page
   ============================================ */

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.doctor-card {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 55, 64, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doctor-card > div:last-of-type {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(199, 55, 64, 0.2);
    border-color: rgba(199, 55, 64, 0.3);
}

.doctor-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(199, 55, 64, 0.2);
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.doctor-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.doctor-specialty {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.appointment-btn {
    display: block;
    width: 100%;
    background: #c73740;
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(199, 55, 64, 0.2);
}

.appointment-btn:hover {
    background: #a02d35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 55, 64, 0.4);
}

/* ============================================
   Contact Page
   ============================================ */

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.map-container {
    margin-top: var(--spacing-lg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-link:hover img {
    filter: brightness(1.1);
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-md) 0;
    text-align: right;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-light));
    opacity: 0.9;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: var(--spacing-xs) 0;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-xs);
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.2rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

.footer-section a {
    display: inline-block;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-section a:hover {
    color: var(--primary-light);
    transform: translateX(-4px);
}

.footer-section .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);
}

.footer-section .social-links .social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.footer-section .social-links .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(199, 55, 64, 0.4);
}

.footer-section .social-links .social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
}

.footer-bottom a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Coming Soon Page
   ============================================ */

.soon-body {
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(199, 55, 64, 0.12), transparent 60%),
                linear-gradient(180deg, var(--secondary-color), #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.soon-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.soon-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.soon-card::before,
.soon-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 55, 64, 0.12), transparent 60%);
    z-index: 0;
}

.soon-card::before {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -80px;
}

.soon-card::after {
    width: 220px;
    height: 220px;
    bottom: -100px;
    right: -60px;
}

.soon-card-content {
    position: relative;
    z-index: 1;
}

.soon-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.soon-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.soon-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.soon-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.soon-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.soon-badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(199, 55, 64, 0.08);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.soon-contact {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
}

.soon-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.soon-footer-note {
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .soon-wrapper {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .soon-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .soon-title {
        font-size: 1.6rem;
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero .hero-content {
        padding: var(--spacing-md);
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: var(--spacing-sm);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .cards-grid,
    .services-grid,
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 2rem;
    }
    
    .hero {
        padding: var(--spacing-sm) var(--spacing-sm);
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero .hero-content {
        padding: var(--spacing-xs);
    }
    
    section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
}
