/* ==========================================================================
   CSS Design System for Mawaddah Eye Surgery Center
   ========================================================================== */

/* Font Family Loading: Cairo + Tajawal + Local Fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/cairo-arabic-400-normal-DN15VWMM.woff2') format('woff2');
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../assets/cairo-arabic-500-normal-DDl0i4Xv.woff2') format('woff2');
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../assets/cairo-arabic-700-normal-D3nDedWX.woff2') format('woff2');
}

:root {
    --fontFamily: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
    --mainColor: #0088CC;
    --mainColorHover: #006699;
    --secondaryColor: #0A2540;
    --accentColor: #F59E0B;
    --accentColorHover: #d97706;
    --textColor: #1E293B;
    --headingColor: #0A2540;
    --lightBg: #F8FAFC;
    --cardBg: #FFFFFF;
    --white: #ffffff;
    --gray100: #f1f5f9;
    --gray200: #e2e8f0;
    --gray300: #cbd5e1;
    --gray400: #64748B;
    --errorColor: #ef4444;
    --successColor: #22c55e;
    --warningColor: #eab308;
    
    --shadowSm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadowMd: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadowLg: 0 10px 25px -5px rgba(7, 59, 102, 0.08), 0 8px 10px -6px rgba(7, 59, 102, 0.05);
    --shadowPremium: 0 20px 40px rgba(0, 0, 0, 0.06);
    
    --transitionFast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transitionNormal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    
    --headerHeight: 85px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
    color: var(--textColor);
    background-color: var(--white);
    -webkit-tap-highlight-color: transparent;
}

body {
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transitionFast);
}

button, input, select, textarea {
    font-family: 'Cairo', sans-serif;
    outline: none;
}

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

.section-padding {
    padding: 90px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--mainColor);
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray400);
    margin-bottom: 50px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transitionNormal);
    box-shadow: var(--shadowSm);
}

.btn-primary {
    background-color: var(--mainColor);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--mainColorHover);
    transform: translateY(-2px);
    box-shadow: var(--shadowMd);
}

.btn-accent {
    background-color: var(--accentColor);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accentColorHover);
    transform: translateY(-2px);
    box-shadow: var(--shadowMd);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondaryColor);
    border: 2px solid var(--secondaryColor);
}

.btn-outline:hover {
    background-color: var(--secondaryColor);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
/* ==========================================================================
   Header Styles (Clean Crisp White Sticky Navbar)
   ========================================================================== */
/* ==========================================================================
   Header Styles (Exact Curved Cyan Header)
   ========================================================================== */
header {
    background-color: rgba(0, 143, 196, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    height: 75px;
    padding: 10px 24px;
    border-radius: 12px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

header.scrolled {
    top: 10px;
    height: 70px;
    background-color: rgba(0, 143, 196, 0.95);
    border-radius: 12px;
}

header .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

header .logo img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header .logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding: 6px 0;
    text-decoration: none;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--accentColor);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

header nav a:hover::after,
header nav a.active::after {
    width: 100%;
}

header nav a:hover {
    color: var(--white);
}

header nav a.desktop-login-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

header nav a.desktop-login-btn::after {
    display: none !important;
}

header nav a.desktop-login-btn:hover {
    background-color: var(--white);
    color: var(--mainColor) !important;
    border-color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Gold/Orange Accent Button in Header */
.btn-accent {
    background-color: var(--accentColor);
    color: var(--white) !important;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: var(--transitionNormal);
    text-decoration: none;
}

.btn-accent:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Mobile Nav Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: scale(1.05);
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Panel (RTL Drawer) */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    padding: 25px 20px 30px;
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0 !important;
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondaryColor);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.25s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background-color: #f0f9ff;
    color: var(--mainColor);
    transform: translateX(-4px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(11, 37, 69, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-nav-overlay.show {
    opacity: 1 !important;
    pointer-events: auto !important;
}

@media (max-width: 991px) {
    header nav {
        display: none !important;
    }
    .menu-btn {
        display: flex !important;
    }
}

/* ==========================================================================
   Hero Section Styles (Exact Floating Glass Card from Screenshot)
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 95vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--headerHeight);
    background-color: #0b2545;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-container .ken-burns-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 59, 102, 0.7) 0%, rgba(0, 143, 196, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Centered Glassmorphic Card Overlay */
.glass-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 45px 40px;
    border-radius: 24px;
    max-width: 620px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: heroCardSlideDown 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroCardSlideDown {
    from {
        opacity: 0;
        transform: translateY(-45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card .subtitle-tag {
    font-size: 15px;
    font-weight: 700;
    color: var(--mainColor);
    margin-bottom: 14px;
    display: inline-block;
}

.glass-card h1 {
    font-size: 42px;
    font-weight: 900;
    color: var(--secondaryColor);
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.glass-card p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.6;
}

.glass-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-hero-primary-pill {
    background-color: var(--mainColor);
    color: var(--white) !important;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 143, 196, 0.28);
    transition: var(--transitionNormal);
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary-pill:hover {
    background-color: var(--secondaryColor);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(7, 59, 102, 0.35);
}

.circle-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 143, 196, 0.2);
    color: var(--mainColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transitionNormal);
    background: rgba(0, 143, 196, 0.04);
}

.circle-arrow-btn:hover {
    background-color: var(--mainColor);
    color: var(--white);
    border-color: var(--mainColor);
    transform: translateY(-2px);
}

.caption-city-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}/* ==========================================================================
   Premium Full Width Medical Hero Section
   ========================================================================== */
.hero-premium-full {
    position: relative;
    width: 100%;
    min-height: 85vh;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--headerHeight);
    background-color: #072541;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-full-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Subtle Gradient Overlay guaranteeing 100% text legibility */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 37, 65, 0.92) 0%, rgba(7, 59, 102, 0.8) 45%, rgba(0, 143, 196, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-main-box {
    max-width: 840px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ashmoun Tag Badge */
.ashmoun-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 26px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ashmoun-tag-badge i {
    color: #F59E0B; /* Gold Accent Icon */
}

.ashmoun-highlight {
    color: #F59E0B; /* Gold Accent for Ashmoun */
    font-weight: 900;
    font-size: 18.5px;
    padding: 0 4px;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

/* Title Headline */
.hero-title-headline {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.text-accent-blue {
    color: #38BDF8; /* Cyan Light Blue Accent */
}

/* Description Text */
.hero-description-text {
    font-size: 21px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 700px;
}

/* CTA Area */
.hero-cta-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-cta {
    background-color: #008FC4;
    color: #ffffff !important;
    padding: 16px 44px;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 143, 196, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary-cta:hover {
    background-color: #F59E0B;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.4);
    color: #ffffff !important;
}

.btn-primary-cta i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover i {
    transform: translateX(-4px);
}

/* Bottom Scroll Down Arrow */
.scroll-down-hint {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-down-hint:hover {
    color: #38BDF8;
}

.bounce-anim {
    animation: bounceUpDown 2s infinite;
}

@keyframes bounceUpDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

.circle-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--mainColor);
    color: var(--mainColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.circle-arrow-btn:hover {
    background-color: var(--mainColor);
    color: #ffffff;
    transform: translateY(3px);
}

.hero-floating-caption .caption-location {
    font-size: 13.5px;
    font-weight: 700;
    color: #008FC4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-hero-primary:hover {
    background-color: #073B66;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(7, 59, 102, 0.35);
    color: #ffffff !important;
}

.hero-trust-bullets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
    color: #64748B;
    font-size: 14px;
    font-weight: 700;
}

.hero-trust-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-bullets i {
    color: #008FC4;
}

/* Natural Photo Frame with 3px border */
.hero-photo-wrapper {
    position: relative;
}

.photo-card-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(7, 59, 102, 0.12);
    border: 3px solid #ffffff;
    background-color: #ffffff;
}

.natural-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.photo-card-frame:hover .natural-hero-img {
    transform: scale(1.03);
}

.soft-gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 59, 102, 0.35) 0%, transparent 50%);
    pointer-events: none;
}

.hero-image-caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(7, 59, 102, 0.15);
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 3;
}

.hero-image-caption .caption-title {
    font-size: 15px;
    font-weight: 800;
    color: #073B66;
}

.hero-image-caption .caption-location {
    font-size: 13px;
    font-weight: 700;
    color: #008FC4;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Scroll Hint Arrow */
.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
    color: #64748B;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-scroll-hint:hover {
    color: #008FC4;
}

.bounce-icon {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* ==========================================================================
   Quick Guide Decision Cards Section (Cyan Feature Cards)
   ========================================================================== */
.quick-guide-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.guide-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cyan-feature-card {
    background-color: var(--mainColor);
    border-radius: 20px;
    padding: 35px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(1, 136, 194, 0.18);
}

.cyan-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(1, 136, 194, 0.35);
    background-color: var(--secondaryColor);
}

.cyan-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.cyan-feature-card:hover .cyan-icon-circle {
    transform: scale(1.08);
}

.cyan-feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.cyan-feature-card p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

@keyframes heroCardSlideDown {
    from {
        opacity: 0;
        transform: translateY(-45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card .subtitle-tag {
    font-size: 15px;
    font-weight: 700;
    color: var(--mainColor);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 1px;
}

.glass-card h1 {
    font-size: 38px;
    font-weight: 900;
    color: var(--secondaryColor);
    line-height: 1.4;
    margin-bottom: 12px;
}

.glass-card p {
    font-size: 16px;
    color: var(--textColor);
    margin-bottom: 25px;
    font-weight: 500;
}

.glass-card .btn-book {
    padding: 13px 40px;
    font-size: 17px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card .btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(1, 136, 194, 0.45);
}

.glass-card .btn-book::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 220%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    transform: rotate(30deg);
    animation: shimmerBeam 4s infinite ease-in-out;
}

@keyframes shimmerBeam {
    0%, 75% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.circle-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--mainColor);
    color: var(--mainColor);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transitionFast);
    background: var(--white);
    box-shadow: var(--shadowSm);
    animation: bounceLoop 2.5s infinite ease-in-out;
}

@keyframes bounceLoop {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.circle-arrow-btn:hover {
    background: var(--mainColor);
    color: var(--white);
}

.video-toggle-btn {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transitionFast);
    box-shadow: var(--shadowSm);
}

.video-toggle-btn:hover {
    background-color: var(--white);
    color: var(--mainColor);
    transform: scale(1.1);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 30px;
    animation: bounce 2s infinite;
    cursor: pointer;
    background-color: rgba(1, 136, 194, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadowMd);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.scroll-down svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ==========================================================================
   Features Section (Screenshot 3)
   ========================================================================== */
.features {
    background-color: var(--lightBg);
    padding: 80px 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: var(--mainColor);
    color: var(--white);
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadowMd);
    transition: var(--transitionNormal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadowLg);
    background-color: var(--mainColorHover);
}

.feature-card .icon-box {
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: var(--transitionFast);
}

.feature-card:hover .icon-box {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.6;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background-color: var(--lightBg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowSm);
    transition: var(--transitionNormal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadowLg);
    border-color: var(--mainColor);
    border-bottom: 6px solid var(--mainColor);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--gray100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--mainColor);
    font-size: 32px;
    transition: var(--transitionFast);
}

.service-card:hover .icon-wrapper {
    background-color: var(--mainColor);
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--textColor);
    line-height: 1.6;
}

/* ==========================================================================
   Doctor Biography
   ========================================================================== */
.doctor-section {
    background-color: var(--white);
}

.doctor-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.doctor-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadowLg);
}

.doctor-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.doctor-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 6px;
}

.doctor-content .specialty {
    font-size: 18px;
    font-weight: 700;
    color: var(--mainColor);
    margin-bottom: 25px;
}

.doctor-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.doctor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.stat-item {
    background-color: var(--lightBg);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1.5px solid var(--gray200);
}

.stat-item h4 {
    font-size: 26px;
    font-weight: 800;
    color: var(--mainColor);
}

.stat-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondaryColor);
    margin-bottom: 0;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
    background-color: var(--lightBg);
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadowSm);
    height: 220px;
    border: 1px solid var(--gray200);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transitionNormal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Booking Section & Form Styles
   ========================================================================== */
.booking {
    background: linear-gradient(180deg, var(--white) 0%, var(--lightBg) 100%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.booking-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 20px;
}

.booking-info p {
    font-size: 16px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowSm);
}

.info-card .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(1, 136, 194, 0.1);
    color: var(--mainColor);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 14px;
    color: var(--textColor);
    margin-bottom: 0;
}

/* Elegant Form Container */
.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowLg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
    border: 1.5px solid var(--gray200);
    background-color: var(--gray100);
    color: var(--textColor);
    transition: var(--transitionFast);
}

.form-control:focus {
    background-color: var(--white);
    border-color: var(--mainColor);
    box-shadow: 0 0 0 3px rgba(1, 136, 194, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 10px;
}

.alert-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--successColor);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--errorColor);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--mainColor);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-phone {
    border: 2px solid var(--white);
    border-radius: 30px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 18px;
    width: 100%;
    color: var(--white);
    transition: var(--transitionFast);
}

.footer-phone:hover {
    background-color: var(--white);
    color: var(--mainColor);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accentColor);
    border-radius: 1.5px;
}

.footer-col p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accentColor);
    padding-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Login Page Styles
   ========================================================================== */
.login-body {
    background-color: var(--lightBg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background-color: var(--white);
    max-width: 420px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowPremium);
    text-align: center;
}

.login-card .logo-wrapper {
    margin-bottom: 25px;
}

.login-card .logo-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--mainColor);
    background-color: var(--white);
}

.login-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 8px;
}

.login-card p {
    font-size: 14px;
    color: var(--gray400);
    margin-bottom: 30px;
}

/* ==========================================================================
   Dashboard Styles
   ========================================================================== */
.dashboard-body {
    background-color: var(--lightBg);
    min-height: 100vh;
}

.dashboard-nav {
    background-color: var(--white);
    border-bottom: 1.5px solid var(--gray200);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: var(--shadowSm);
}

.dashboard-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-nav .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-nav .user-badge {
    background-color: rgba(1, 136, 194, 0.1);
    color: var(--mainColor);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.dashboard-nav .btn-logout {
    padding: 6px 16px;
    font-size: 14px;
}

.dashboard-content {
    padding: 40px 0;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.stat-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowSm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-card.stat-all .icon-box {
    background-color: rgba(11, 57, 104, 0.1);
    color: var(--secondaryColor);
}

.stat-card.stat-new .icon-box {
    background-color: rgba(234, 179, 8, 0.1);
    color: var(--warningColor);
}

.stat-card.stat-contacted .icon-box {
    background-color: rgba(1, 136, 194, 0.1);
    color: var(--mainColor);
}

.stat-card.stat-completed .icon-box {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--successColor);
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--headingColor);
    line-height: 1.2;
}

.stat-card p {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray400);
    margin-bottom: 0;
}

/* Filters & Controls */
.dashboard-controls {
    background-color: var(--white);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowSm);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid var(--gray200);
    background-color: var(--lightBg);
    color: var(--textColor);
    cursor: pointer;
    transition: var(--transitionFast);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--mainColor);
    background-color: var(--mainColor);
    color: var(--white);
}

.search-box {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 8px 16px 8px 40px;
    border-radius: 20px;
    border: 1.5px solid var(--gray200);
    font-size: 14px;
    background-color: var(--lightBg);
}

.search-box input:focus {
    background-color: var(--white);
    border-color: var(--mainColor);
}

/* Lead Table */
.table-container {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowSm);
    overflow-x: auto;
}

table.lead-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

table.lead-table th {
    background-color: var(--gray100);
    color: var(--secondaryColor);
    font-weight: 800;
    font-size: 14px;
    padding: 16px 20px;
    text-align: right;
    border-bottom: 1.5px solid var(--gray200);
}

table.lead-table td {
    padding: 16px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray200);
    vertical-align: middle;
}

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

table.lead-table tr:hover td {
    background-color: rgba(1, 136, 194, 0.02);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-align: center;
}

.badge-pending {
    background-color: rgba(234, 179, 8, 0.1);
    color: var(--warningColor);
}

.badge-contacted {
    background-color: rgba(1, 136, 194, 0.1);
    color: var(--mainColor);
}

.badge-no-answer {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--errorColor);
}

.badge-completed {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--successColor);
}

/* Actions in Table */
.status-select {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 8px;
    border: 1.5px solid var(--gray200);
    background-color: var(--lightBg);
    cursor: pointer;
    font-weight: 600;
}

.status-select:focus {
    border-color: var(--mainColor);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--successColor);
    border-radius: 50%;
    transition: var(--transitionFast);
}

.btn-whatsapp:hover {
    background-color: var(--successColor);
    color: var(--white);
    transform: scale(1.1);
}

.no-data {
    padding: 50px 20px;
    text-align: center;
    color: var(--gray400);
    font-weight: 700;
}

/* ==========================================================================
   Specialties / Departments Section
   ========================================================================== */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dept-card {
    background-color: var(--lightBg);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--gray200);
    box-shadow: var(--shadowSm);
    transition: var(--transitionNormal);
    display: flex;
    flex-direction: column;
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadowLg);
    border-color: var(--mainColor);
    border-bottom: 6px solid var(--mainColor);
}

.dept-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(1, 136, 194, 0.1);
    color: var(--mainColor);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    transition: var(--transitionFast);
}

.dept-card:hover .icon-box {
    background-color: var(--mainColor);
    color: var(--white);
    transform: scale(1.05);
}

.dept-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 12px;
}

.dept-card p {
    font-size: 15px;
    color: var(--textColor);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dept-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.dept-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    color: var(--secondaryColor);
}

.dept-list li i {
    color: var(--mainColor);
    font-size: 16px;
}

.dept-card .btn-more {
    width: 100%;
    text-align: center;
    margin-top: auto;
    border-radius: 12px;
    padding: 10px;
    font-size: 15px;
}

/* ==========================================================================
   About Us Section (Clean & Minimalist Reference Design - Image_acc59a)
   ========================================================================== */
.about-minimalist-section {
    background-color: #ffffff;
    padding: 85px 0;
    position: relative;
    overflow: hidden;
}

/* Fade-in slide-up for about section elements */
.about-logo-card-wrapper {
    opacity: 0;
    animation: cardFadeUp 0.65s ease forwards 0.15s;
}

.about-minimalist-content {
    opacity: 0;
    animation: cardFadeUp 0.65s ease forwards 0.35s;
}

/* 1. Background Dots Grid as Absolute Background in Top-Right */
.top-dots-grid-absolute {
    position: absolute;
    top: 15px;
    right: 25px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    opacity: 0.28;
    z-index: 1;
    pointer-events: none;
}

.top-dots-grid-absolute span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0096c7;
    display: inline-block;
}

.about-minimalist-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 55px;
    align-items: center; /* Vertically center cards and text column */
    position: relative;
    z-index: 2;
}

/* Left Side in RTL: Vertical Logo Card matching Screenshot */
.about-logo-card-wrapper {
    position: relative;
    padding-bottom: 25px;
    padding-left: 15px;
}

/* Offset Blue Accent Card Behind Vertical White Card (Ref image_acb9bc) */
.blue-tilted-card-bg {
    position: absolute;
    top: 22px;
    right: 18px;
    left: -15px;
    bottom: -15px;
    background-color: #0096c7;
    border-radius: 28px;
    z-index: 1;
}

/* White Vertical Card */
.white-logo-vertical-card {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border: 4px solid #0096c7;
    border-radius: 28px;
    padding: 48px 32px 42px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 150, 199, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-center-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 3px solid #0096c7;
    box-shadow: 0 8px 25px rgba(0, 150, 199, 0.15);
}

.card-brand-name {
    font-size: 22px;
    font-weight: 900;
    color: #0b2545;
    margin-bottom: 8px;
}

.card-slogan-text {
    font-size: 15.5px;
    font-weight: 800;
    color: #0096c7;
    margin: 0;
}

/* Right Side in RTL: Minimalist Typography & List */
.about-minimalist-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Simple Clean Gray Label for "من نحن" Aligned Pure Right */
.simple-about-label {
    font-size: 15px;
    font-weight: 700;
    color: #64748B;
    margin-bottom: 6px;
    display: block;
    text-align: right;
    width: 100%;
}

.minimal-headline-h2 {
    font-size: 38px;
    font-weight: 900;
    color: #0b2545; /* Deep Dark Navy */
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.minimal-subtitle-cyan {
    font-size: 19px;
    font-weight: 800;
    color: #0096c7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.minimal-desc-text {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    line-height: 1.85;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.minimal-desc-text-secondary {
    font-size: 15.5px;
    font-weight: 500;
    color: #475569; /* slate-600 */
    line-height: 1.85;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

/* Minimalist Pillars Bullet List */
.minimal-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.minimal-pillar-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.bullet-dot-cyan {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background-color: #0096c7;
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(0, 150, 199, 0.5);
}

.pillar-title-navy {
    font-weight: 800;
    color: #0b2545;
    margin-left: 6px;
}

.pillar-desc-slate {
    color: #475569; /* slate-600 */
    font-weight: 500;
}

/* ==========================================================================
   Services Section (Card Slider Carousel matching Image_ac5cb8)
   ========================================================================== */
.services-slider-section {
    background: linear-gradient(135deg, var(--secondaryColor) 0%, var(--mainColor) 100%);
    padding: 85px 0;
    position: relative;
}

.services-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.services-cyan-badge {
    display: inline-block;
    padding: 6px 20px;
    background-color: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(56, 189, 248, 0.25);
}

@keyframes servicesBadgeGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 16px 4px rgba(255, 255, 255, 0.28);
        transform: scale(1.03);
    }
}

.services-main-h2 {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
}

/* Slider Track Container */
.services-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

/* Side Arrow Navigation Buttons (Outlined White Circle) */
.services-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services-nav-arrow:hover {
    background-color: #ffffff;
    color: #0088cc;
    transform: translateY(-50%) scale(1.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.services-nav-arrow.arrow-right {
    right: -25px;
}

.services-nav-arrow.arrow-left {
    left: -25px;
}

/* Cards Track Grid/Flex Scroll */
.services-cards-track {
    display: flex;
    gap: 30px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services-cards-track::-webkit-scrollbar {
    display: none;
}

/* Vertical Service Card */
@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-vertical {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 42px 32px 38px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: cardFadeUp 0.6s ease forwards;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.3s ease,
                background-color 0.3s ease;
}

.service-card-vertical:nth-child(1) { animation-delay: 0.1s; }
.service-card-vertical:nth-child(2) { animation-delay: 0.25s; }
.service-card-vertical:nth-child(3) { animation-delay: 0.4s; }
.service-card-vertical:nth-child(4) { animation-delay: 0.55s; }

.service-card-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #38bdf8, #00b4d8);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-vertical:hover::before {
    transform: scaleX(1);
}

/* Icon Wrapper at Top */
.service-card-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.service-card-vertical:hover .service-card-icon-wrapper {
    background-color: #38bdf8;
    color: #0f172a;
    transform: scale(1.14) rotate(-7deg);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

.service-card-title {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card-vertical:hover .service-card-title {
    color: #38bdf8;
}

.service-card-desc {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 22px;
    flex-grow: 0;
}

/* Sub-list of Items */
.service-sublist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex-grow: 1;
}

.service-sublist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.25s ease, color 0.25s ease;
}

.service-sublist li:hover {
    transform: translateX(-4px);
    color: #38bdf8;
}

.sublist-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #38bdf8;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-sublist li:hover .sublist-dot {
    transform: scale(1.5);
    background-color: #38bdf8;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 800;
    color: #38bdf8;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
}

.service-card-btn:hover {
    color: #ffffff;
    transform: translateX(-8px);
}

.service-card-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

@media (max-width: 991px) {
    .service-card-vertical {
        flex: 0 0 calc(50% - 15px);
        min-width: 290px;
    }
    
    .services-nav-arrow.arrow-right {
        right: -10px;
    }
    
    .services-nav-arrow.arrow-left {
        left: -10px;
    }
}

@media (max-width: 640px) {
    .service-card-vertical {
        flex: 0 0 88%;
        min-width: 270px;
    }
}

/* ==========================================================================
   Medical Diagnostics Showcase (7 Detailed Exams Grid)
   ========================================================================== */
.diagnostics-showcase-section {
    background-color: #ffffff;
    padding: 90px 0;
}

/* ==========================================================================
   Diagnostics Intro Entry Card (Matching Image_ab6bc2 Prompt)
   ========================================================================== */
.diagnostics-intro-entry-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 45px 40px;
    box-shadow: 0 15px 45px rgba(11, 37, 69, 0.08);
    border: 1px solid #E2EFF7;
    max-width: 800px;
    margin: 0 auto 55px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diagnostics-top-eye-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #0096c7;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 8px 22px rgba(0, 150, 199, 0.3);
}

.diagnostics-entry-h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0d3b66;
    margin-bottom: 12px;
}

.diagnostics-entry-desc {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    max-width: 650px;
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: center;
}

.diagnostics-entry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 520px;
    text-align: right;
}

.diagnostics-entry-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 800;
    color: #0d3b66;
}

.cyan-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0096c7;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .diagnostics-intro-entry-card {
        padding: 30px 20px;
    }
    
    .diagnostics-entry-h2 {
        font-size: 26px;
    }
}

.diagnostics-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.diagnostic-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #E2EFF7;
    box-shadow: 0 10px 30px rgba(13, 59, 102, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.diagnostic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 150, 199, 0.15);
    border-color: rgba(0, 150, 199, 0.3);
}

.diagnostic-card-media {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagnostic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.diagnostic-img.fit-contain {
    object-fit: contain;
    padding: 10px;
}

.diagnostic-card:hover .diagnostic-img {
    transform: scale(1.06);
}

.diagnostic-badge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background-color: rgba(13, 59, 102, 0.88);
    backdrop-filter: blur(6px);
    color: #ffffff;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 800;
}

.diagnostic-card-header-icon {
    position: relative;
    padding: 24px 24px 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.diag-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background-color: rgba(0, 150, 199, 0.1);
    color: #0096c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.diagnostic-card:hover .diag-icon-circle {
    background-color: #0096c7;
    color: #ffffff;
    transform: scale(1.08);
}

.diagnostic-badge {
    padding: 6px 14px;
    background-color: rgba(13, 59, 102, 0.08);
    color: #0d3b66;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 800;
}

.diagnostic-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.diagnostic-card-body h3 {
    font-size: 20px;
    font-weight: 900;
    color: #0d3b66;
    margin-bottom: 12px;
}

.diagnostic-card-body p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 22px;
    flex-grow: 1;
}

.btn-book-exam {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 14px;
    background-color: #F8FAFC;
    color: #0096c7;
    border: 1px solid #E2EFF7;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book-exam:hover {
    background-color: #0096c7;
    color: #ffffff;
    border-color: #0096c7;
}

.btn-book-exam::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    cursor: pointer;
}

@media (max-width: 640px) {
    .diagnostics-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Focused Booking Section (High Conversion Clean Form)
   ========================================================================== */
.focused-booking-section {
    background-color: #F8FAFC;
    padding: 85px 0;
}

.focused-booking-card {
    max-width: 680px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(11, 37, 69, 0.08);
    border: 1px solid #E2EFF7;
}

.focused-booking-header {
    text-align: center;
    margin-bottom: 35px;
}

.focused-booking-header h2 {
    font-size: 34px;
    font-weight: 900;
    color: #0d3b66;
    margin-bottom: 10px;
}

.focused-booking-header p {
    font-size: 15.5px;
    font-weight: 500;
    color: #475569;
    margin: 0;
}

.focused-booking-form .form-group {
    margin-bottom: 22px;
}

.focused-booking-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    color: #0d3b66;
    margin-bottom: 10px;
}

.focused-booking-form label i {
    color: #0096c7;
    font-size: 16px;
}

.focused-booking-form .form-control {
    width: 100%;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1.5px solid #E2EFF7;
    background-color: #F8FAFC;
    font-size: 15px;
    color: #0d3b66;
    transition: all 0.3s ease;
}

.focused-booking-form .form-control:focus {
    outline: none;
    border-color: #0096c7;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 150, 199, 0.15);
}

.focused-booking-form textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

/* Primary Theme Confirmation CTA Button (#0096c7) */
.btn-orange-confirm {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    background-color: #0096c7;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 150, 199, 0.32);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 15px;
}

.btn-orange-confirm:hover {
    background-color: #0d3b66;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(13, 59, 102, 0.4);
}

/* ==========================================================================
   Minimalist Cyan Footer (100% Matching Reference Image_abe0bb)
   ========================================================================== */
.cyan-minimal-footer {
    background-color: #0088cc;
    color: #ffffff;
    padding-top: 60px;
}

.cyan-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 50px;
}

/* Left Side in RTL: Working Hours */
.cyan-footer-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #ffffff;
}

.cyan-footer-h3 {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.cyan-footer-days {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.cyan-footer-hours {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
}

.cyan-footer-weekend {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

/* Clinic Social Media Accounts Row */
.clinic-social-accounts-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.social-label-text {
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
}

.social-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.social-icon-btn.facebook:hover {
    color: #1877F2;
}

.social-icon-btn.whatsapp:hover {
    color: #25D366;
}

/* Right Side in RTL: Logo Card & Interactive Buttons */
.cyan-footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 320px;
    margin-right: auto;
}

.cyan-footer-logo-card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.footer-logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.brand-h4 {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
}

.brand-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Call Button (Phone Icon + Number) */
.cyan-footer-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cyan-footer-call-btn:hover {
    background-color: #ffffff;
    color: #0096c7;
}

/* Theme Footer CTA Button */
.cyan-footer-orange-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    background-color: #0d3b66;
    color: #ffffff;
    border-radius: 30px;
    font-size: 14.5px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(13, 59, 102, 0.3);
    transition: all 0.3s ease;
}

.cyan-footer-orange-btn:hover {
    background-color: #ffffff;
    color: #0096c7;
    transform: translateY(-2px);
}

/* Location White Pill Button */
.cyan-footer-location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #ffffff;
    color: #0096c7;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.cyan-footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .cyan-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .cyan-footer-col-right {
        margin-right: 0;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .about-minimalist-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .minimal-headline-h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   About Us Section (من نحن)
   ========================================================================== */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.section-tag {
    font-size: 14px;
    font-weight: 800;
    color: var(--mainColor);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: 1.5px;
}

.section-title-large {
    font-size: 38px;
    font-weight: 900;
    color: var(--secondaryColor);
    line-height: 1.35;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondaryColor);
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 16px;
    color: var(--textColor);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-number {
    font-size: 26px;
    font-weight: 900;
    color: var(--mainColor);
    opacity: 0.35;
    line-height: 1;
    background-color: rgba(1, 136, 194, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 6px;
}

.value-item p {
    font-size: 14.5px;
    color: var(--textColor);
    margin-bottom: 0;
    line-height: 1.6;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 30px;
    padding-left: 30px;
}

.about-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadowLg);
    display: block;
}

.image-overlay-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadowPremium);
    border: 1px solid var(--gray200);
    max-width: 260px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.image-overlay-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondaryColor);
    margin-bottom: 6px;
}

.image-overlay-card p {
    font-size: 13px;
    color: var(--gray400);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 600;
}

/* SVG icons helpers */
.icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 991px) {
    header {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        height: 65px;
        padding: 8px 16px;
        border-radius: 12px;
    }
    
    header.scrolled {
        top: 5px;
        height: 60px;
    }
    
    header nav {
        display: none;
    }
    
    header .header-actions {
        display: flex;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 85px;
        height: 80vh;
    }
    
    .glass-card {
        padding: 35px 30px;
    }
    
    .glass-card h1 {
        font-size: 30px;
    }
    
    .glass-card p {
        font-size: 16px;
    }
    
    .hero-split-grid,
    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .hero-split-title {
        font-size: 36px;
    }
    
    .device-img {
        height: 380px;
    }
    
    .about-image-wrapper {
        padding-bottom: 0;
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-image-wrapper img {
        height: 380px;
    }
    
    .doctor-img-wrapper img {
        height: 360px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }
    
    .glass-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .glass-card h1 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 22px;
        font-size: 15px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .guide-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .guide-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 991px) {
    .hero-light-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .hero-headline-title {
        font-size: 40px;
    }
    
    .retina-device-photo {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .hero-headline-title {
        font-size: 32px;
    }
    
    .btn-cyan-action {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 16.5px;
    }
}
        gap: 30px;
    }
    
    .hero-floating-caption {
        align-self: flex-start;
    }
    
    .hero-full-overlay {
        background: linear-gradient(180deg, rgba(246, 250, 252, 0.96) 0%, rgba(246, 250, 252, 0.88) 60%, rgba(246, 250, 252, 0.4) 100%);
    }
}
    
    .hero-title-main {
        font-size: 44px;
    }
    
    .hero-subtitle-text {
        font-size: 18px;
    }
    
    .natural-hero-img {
        height: 360px;
    }
}

@media (max-width: 991px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-main-heading {
        font-size: 40px;
    }
    
    .crisp-photo-img {
        height: 360px;
    }
}

@media (max-width: 991px) {
    .hero-title-headline {
        font-size: 42px;
    }
    
    .hero-description-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title-headline {
        font-size: 32px;
    }
    
    .ashmoun-tag-badge {
        font-size: 14px;
        padding: 7px 18px;
    }
    
    .ashmoun-highlight {
        font-size: 15.5px;
    }
    
    .btn-primary-cta {
        padding: 14px 32px;
        font-size: 17px;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Premium Animation Utilities (Laser Scanner, Reveal Blur, Interactive Eye)
   ========================================================================== */

/* Focus & Blur Reveal */
.reveal-blur {
    opacity: 0 !important;
    filter: blur(12px) !important;
    transform: translateY(30px) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-blur.revealed {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: translateY(0) !important;
}



/* Interactive Eye Styling */
.interactive-eye {
    color: #38bdf8;
    transition: color 0.3s ease;
}

.service-card-vertical:hover .interactive-eye {
    color: var(--secondaryColor);
}

.cyan-feature-card:hover .interactive-eye {
    color: #ffffff;
}

/* Premium HUD Eye Diagnostic Scanner Animation */
@keyframes hud-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hud-rotate-ring {
    transform-origin: 50px 50px;
    animation: hud-rotate 12s linear infinite;
}

@keyframes hud-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(0.96);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.hud-pulse-cross {
    transform-origin: 50px 50px;
    animation: hud-pulse 3s ease-in-out infinite;
}

.hud-eye-outline {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4));
}

.hud-iris {
    filter: drop-shadow(0 0 4px rgba(56, 189, 248, 0.7));
    transition: fill 0.3s ease, filter 0.3s ease;
}

.service-card-vertical:hover .hud-iris {
    fill: #ffffff;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
}

.service-card-vertical:hover .hud-rotate-ring {
    stroke: #ffffff;
    animation-duration: 6s;
}

.service-card-vertical:hover .hud-pulse-cross {
    stroke: #ffffff;
}

/* ==========================================================================
   Surgery Gallery Section (جناح العمليات)
   ========================================================================== */
.surgery-gallery-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 85px 0;
}

.surgery-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.surgery-img-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
    border: 1px solid #e2eff7;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.surgery-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 150, 199, 0.18);
    border-color: rgba(0, 150, 199, 0.3);
}

/* Professional Photo Frame */
.surgery-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    background-color: #f1f5f9;
    border: 1px solid #e2eff7;
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.1);
}

.surgery-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    pointer-events: none;
}

.surgery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.surgery-img-card:hover .surgery-img-wrapper img {
    transform: scale(1.08);
}

/* Features Row */
.surgery-features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid #e2eff7;
}

.surgery-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #073B66;
}

.surgery-feature-item i {
    color: #0096c7;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .surgery-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .surgery-images-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .surgery-features-row {
        gap: 20px;
    }
    
    .surgery-feature-item {
        font-size: 14px;
    }
}
