/* ===== CYTOTEC SAUDI — MEDICAL GREEN THEME ===== */

:root {
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-light: #4ade80;
    --green-deep: #14532d;
    --green-glow: rgba(34, 197, 94, 0.35);
    --white: #ffffff;
    --off-white: #f8faf9;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --text: #1f2937;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 8px 24px var(--green-glow);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;
    --font: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
    --header-h: 72px;
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-100);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 36px;
    line-height: 1;
}

.logo-text { display: flex; flex-direction: column; gap: 2px; }

.site-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

.site-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    background: rgba(34, 197, 94, 0.08);
}

.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-dark);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-btn,
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-green);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.header-btn:hover,
.whatsapp-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--green-glow);
    color: var(--white);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-dark);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* ===== HERO ===== */

.hero-section {
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 45%, #f8fafc 100%);
    padding: 56px 0;
    border-bottom: 1px solid var(--gray-100);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--green-dark);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-title {
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.35;
    margin-bottom: 16px;
}

.hero-title .text-green {
    color: var(--green-dark);
    display: inline;
}

.hero-title .highlight {
    display: block;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 10px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    list-style: none;
    padding: 0;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.feature i {
    color: var(--green);
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-figure {
    margin: 0;
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    background: var(--white);
}

.hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero-product-card {
    position: absolute;
    bottom: -12px;
    left: -16px;
    max-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.hero-product-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    display: block;
}

/* City pages — compact hero */
.hero-section--city {
    padding: 40px 0;
}

.hero-section--city .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-section--city .hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-section--city .hero-features {
    justify-content: center;
}

.hero-section--city .hero-actions {
    justify-content: center;
}

.hero-section--city .hero-visual {
    display: none;
}

.text-green {
    color: var(--green-dark);
}

.cta-btn,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-green);
    border: none;
    cursor: pointer;
}

.cta-btn:hover,
.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.08);
    color: var(--green-dark);
}

/* ===== SECTIONS ===== */

.section { padding: 72px 0; }

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: var(--radius-full);
    margin: 12px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content {
    padding: 48px 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-100);
}

.seo-content p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.seo-content a {
    color: var(--green-dark);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.seo-content a:hover { border-bottom-color: var(--green); }

/* ===== CITIES ===== */

.cities-section {
    padding: 72px 0;
    background: var(--white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.city-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0 0 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.city-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 16px;
}

.city-card .city-name,
.city-card .city-service,
.city-card .city-features,
.city-card .city-btn {
    padding-left: 20px;
    padding-right: 20px;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-light);
}

.city-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
}

.city-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.city-service {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.city-features {
    margin-bottom: 20px;
    text-align: right;
}

.city-features li {
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--gray-700);
    position: relative;
    padding-right: 18px;
}

.city-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--green);
    font-weight: 700;
}

.city-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
}

.city-btn:hover {
    background: var(--green-dark);
    color: var(--white);
}

/* ===== ABOUT ===== */

.about-section {
    padding: 72px 0;
    background: var(--off-white);
}

.about-intro {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(180deg, #f0fdf9 0%, #ecfdf5 50%, #f8fafc 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.guide-text {
    font-size: 1.08rem;
    line-height: 2;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.guide-text strong { color: var(--green-deep); }

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
}

.rating-badge .stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--green-deep);
    font-weight: 700;
    border: 2px solid var(--green);
    border-radius: var(--radius-full);
}

.btn-outline-dark:hover {
    background: rgba(34, 197, 94, 0.08);
    color: var(--green-dark);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
}

.trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-700);
}

.trust-list i { color: var(--green); font-size: 1.1rem; }

.about-details { margin-top: 16px; }

.about-lead {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.95;
    color: var(--gray-700);
}

.subsection-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 48px 0 24px;
}

.doctor-message {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}

.doctor-photo {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.doctor-text h3 {
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 16px;
}

.doctor-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin: 0;
}

.reviews-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.review-author {
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0;
}

.about-medical {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.product-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-lead {
    font-size: 1.08rem;
    line-height: 1.95;
    color: var(--gray-700);
    margin: 0;
}

.warning-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-right: 4px solid #f59e0b;
    border-radius: var(--radius-md);
}

.warning-box i {
    color: #d97706;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.warning-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #92400e;
}

.medical-uses {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.medical-uses h4 {
    font-size: 1.05rem;
    color: var(--green-deep);
    margin-bottom: 16px;
    font-weight: 800;
}

.product-visual {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.product-figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.product-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-caption {
    margin-top: 14px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

.about-images {
    display: grid;
    gap: 16px;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.9;
    text-align: right;
}

.medical-info {
    max-width: 700px;
    margin: 32px auto 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.medical-info h3 {
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 16px;
    text-align: center;
}

.medical-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-700);
}

.medical-list li:last-child { border-bottom: none; }
.medical-list i { color: var(--green); margin-top: 3px; }

/* ===== CONTACT ===== */

.contact-section {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, #0f3d24 100%);
    color: var(--white);
}

.contact-section .section-title { color: var(--white); }
.contact-section .section-title::after { background: var(--green-light); }

.contact-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.contact-methods {
    max-width: 500px;
    margin: 0 auto 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(8px);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-info h3 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.method-info p { font-size: 1.2rem; font-weight: 800; color: var(--green-light); margin: 0; }
.availability { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.method-btn {
    margin-right: auto;
    padding: 10px 20px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.method-btn:hover { background: var(--green-light); color: var(--green-deep); }

.privacy-guarantee {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.privacy-guarantee h3 {
    color: var(--green-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.privacy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: right;
}

.privacy-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
}

/* ===== FAQ ===== */

.faq-section {
    padding: 72px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    border-right: 4px solid var(--green);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.faq-item p { color: var(--gray-700); font-size: 0.95rem; margin: 0; }

/* ===== CITY PAGES ===== */

.breadcrumb,
.breadcrumb-section {
    background: var(--off-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.breadcrumb-list,
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-500);
}

.breadcrumb a,
.breadcrumb-link { color: var(--green-dark); font-weight: 600; }
.breadcrumb a:hover { color: var(--green); }

.city-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-md);
}

.info-card .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
}

.info-card h3 { font-size: 1.1rem; color: var(--gray-900); margin-bottom: 10px; }
.info-card p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.area-item {
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

.area-item:hover {
    border-color: var(--green);
    color: var(--green-dark);
    background: rgba(34, 197, 94, 0.05);
}

/* ===== CITY PAGE (RIYADH RICH CONTENT) ===== */

.hero-section--city-page {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 48px 0 56px;
}

.hero-section--city-page .hero-layout {
    align-items: center;
}

.hero-section--city-page .hero-figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.city-content-section,
.city-steps-section,
.city-pricing-section,
.city-delivery-section,
.city-disclaimer-section,
.city-other-section {
    padding: 56px 0;
}

.city-content-section { background: var(--white); }
.city-steps-section { background: var(--off-white); }
.city-pricing-section { background: var(--white); }
.city-delivery-section { background: var(--off-white); }
.city-disclaimer-section { background: var(--white); padding-bottom: 32px; }
.city-other-section { background: var(--off-white); padding-top: 32px; }

.city-content-narrow {
    max-width: 860px;
}

.city-content-narrow p {
    margin-bottom: 16px;
    line-height: 1.9;
    color: var(--gray-700);
}

.city-content-narrow a {
    color: var(--green-dark);
    font-weight: 600;
}

.city-content-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.city-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.city-trust-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.city-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--green);
}

.city-trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.city-trust-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.7;
}

.city-steps-image {
    margin: 24px auto 28px;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.city-steps-intro {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
}

.city-steps-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.city-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
}

.city-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
}

.city-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.city-step p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.8;
}

.city-steps-note {
    max-width: 760px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.city-price-table { margin-top: 8px; }

.city-pricing-cta {
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.city-pricing-cta h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.city-pricing-cta p {
    margin-bottom: 20px;
    color: var(--gray-500);
}

.city-areas-list {
    margin: 16px 0 20px;
    padding-right: 24px;
    list-style: disc;
}

.city-areas-list li {
    margin-bottom: 10px;
    color: var(--gray-700);
    line-height: 1.7;
}

.city-disclaimer {
    padding: 24px 28px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-right: 4px solid var(--green);
    border-radius: var(--radius-md);
}

.city-disclaimer h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.city-disclaimer h3 i { color: var(--green); }

.city-disclaimer p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 10px;
}

.city-disclaimer p:last-child { margin-bottom: 0; }

.city-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.city-other-link {
    display: block;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.city-other-link:hover {
    border-color: var(--green);
    color: var(--green-dark);
    background: rgba(34, 197, 94, 0.05);
}

@media (max-width: 768px) {
    .hero-section--city-page .hero-layout {
        flex-direction: column;
    }

    .hero-section--city-page .hero-visual {
        order: -1;
        width: 100%;
    }

    .city-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== FOOTER ===== */

.site-footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0 24px;
}

.quick-nav-footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    text-align: center;
}

.quick-nav-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.quick-nav-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.quick-nav-item:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-info h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.footer-info p { font-size: 0.9rem; margin: 0; }
.footer-contact h4 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
}

.footer-whatsapp:hover { background: var(--green-dark); color: var(--white); }

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-green);
    animation: pulse-green 2.5s infinite;
}

.whatsapp-float a:hover {
    background: var(--green-dark);
    color: var(--white);
    animation: none;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
    50% { box-shadow: 0 0 0 12px transparent; }
}

/* ===== ARTICLES / BLOG ===== */

.articles-section {
    padding: 64px 0;
    background: var(--off-white);
}

.articles-section--page {
    padding-top: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.article-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.article-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.article-card-body {
    padding: 20px 24px 24px;
}

.article-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.5;
}

.article-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-card-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green);
}

.articles-more {
    text-align: center;
    margin-top: 36px;
}

/* ===== ARTICLE PAGE ===== */

.article-page {
    padding: 32px 0 64px;
    background: var(--white);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    margin-bottom: 32px;
}

.article-category {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.article-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 16px;
}

.article-excerpt {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    color: var(--green);
}

.article-hero-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-hero-image img,
.article-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-inline-image {
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
}

.article-body h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(34, 197, 94, 0.2);
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 28px 0 12px;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body ul {
    margin: 0 0 20px;
    padding-right: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-table th,
.article-table td {
    padding: 14px 18px;
    text-align: right;
    border-bottom: 1px solid var(--gray-200);
}

.article-table th {
    background: var(--off-white);
    font-weight: 700;
    color: var(--gray-900);
}

.article-table tr:last-child td {
    border-bottom: none;
}

.article-table tbody tr:hover {
    background: rgba(34, 197, 94, 0.04);
}

.article-cta {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.article-cta p {
    margin-bottom: 20px;
    color: var(--gray-500);
}

.article-faq {
    margin: 48px 0 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.article-faq h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-align: center;
}

.doctor-quote {
    margin: 28px 0;
    padding: 24px 28px;
    background: var(--off-white);
    border-right: 4px solid var(--green);
    border-radius: var(--radius-md);
}

.doctor-quote p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 12px;
}

.doctor-quote cite {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-dark);
    font-style: normal;
}

/* ===== MEDICAL REVIEW BOX ===== */

.medical-review {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-right: 4px solid var(--green);
    border-radius: var(--radius-md);
}

.medical-review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--green);
}

.medical-review-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.medical-review-label i {
    font-size: 0.9rem;
}

.medical-review-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.medical-review-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.medical-review-text {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin: 0;
}

@media (max-width: 480px) {
    .medical-review {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .medical-review-label {
        justify-content: center;
    }
}

/* ===== SCROLL REVEAL ===== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--fade {
    transform: none;
}

.reveal--left {
    transform: translateX(28px);
}

.reveal--right {
    transform: translateX(-28px);
}

.reveal--left.is-visible,
.reveal--right.is-visible {
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
