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

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-red: #C41E3A;
    --primary-dark-red: #8B0000;
    --primary-blue: #1A3A5C;
    --primary-light-blue: #2B5F8E;
    --white: #FFFFFF;
    --off-white: #F5F6FA;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #1A1A2E;
    --dark-bg: #0D1117;
    --gold: #C8A951;
    --success: #198754;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #0DCAF0;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 45px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 65px rgba(0,0,0,0.15);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 50px;
	
   --radius: 24px;
}

/* ==================== FONTS ==================== */

/* ==================== GLOBAL ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Tajawal', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.8;
    color: var(--gray-800);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--primary-red); color: var(--white); }
::placeholder { color: var(--gray-400); opacity: 1; }
a { transition: var(--transition-fast); }
img { max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-red); }

#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--gray-900,#0f172a), var(--dark-bg,#1e293b));
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity .5s ease, visibility .5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    animation: pulseLogo 1.8s infinite;
    margin-bottom: 15px;
}

#preloader p {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Animation */
@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive للموبايل */
@media(max-width:768px){
    .loader-logo img { width: 90px; height: 90px; }
    #preloader p { font-size: 16px; }
}
/* ==================== WHATSAPP FLOAT ==================== */
/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float:nth-child(2) {
    right: 50px; /* أو حسب التصميم */
}
/* WHY PAGE */

.why-hero {

    background:
    linear-gradient(rgba(10,15,35,.88), rgba(10,15,35,.88)),
    url('images/bg.jpg') center/cover;

    padding: 140px 0 100px;

    color: #fff;

}

.hero-badge {

    background: rgba(255,255,255,.1);

    padding: 10px 20px;

    border-radius: 50px;

    display: inline-block;

    margin-bottom: 20px;

    font-size: 14px;

}

.why-hero h1 {

    font-size: 60px;

    font-weight: 800;

    line-height: 1.3;

    margin-bottom: 25px;

}

.why-hero h1 span {

    color: #CC0000;

}

.why-hero p {

    font-size: 20px;

    line-height: 2;

    color: rgba(255,255,255,.8);

    margin-bottom: 30px;

}

.hero-actions {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}

.hero-image {

    max-height: 550px;

    border-radius: 30px;

}

.why-features {

    padding: 100px 0;

    background: #f8f9fc;

}

.section-title span {

    color: #CC0000;

    font-weight: 700;

}

.section-title h2 {

    font-size: 45px;

    margin: 15px 0;

    font-weight: 800;

}

.feature-box {

    background: #fff;

    padding: 40px 30px;

    border-radius: 25px;

    text-align: center;

    transition: .3s;

    height: 100%;

    box-shadow: 0 10px 40px rgba(0,0,0,.05);

}

.feature-box:hover {

    transform: translateY(-10px);

}

.feature-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(45deg,#CC0000,#ff4d4d);

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto auto 20px;

    font-size: 28px;

}

.feature-box h4 {

    font-size: 24px;

    margin-bottom: 15px;

    font-weight: 700;

}

.feature-box p {

    color: #666;

    line-height: 2;

}

.why-cta {

    padding: 100px 0;

    background: linear-gradient(45deg,#0f172a,#1e293b);

    color: #fff;

}

.why-cta h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700; /* لون أصفر فاتح متناسق وواضح على الخلفية الغامقة */
}
.why-cta p {

    font-size: 20px;

    color: rgba(255,255,255,.8);

    margin-bottom: 30px;

}

@media(max-width:768px){

    .why-hero {

        padding: 120px 0 70px;

        text-align: center;

    }

    .why-hero h1 {

        font-size: 38px;

    }

    .section-title h2 {

        font-size: 32px;

    }

    .why-cta h2 {

        font-size: 35px;

    }

}
/* ==================== CHAT FLOAT ==================== */
.chat-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    background: var(--primary-red, #C41E3A);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(196,30,58,0.18);
    cursor: pointer;
    transition: var(--transition);
}

/* ==================== CHAT BOX ==================== */

   .chat-box {
    position: fixed;
    bottom: 210px;
    right: 90px;
    z-index: 998;
    width: 370px;
    max-height: 500px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;

}
.chat-box.show { display: flex; animation: slideUp 0.3s ease; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between;
}
.chat-header h6 { margin: 0; font-weight: 600; }
.chat-header .fa-times { cursor: pointer; opacity: 0.8; transition: var(--transition-fast); }
.chat-header .fa-times:hover { opacity: 1; }
.chat-body { padding: 15px; flex: 1; overflow-y: auto; max-height: 320px; }
.chat-message {
    margin-bottom: 10px; padding: 10px 15px; border-radius: var(--radius-sm);
    max-width: 85%; font-size: 15px; line-height: 1.6;
}
.bot-message { background: var(--gray-50); border-top-right-radius: 4px; }
.chat-footer {
    padding: 10px 15px; border-top: 1px solid var(--gray-100);
    display: flex; gap: 10px; background: var(--white);
}
.chat-footer input {
    flex: 1; border-radius: 25px; border: 1px solid var(--gray-200);
    padding: 8px 15px; font-size: 15px;
}
.chat-footer input:focus {
    outline: none; border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}
.btn-send {
    background: var(--primary-red); color: white; border: none;
    border-radius: 50%; width: 40px; height: 40px; transition: var(--transition-fast);
}
.btn-send:hover { background: var(--primary-dark-red); transform: scale(1.1); }

/* ==================== NAVIGATION ==================== */
/* =========================
   NAVBAR FINAL CLEAN
========================= */

.navbar {
    padding: 12px 0;
    transition: 0.3s ease;
    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    z-index: 9999;
}

/* عند الاسكرول */
.navbar.scrolled {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* =========================
   BRAND
========================= */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.navbar.scrolled .nav-logo {
    border-color: var(--primary-red);
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    transition: 0.3s ease;
}

.navbar.scrolled .brand-text {
    color: var(--gray-900);
}

.brand-text strong {
    color: var(--primary-red);
}

/* =========================
   NAV LINKS
========================= */

.navbar .nav-link {
    position: relative;
    padding: 10px 16px !important;
    color: rgba(255,255,255,0.92) !important;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* بعد الاسكرول */
.navbar.scrolled .nav-link {
    color: var(--gray-800) !important;
}

/* Hover + Active */
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-red) !important;
}

/* الخط تحت اللينك */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active-page::after {
    width: 60%;
}

/* =========================
   LANGUAGE SWITCH
========================= */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border-radius: 30px;
    background: rgba(255,255,255,0.12);
    transition: 0.3s ease;
}

.navbar.scrolled .lang-switch {
    background: var(--gray-100);
}

.lang-switch a,
.lang-switch span {
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.lang-switch a {
    color: rgba(255,255,255,0.75);
}

.navbar.scrolled .lang-switch a {
    color: var(--gray-700);
}

.lang-switch .lang-active {
    background: var(--primary-red);
    color: white !important;
}

/* =========================
   TOGGLER
========================= */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 6px 10px;
    border-radius: 10px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* =========================
   MOBILE NAVBAR
========================= */

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #1a3a5c 50%, #c41e3a);
    overflow: hidden;
    padding-top: 80px; /* المسافة من الـ navbar */
}


.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26,26,46,0.6);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 50px 15px;
	    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.section-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196,30,58,0.5);
}
.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.btn-outline-custom:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196,30,58,0.35);
}

.hero-features {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative; /* مهم */
    z-index: 5; /* أعلى من الـ wave */
    margin-bottom: 60px; /* فاصلة عن الـ wave */
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-feature-item i {
    font-size: 24px;
    color: var(--gold);
}

.hero-wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: 3; /* أقل من hero-features */
	
}
.services-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #1a3a5c 50%, #c41e3a);
}

.services-hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(26,26,46,0.7);
    z-index: 1;
}

.services-hero-section .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 150px 15px 60px;
}

.services-hero-section .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.services-hero-section .hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-section .text-gradient {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-section .hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.9;
}

.services-hero-section .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.services-hero-section .hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 5;
}

.services-hero-section .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.services-hero-section .hero-feature-item i {
    font-size: 20px;
    color: var(--gold);
}

.services-hero-section .hero-wave {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    z-index: 3;
}

/* ==================== STATS SECTION ==================== */
.stats-section { padding: 60px 0; margin-top: -40px; position: relative; z-index: 5; }
.stat-card {
    background: var(--white); border-radius: var(--radius); padding: 28px 22px; text-align: center;
    box-shadow: var(--shadow-md); transition: var(--transition); border: 1px solid var(--gray-200);
    position: relative; overflow: hidden;
}
.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-dark-red));
    transform: scaleX(0); transition: transform 0.4s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--gray-100); }
.stat-icon {
    font-size: 40px; background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 15px;
}
.stat-number { font-size: 3.2rem; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: 8px; }
.stat-label {
    color: var(--gray-600); font-size: 15px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* ==================== SECTION HEADERS ==================== */
.section-badge {
    display: inline-block; background: rgba(196,30,58,0.05); color: var(--primary-red);
    padding: 10px 24px; border-radius: var(--radius-full); font-weight: 600;
    font-size: 15px; margin-bottom: 18px; letter-spacing: 0.5px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
    margin-bottom: 18px; line-height: 1.3;
}
.text-primary-custom { color: var(--primary-red); }
.section-subtitle {
    color: var(--gray-600); max-width: 600px; margin: 0 auto;
    font-size: 1rem; line-height: 1.8;
}

/* ==================== ABOUT SECTION ==================== */
.about-section { padding: 80px 0; }
.about-image-wrapper { position: relative; }
.about-main-img {
    width: 100%; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); transition: 0.3s ease;
}
.about-image-wrapper:hover .about-main-img { transform: scale(1.02); }
.about-experience {
    position: absolute; bottom: -25px; left: -25px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white; padding: 25px 30px; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-lg);
}
.about-experience span { font-size: 2.8rem; font-weight: 800; display: block; line-height: 1; }
.about-experience small { font-size: 14px; opacity: 0.8; }
.about-shape {
    position: absolute; top: -25px; right: -25px; width: 100%; height: 100%;
    border: 3px solid var(--primary-red); border-radius: var(--radius);
    z-index: -1; opacity: 0.3; transition: 0.3s ease;
}
.about-image-wrapper:hover .about-shape { top: -15px; right: -15px; opacity: 0.5; }
.about-text { color: var(--gray-600); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.about-feature i { color: var(--success); font-size: 18px; }

/* ==================== SERVICES SECTION ==================== */
.services-section { padding: 80px 0; background: var(--off-white); }
.service-card {
    background: var(--white); border-radius: var(--radius); padding: 28px 24px;
    box-shadow: var(--shadow-md); transition: var(--transition); height: 100%;
    border: 1px solid var(--gray-200); position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px;
    background: var(--primary-red); opacity: 0; border-radius: 50%;
    transform: translate(30px, 30px); transition: 0.3s ease;
}
.service-card:hover::after { opacity: 0.03; transform: translate(0, 0) scale(3); }
.service-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}
.service-icon {
    width: 75px; height: 75px;
    background: linear-gradient(135deg, rgba(196,30,58,0.05), rgba(26,58,92,0.06));
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--primary-red); margin-bottom: 22px; transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--primary-red); color: white;
    transform: rotate(-5deg) scale(1.1);
}
.service-card h4 { font-weight: 600; margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--gray-600); font-size: 15px; line-height: 1.8; }
.service-link {
    color: var(--primary-red); font-weight: 600;
    text-decoration: none; font-size: 15px;
}

/* ==================== JOURNEY SECTION ==================== */
.journey-section { padding: 80px 0; }
.journey-timeline { position: relative; max-width: 800px; margin: 50px auto 0; }
.journey-timeline::before {
    content: ''; position: absolute; top: 0; bottom: 0; right: 55px; width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-blue), var(--primary-red));
    opacity: 0.3;
}
.journey-step { display: flex; gap: 20px; margin-bottom: 40px; position: relative; }
.step-number {
    width: 60px; height: 60px; background: var(--white); color: var(--primary-red);
    border: 3px solid var(--primary-red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 22px; flex-shrink: 0; z-index: 1;
    transition: var(--transition); box-shadow: var(--shadow-md);
}
.journey-step:hover .step-number {
    background: var(--primary-red); color: white; transform: scale(1.1);
}
.step-content {
    background: var(--white); padding: 25px 30px; border-radius: var(--radius);
    box-shadow: var(--shadow-md); flex: 1; transition: var(--transition);
}
.journey-step:hover .step-content { box-shadow: var(--shadow-md); }
.step-content h4 { font-weight: 600; margin-bottom: 8px; }

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    padding: 80px 0; color: white; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: rotate 60s linear infinite;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.cta-banner h2 {
    font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.5rem);
    position: relative; z-index: 1;
}
.cta-banner p { opacity: 0.8; font-size: 1.1rem; position: relative; z-index: 1; }
.cta-buttons {
    display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;
    margin-top: 25px; position: relative; z-index: 1;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section { padding: 80px 0; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow-md); transition: var(--transition); height: 100%;
    border-right: 4px solid transparent;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-2px);
    border-right-color: var(--primary-red);
}
.testimonial-stars { margin-bottom: 15px; font-size: 18px; color: var(--gold); }
.testimonial-card p { color: var(--gray-600); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
    width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--gray-100);
}
.testimonial-author strong { display: block; font-weight: 600; }
.testimonial-author small { color: var(--gray-500); font-size: 12px; }

/* ==================== BLOG SECTION ==================== */
.blog-section { padding: 80px 0; background: var(--off-white); }
.blog-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-md); transition: var(--transition); height: 100%;
}
.blog-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-img { width: 100%; height: 220px; object-fit: cover; transition: 0.3s ease; }
.blog-card:hover .blog-img { transform: scale(1.02); }
.blog-content { padding: 22px; }
.blog-date { color: var(--gray-500); font-size: 14px; display: block; margin-bottom: 10px; }
.blog-content h4 { font-weight: 600; font-size: 18px; margin-bottom: 10px; line-height: 1.5; }
.blog-content p { color: var(--gray-600); font-size: 15px; line-height: 1.7; }
.blog-link {
    color: var(--primary-red); font-weight: 600;
    text-decoration: none; font-size: 15px;
}

/* ==================== FOOTER ==================== */
.footer-section {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );

    color: rgba(255,255,255,0.75);

    padding: 70px 0 25px;

    overflow: hidden;
}

/* Glow Effects */
.footer-section::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--primary-red),
            var(--gold),
            var(--primary-red)
        );
}

.footer-section::after {
    content: '';

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(255,255,255,0.03);

    bottom: -120px;
    left: -120px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo img {
    width: 58px;
    height: 58px;

    object-fit: cover;

    border-radius: 50%;

    background: white;

    padding: 3px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.footer-logo span { color: white; font-size: 22px; font-weight: 600; }
.footer-logo strong { color: var(--primary-red); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
    width: 42px; height: 42px; background: rgba(255,255,255,0.06);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; transition: var(--transition); text-decoration: none;
}
.social-links a:hover {
    background: var(--primary-red); transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196,30,58,0.18);
}
.footer-section h5 { color: white; font-weight: 600; margin-bottom: 22px; font-size: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255,255,255,0.6); text-decoration: none;
    transition: var(--transition-fast); display: inline-block;
}
.footer-links a:hover { color: var(--primary-red); transform: translateX(-5px); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.footer-contact i { color: var(--primary-red); width: 20px; text-align: center; font-size: 16px; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 50px; padding-top: 25px; font-size: 15px;
}

/* ==================== Footer HERO Elgazar==================== */
/* ==================== FLOATING BACKGROUND EFFECT ==================== */

.hero-section::before,
.page-hero::before {
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            rgba(255,255,255,0.08),
            transparent 70%
        );

    top: -200px;
    right: -150px;

    border-radius: 50%;

    animation: floatingGlow 8s ease-in-out infinite;

    z-index: 1;
}

.hero-section::after,
.page-hero::after {
    content: '';

    position: absolute;

    width: 350px;
    height: 350px;

    background:
        radial-gradient(
            rgba(255,255,255,0.05),
            transparent 70%
        );

    bottom: -120px;
    left: -120px;

    border-radius: 50%;

    animation: floatingGlow 10s ease-in-out infinite reverse;

    z-index: 1;
}

@keyframes floatingGlow {

    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(20px) translateX(10px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}
/* ==================== FOOTER ==================== */

.footer {
    position: relative;
    background: linear-gradient(
        135deg,
        #111827,
        #1f2937
    );
    color: rgba(255,255,255,0.8);
    padding-top: 80px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

.footer h4,
.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: white;
    padding-right: 5px;
}

.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer .social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding: 22px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}
/* ==================== PAGE HERO - FIXED ==================== */
.page-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #1a3a5c 50%, #c41e3a);
    padding: 140px 0 80px; /* علشان يبعد عن الـ navbar */
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,20,0.55);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 5;
}

/* Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;
}

/* Title */
.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.page-hero-subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 700px;
    margin: auto;
}
/* ==================== BUTTON RIPPLE EFFECT ==================== */

.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}
/* ==================== IMAGE OPTIMIZATION ==================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== CARD HOVER EFFECT ==================== */

.service-card,
.doctor-card,
.blog-card,
.faq-item {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover,
.doctor-card:hover,
.blog-card:hover,
.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
/* ==================== SCROLL PROGRESS BAR ==================== */

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-red),
        #ff6b81
    );
    z-index: 999999;
    transition: width 0.1s linear;
}

/* ==================== SERVICE DETAIL ==================== */
.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.service-detail-image:hover .service-img-main {
    transform: scale(1.05);
}
.service-detail-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.25), transparent);
}
.service-detail-image { position: relative; border-radius: var(--radius); overflow: hidden; }
.service-img-main {
    width: 100%;
    border-radius: 24px;
    transition: 0.5s ease;
}
.faq-item {
    background: white;
    border-radius: 18px;
    padding: 25px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.service-img-badge {
    position: absolute; top: 20px; right: 20px; background: var(--primary-red);
    color: white; padding: 10px 20px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 15px; box-shadow: var(--shadow-md);
}
.service-description { color: var(--gray-600); font-size: 1rem; line-height: 1.8; }
.treatment-steps { margin-top: 20px; }
.treatment-steps h5 { font-weight: 600; color: var(--gray-900); margin-bottom: 15px; }
.step-item {
    display: flex; gap: 15px; margin-bottom: 15px; padding: 15px;
    background: var(--gray-50); border-radius: var(--radius-sm);
    transition: var(--transition); border-right: 3px solid transparent;
}
.step-item:hover {
    border-right-color: var(--primary-red); background: var(--white);
    box-shadow: var(--shadow-md);
}
.step-dot {
    width: 35px; height: 35px; background: var(--primary-red); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 600; flex-shrink: 0; font-size: 15px;
}
.step-item strong { display: block; margin-bottom: 5px; color: var(--gray-900); }
.step-item p { margin: 0; font-size: 15px; color: var(--gray-600); }

/* ==================== FAQ ==================== */
.faq-section { padding: 80px 0; }
.accordion-item { border: none; margin-bottom: 15px; border-radius: var(--radius-sm) !important; overflow: hidden; box-shadow: var(--shadow-md); }
.accordion-button {
    font-weight: 600; font-size: 1rem; padding: 18px 25px;
    background: var(--white); color: var(--gray-900);
    box-shadow: none !important; border-radius: var(--radius-sm) !important;
}
.accordion-button:not(.collapsed) { background: var(--primary-red); color: white; }
.accordion-button i { color: var(--primary-red); }
.accordion-button:not(.collapsed) i { color: white; }
.accordion-body { padding: 20px 25px; color: var(--gray-600); line-height: 1.8; }

/* ==================== BOOKING SYSTEM ==================== */
.booking-section { padding: 80px 0; }
.stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; }
.step-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.step-circle {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--gray-200); color: var(--gray-600);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; transition: var(--transition);
}
.step-indicator.active .step-circle {
    background: var(--primary-red); color: white;
    box-shadow: 0 0 0 8px rgba(196,30,58,0.15);
}
.step-indicator.completed .step-circle { background: var(--success); color: white; }
.step-indicator span { font-size: 14px; font-weight: 600; color: var(--gray-600); }
.step-indicator.active span { color: var(--primary-red); }
.step-line { flex: 1; height: 3px; background: var(--gray-200); margin: 0 10px; margin-bottom: 25px; transition: var(--transition); }
.step-line.completed { background: var(--success); }
.booking-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 28px; overflow: hidden; }
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.step-title { font-weight: 600; margin-bottom: 8px; }
.step-desc { color: var(--gray-600); margin-bottom: 25px; }

.service-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-option-card {
    background: var(--gray-50); border: 2px solid transparent;
    border-radius: var(--radius-sm); padding: 20px; text-align: center;
    cursor: pointer; transition: var(--transition); position: relative;
}
.service-option-card:hover { border-color: var(--primary-red); }
.service-option-card.selected { border-color: var(--primary-red); background: rgba(196,30,58,0.04); }
.service-option-card .option-icon { font-size: 30px; color: var(--primary-red); margin-bottom: 10px; }
.service-option-card h5 { font-weight: 600; font-size: 16px; margin-bottom: 5px; }
.service-option-card p { font-size: 14px; color: var(--gray-600); margin: 0; }
.option-check {
    position: absolute; top: 10px; left: 10px; width: 25px; height: 25px;
    border-radius: 50%; background: var(--gray-300); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; transition: var(--transition);
}
.service-option-card.selected .option-check { background: var(--primary-red); }

.doctor-options { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.doctor-option-card {
    background: var(--gray-50); border: 2px solid transparent;
    border-radius: var(--radius-sm); padding: 15px; display: flex;
    align-items: center; gap: 15px; cursor: pointer; transition: var(--transition); position: relative;
}
.doctor-option-card:hover { border-color: var(--primary-red); }
.doctor-option-card.selected { border-color: var(--primary-red); background: rgba(196,30,58,0.04); }
.doctor-option-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.doctor-info h6 { font-weight: 600; margin-bottom: 3px; }
.doctor-info span { font-size: 14px; color: var(--gray-600); }
.doctor-rating { font-size: 12px; }

.confidential-check {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 15px; background: rgba(196,30,58,0.04);
    border-radius: var(--radius-sm); cursor: pointer; border: 1px solid var(--gray-200);
}
.confidential-check input { display: none; }
.confidential-check .checkmark {
    width: 22px; height: 22px; border: 2px solid var(--gray-400);
    border-radius: 5px; flex-shrink: 0; transition: var(--transition); margin-top: 2px;
}
.confidential-check input:checked + .checkmark { background: var(--primary-red); border-color: var(--primary-red); }

.consultation-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.consultation-card { cursor: pointer; }
.consultation-card input { display: none; }
.consult-card-content {
    padding: 15px; text-align: center; border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); transition: var(--transition);
}
.consult-card-content i { font-size: 28px; color: var(--primary-blue); margin-bottom: 8px; display: block; }
.consult-card-content h6 { font-weight: 600; margin-bottom: 3px; }
.consult-card-content span { font-size: 12px; color: var(--gray-600); }
.consultation-card input:checked + .consult-card-content { border-color: var(--primary-red); background: rgba(196,30,58,0.04); }

.booking-summary {
    background: var(--gray-50); padding: 20px; border-radius: var(--radius-sm);
    border-right: 4px solid var(--primary-red);
}
.booking-summary h6 { font-weight: 600; margin-bottom: 15px; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.summary-item { display: flex; justify-content: space-between; font-size: 15px; }
.summary-label { color: var(--gray-600); }
.summary-value { font-weight: 600; }

.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.payment-card { cursor: pointer; }
.payment-card input { display: none; }
.payment-card-content {
    padding: 15px; text-align: center; border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm); transition: var(--transition);
}
.payment-card-content span { font-weight: 600; font-size: 15px; }
.payment-card.selected .payment-card-content { border-color: var(--primary-red); background: rgba(196,30,58,0.04); }

.upload-area {
    border: 2px dashed var(--gray-300); border-radius: var(--radius-sm);
    padding: 30px; text-align: center; transition: var(--transition);
}
.upload-area.drag-over { border-color: var(--primary-red); background: rgba(196,30,58,0.04); }
.upload-placeholder i { color: var(--gray-400); margin-bottom: 10px; }
.upload-placeholder p { margin-bottom: 5px; }
.upload-placeholder span { color: var(--gray-400); font-size: 14px; display: block; margin-bottom: 10px; }
.upload-preview { position: relative; }
.upload-preview img { max-width: 100%; max-height: 200px; border-radius: var(--radius-sm); }
.upload-preview button { position: absolute; top: 10px; right: 10px; }

.agreement-check { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.agreement-check input { display: none; }
.agreement-check .checkmark { width: 20px; height: 20px; border: 2px solid var(--gray-400); border-radius: 5px; flex-shrink: 0; transition: var(--transition); }
.agreement-check input:checked + .checkmark { background: var(--success); border-color: var(--success); }
.agreement-check a { color: var(--primary-red); font-weight: 600; }

.step-navigation { display: flex; justify-content: space-between; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--gray-200); }

.success-animation { animation: scaleIn 0.5s ease; }
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.booking-number {
    font-size: 1.5rem; font-weight: 800; color: var(--primary-red);
    background: rgba(196,30,58,0.08); padding: 10px 25px;
    border-radius: var(--radius-full); display: inline-block; letter-spacing: 2px;
}

/* ==================== BLOG FULL PAGE ==================== */
.blog-full-section { padding: 80px 0; }
.blog-toolbar { margin-bottom: 30px; }
.search-box { position: relative; }
.search-box input { border-radius: var(--radius-full); padding: 12px 20px 12px 50px; border: 2px solid var(--gray-200); }
.search-box button { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); background: none; border: none; color: var(--gray-600); font-size: 18px; }
.blog-categories { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-btn {
    padding: 8px 18px; background: var(--gray-100); border-radius: var(--radius-full);
    color: var(--gray-600); text-decoration: none; font-weight: 600; font-size: 15px; transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active { background: var(--primary-red); color: white; }
.blog-card-full {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-md); transition: var(--transition); height: 100%;
}
.blog-card-full:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.blog-img-wrapper { position: relative; height: 200px; overflow: hidden; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card-full:hover .blog-img-wrapper img { transform: scale(1.02); }
.blog-category-tag {
    position: absolute; top: 15px; right: 15px; background: var(--primary-red);
    color: white; padding: 5px 15px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
}
.blog-card-content { padding: 20px; }
.blog-meta { display: flex; gap: 15px; margin-bottom: 10px; font-size: 14px; color: var(--gray-600); }
.blog-card-content h4 { font-weight: 600; font-size: 17px; margin-bottom: 10px; line-height: 1.5; }
.blog-card-content p { color: var(--gray-600); font-size: 15px; margin-bottom: 15px; }
.blog-author { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; padding-top: 15px; border-top: 1px solid var(--gray-200); }
.blog-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.blog-author strong { font-size: 15px; display: block; }
.blog-author small { font-size: 11px; color: var(--gray-600); }
.blog-read-more { color: var(--primary-red); font-weight: 600; text-decoration: none; font-size: 15px; transition: var(--transition); }
.blog-read-more:hover { padding-right: 5px; }
.blog-pagination { margin-top: 40px; }
.page-link {
    color: var(--gray-600); border: 2px solid var(--gray-200);
    margin: 0 3px; border-radius: 10px !important; font-weight: 600;
    padding: 10px 18px; transition: var(--transition);
}
.page-link:hover { background: var(--primary-red); color: white; border-color: var(--primary-red); }
.page-item.active .page-link { background: var(--primary-red); color: white; border-color: var(--primary-red); }

.newsletter-section { padding: 60px 0; }
.newsletter-card { background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red)); padding: 28px; border-radius: var(--radius); color: white; }
.newsletter-card h3 { font-weight: 600; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; border-radius: var(--radius-full); padding: 12px 20px; border: none; }

/* ==================== CONTACT PAGE ==================== */
.contact-section { padding: 80px 0; }
.contact-info-card {
    display: flex; gap: 15px; padding: 20px; background: var(--white);
    border-radius: var(--radius-sm); margin-bottom: 15px;
    box-shadow: var(--shadow-md); transition: var(--transition); border-right: 3px solid transparent;
}
.contact-info-card:hover { border-right-color: var(--primary-red); box-shadow: var(--shadow-md); }
.contact-icon {
    width: 50px; height: 50px; background: rgba(196,30,58,0.08);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--primary-red); flex-shrink: 0;
}
.contact-info-card h6 { font-weight: 600; margin-bottom: 5px; }
.contact-info-card a, .contact-info-card span { display: block; color: var(--gray-600); text-decoration: none; font-size: 15px; }
.contact-info-card a:hover { color: var(--primary-red); }
.emergency-banner {
    background: #FFF3CD; border: 2px solid #FFC107; border-radius: var(--radius-sm);
    padding: 20px; display: flex; gap: 15px; align-items: center;
}
.emergency-banner i { font-size: 30px; color: #FF6B00; flex-shrink: 0; }
.emergency-phone { font-size: 1.5rem; font-weight: 800; color: #FF6B00; text-decoration: none; display: inline-block; margin-top: 5px; }
.contact-form-card { background: var(--white); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.map-section { padding-bottom: 0; }
.map-wrapper { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { display: block; }

/* ==================== DIRECTORY & TEAM ==================== */
.director-section { padding: 80px 0; margin-top: -30px; position: relative; z-index: 5; }
.director-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.director-image-wrapper { position: relative; height: 100%; min-height: 400px; }
.director-img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.director-badge { position: absolute; bottom: 20px; right: 20px; background: var(--primary-red); color: white; padding: 8px 20px; border-radius: var(--radius-full); font-weight: 600; font-size: 15px; }
.director-content { padding: 28px; }
.director-name { font-size: 2rem; font-weight: 800; margin-bottom: 5px; }
.director-name span { color: var(--primary-red); }
.director-title { color: var(--primary-blue); font-weight: 600; font-size: 1.1rem; margin-bottom: 20px; }
.director-stats { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.director-stat { text-align: center; background: var(--gray-100); padding: 15px 20px; border-radius: var(--radius-sm); }
.director-stat .stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary-red); }
.director-stat .stat-lbl { font-size: 12px; color: var(--gray-600); }
.director-bio { color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.director-credentials { margin-bottom: 20px; }
.director-credentials h6 { font-weight: 600; margin-bottom: 12px; }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.credentials-grid span { font-size: 14px; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.credentials-grid i { color: var(--success); }
.director-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.team-filter-section { padding: 40px 0 0; }
.filter-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.filter-btn {
    padding: 12px 25px; border: 2px solid var(--gray-200); background: var(--white);
    border-radius: var(--radius-full); font-weight: 600; cursor: pointer;
    transition: var(--transition); color: var(--gray-600);
}
.filter-btn i { margin-left: 6px; }
.filter-btn:hover, .filter-btn.active { background: var(--primary-red); color: white; border-color: var(--primary-red); }

.team-grid-section { padding: 40px 0 80px; }
.team-item { transition: var(--transition); }
.team-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-md); transition: var(--transition); height: 100%;
}
.team-card:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.team-card-image { position: relative; overflow: hidden; height: 280px; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-card-image img { transform: scale(1.02); }
.team-card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(196,30,58,0.7); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition);
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-category-badge {
    position: absolute; top: 15px; right: 15px; background: var(--primary-red);
    color: white; padding: 5px 15px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
}
.team-card-body { padding: 20px; text-align: center; }
.team-rating { margin-bottom: 8px; font-size: 15px; }
.team-rating span { color: var(--gray-600); font-weight: 600; }
.team-card-body h4 { font-weight: 600; margin-bottom: 5px; }
.team-specialty { color: var(--primary-red); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.team-bio-short { color: var(--gray-600); font-size: 15px; margin-bottom: 15px; }
.team-card-actions { padding-top: 10px; border-top: 1px solid var(--gray-200); }

.doctor-admin-card {
    background: var(--gray-50); border-radius: var(--radius-sm);
    overflow: hidden; text-align: center; transition: var(--transition);
}
.doctor-admin-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.doctor-admin-card img { width: 100%; height: 180px; object-fit: cover; }
.doctor-admin-info { padding: 20px; }
.doctor-admin-info h6 { font-weight: 600; }
.doctor-admin-info span { font-size: 14px; color: var(--gray-600); }
.doctor-admin-rating { font-size: 14px; margin: 5px 0; }
.add-new-card { display: flex; align-items: center; justify-content: center; min-height: 280px; border: 2px dashed var(--gray-300); cursor: pointer; background: transparent; }
.add-new-card:hover { border-color: var(--primary-red); }
.add-new-content { text-align: center; color: var(--gray-600); }
.add-new-content i { color: var(--primary-red); margin-bottom: 10px; }


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    padding: 5px;
}

/* حجم كل كارت */
.team-card, .team-member {
    flex: 1 1 220px; /* حجم مبدئي لكل كارت */
    max-width: 250px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.team-card:hover, .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    background-color: #f9f9f9;
}

/* الصور داخل الكارت */
.team-card img, .team-member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #e53935; /* نفس لون شعار الموقع */
}

/* العناوين */
.team-member h3, .team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #CC0000;
    line-height: 1.4;
    margin: 10px 0 15px 0;
}

/* النصوص */
.team-member p, .team-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 10px;
}

/* زر الحجز */
.team-member a.btn, .team-card a.btn {
    margin-top: 10px;
    background-color: #e53935;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.team-member a.btn:hover, .team-card a.btn:hover {
    background-color: #cc0000;
}

/* حجم كل كارت */
.team-member {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* يوزع النصوص بشكل متساوي */
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 10px; /* مسافة داخلية متساوية */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px; /* نفس ارتفاع لكل الكروت */
    overflow: hidden; /* يمنع الكروت من التمدد لو النص طويل */
}

/* Hover effect */
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    background-color: #f9f9f9;
}

/* الصور */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #e53935;
}
/* العناوين والنصوص */
.team-member h3 {
    font-size: 18px;
    font-weight: 700;
    color: #CC0000;
    margin: 10px 0 10px 0;
}

/* النصوص */
.team-member p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 5px;
    text-align: center;
    overflow: hidden;
}
/* زر الحجز */
.team-member a.btn {
    margin-top: 10px;
    background-color: #e53935;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.team-member a.btn:hover {
    background-color: #cc0000;
}

/* Hover effect */
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Responsive للموبايل */
@media(max-width:768px){
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x grid */
        gap: 15px;
    }
    .team-member {
        height: auto; /* ارتفاع مرن على الموبايل */
        padding: 10px;
    }
    .team-member img {
        width: 100px;
        height: 100px;
    }
}
/* Dropdown menu */
.navbar-nav .dropdown-menu {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    min-width: 200px;
}
/* تأثير Hover و Active على الكروت */
.about-card {
    background: #fff;
    color: #0f172a;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.about-card:hover,
.about-card:active {
    transform: translateY(-8px);       /* يرفع الكارت شوية */
    box-shadow: 0 20px 35px rgba(0,0,0,0.2); /* يعطي عمق وظل أكبر */
    background-color: #f8f8f8;         /* لون خفيف عند Hover */
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Responsive للموبايل */
@media(max-width:768px){
    .about-card {
        margin-bottom: 20px;
    }
    .card-img {
        height: 180px;
    }
}
.card-img {
    width: 100%;       /* تغطي عرض الكارت بالكامل */
    height: 200px;     /* ارتفاع ثابت للمربع */
    object-fit: cover; /* الصورة تغطي بدون فراغ */
    border-radius: 10px; /* اختياري للحواف الدائرية */
    margin-bottom: 15px;
}
/* Dropdown items */
.navbar-nav .dropdown-item {
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}
/* نجعل اللون مظبوط بدون التأثير على Bootstrap */
.custom-dropdown-toggle {
    color: #fff; /* اللون اللي يناسب Navbar */
    text-decoration: none;
}
.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
@media(max-width:768px){
    .about-card { margin-bottom: 20px; }
}

.custom-dropdown-toggle:hover,
.custom-dropdown-toggle:focus {
    color: #e53935; /* لون عند Hover */
    text-decoration: none;
}

/* إزالة أي تأثير hover الذي يسبب مشاكل على الموبايل */
@media(max-width:991.98px){
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}
/* Hover effect فقط على الديسكتوب */
@media(min-width:992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: #e53935;
        color: #fff;
        transform: translateX(5px);
    }
}

/* الموبايل: الضغط فقط، بدون hover */
@media(max-width:991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: transparent;
        color: #333;
        transform: none;
    }
}
.team-member a.btn:hover {
    background-color: #d32f2f;
}
/* =========================
   SPACING SYSTEM
========================= */

section {
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

[class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
}
@media (max-width: 991px) {

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-features {
        gap: 20px;
    }

    .about-features,
    .credentials-grid,
    .doctor-options,
    .service-options,
    .consultation-types,
    .payment-methods {
        grid-template-columns: 1fr !important;
    }

    .step-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .step-navigation .btn {
        width: 100%;
    }

    .director-actions {
        flex-direction: column;
    }

    .director-actions .btn {
        width: 100%;
    }

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

    .newsletter-form .btn,
    .newsletter-form input {
        width: 100%;
    }

    .stats-section .col-6 {
        width: 50%;
    }
}
@media (max-width: 991px) {

    .navbar {
        background: rgba(255,255,255,0.96) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 15px rgba(0,0,0,0.06);
        padding: 10px 0;
    }

    .brand-text {
        color: var(--gray-900);
        font-size: 18px;
    }

    .navbar .nav-link {
        color: var(--gray-800) !important;
        padding: 12px !important;
        border-radius: 10px;
    }

    .navbar-collapse {
        background: white;
        margin-top: 12px;
        padding: 15px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
 .dropdown:hover .dropdown-menu {
        display: block;
    }
   .navbar .nav-link:hover {
    color: var(--primary-red) !important;
}

.navbar .nav-link.active-page {
    color: var(--primary-red) !important;
}

    .navbar .nav-link::after {
        display: none;
    }

    .lang-switch {
        background: var(--gray-100);
        margin-top: 10px;
        justify-content: center;
    }

    .lang-switch a {
        color: var(--gray-700);
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 22px;
        font-size: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

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

    .testimonial-card,
    .service-card,
    .blog-card,
    .team-card {
        margin-bottom: 20px;
    }
}
/* =========================
   PERFORMANCE OPTIMIZATION
========================= */

img {
    max-width: 100%;
    height: auto;
}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.service-card,
.blog-card,
.team-card,
.testimonial-card,
.stat-card {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
/* =========================
   GLOBAL UI POLISH
========================= */

a,
button,
.btn{
    transition: .3s ease;
}

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

img {
    display: block;
}
html{
   scroll-behavior:smooth;
}
button,
input,
textarea,
select {
    outline: none;
    box-shadow: none !important;
}

textarea {
    resize: none;
}

.card,
.service-card,
.blog-card,
.team-card,
.testimonial-card,
.stat-card,
.contact-form-card,
.booking-card {
    border-radius: var(--radius);
}

::selection {
    background: var(--primary-red);
    color: white;
}
/* =========================
   UNIFIED CARD SYSTEM
========================= */

.service-card,
.blog-card,
.blog-card-full,
.team-card,
.testimonial-card,
.stat-card,
.contact-info-card,
.booking-card,
.contact-form-card,
.director-card {

    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover,
.blog-card:hover,
.blog-card-full:hover,
.team-card:hover,
.testimonial-card:hover,
.stat-card:hover,
.contact-info-card:hover {

    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* توحيد الصور */

.blog-img,
.team-card-image img,
.blog-img-wrapper img {

    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Hover خفيف للصور */

.blog-card:hover .blog-img,
.team-card:hover .team-card-image img,
.blog-card-full:hover .blog-img-wrapper img {

    transform: scale(1.02);
}

/* توحيد الـ icons */

.service-icon,
.contact-icon {

    border-radius: var(--radius-sm);
}

/* تحسين النصوص */

.service-card p,
.blog-card p,
.testimonial-card p,
.team-card p {

    line-height: 1.8;
    color: var(--gray-600);
}
/* =========================
   TYPOGRAPHY SYSTEM
========================= */

body {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--gray-700);
}

/* العناوين */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-weight: 600;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: 15px;
}

/* Hero */

.hero-title {

    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

.hero-subtitle {

    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
}

/* Section Titles */

.section-title {

    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* الفقرات */

p {

    line-height: 1.8;
    margin-bottom: 15px;
}

/* الروابط */

a {

    text-decoration: none;
}

/* النصوص الصغيرة */

small {

    font-size: 14px;
    line-height: 1.6;
}

/* تحسين القراءة */

.hero-subtitle,
.section-subtitle,
.about-text,
.service-card p,
.blog-card p,
.testimonial-card p {

    max-width: 100%;
}
/* =========================
   BUTTON SYSTEM
========================= */
.btn-primary-custom {
    background: linear-gradient(135deg,#c41e3a,#8b0000);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(196,30,58,0.3);
}
section {
    position: relative;
    padding: 100px 0;
}
.btn,
.btn-primary-custom,
.btn-outline-custom {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 28px;

    border-radius: var(--radius-full);

    font-weight: 600;

    transition: var(--transition);

    cursor: pointer;
}

.btn-primary-custom {

    background: linear-gradient(
        135deg,
        var(--primary-red),
        var(--primary-dark-red)
    );

    color: white;

    border: none;

    box-shadow: 0 6px 18px rgba(196,30,58,0.18);
}

.btn-primary-custom:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(196,30,58,0.22);
}

.btn-outline-custom {

    border: 2px solid rgba(255,255,255,0.4);

    color: white;

    background: transparent;
}

.btn-outline-custom:hover {

    background: white;

    color: var(--primary-red);

    transform: translateY(-2px);
}
@media (max-width: 768px) {

    .contact-section {

        margin-bottom: 20px !important;
        padding-bottom: 20px !important;

    }

    .stats-section {

        margin-top: 0 !important;
        padding-top: 10px !important;

    }

}
/* =========================
   FOOTER SYSTEM
========================= */
@media(max-width:768px){

    .hero-section{
        min-height: auto;
        padding: 140px 0 90px;
    }

    .hero-title{
        font-size: 2rem;
        line-height: 1.5;
    }

    .page-hero-title{
        font-size: 2rem;
    }

}
/* ==================== SMOOTH GLOBAL EFFECTS ==================== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* تحسين التحديد */
::selection {
    background: var(--primary-red);
    color: white;
}

/* تحسين الـ scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--primary-red),
        #ff6b81
    );
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-red);
}
body{
   font-family: 'Cairo', sans-serif;
}
body {
    background: var(--off-white);
    color: var(--gray-800);
}
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}
@media (max-width: 768px) {

    .chat-box {

        bottom: 120px !important;
        right: 15px !important;

        width: calc(100% - 30px) !important;

        max-width: 350px;

        z-index: 99999;

    }


	 .hero-section { padding-top: 100px; }
    .page-hero-title { font-size: 1.8rem; }
    .page-hero-subtitle { font-size: 0.95rem; }
	.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s ease;
}
   .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn-primary-custom, .btn-outline-custom { width: 100%; max-width: 280px; }
    .hero-features { flex-direction: column; gap: 15px; margin-top: 30px; }
	    .services-hero-section .hero-title { font-size: 1.8rem; }
    .services-hero-section .hero-subtitle { font-size: 0.95rem; }
    .services-hero-section .hero-buttons { flex-direction: column; gap: 10px; }
    .services-hero-section .btn-primary-custom,
    .services-hero-section .btn-outline-custom { width: 100%; max-width: 280px; }
    .services-hero-section .hero-features { flex-direction: column; gap: 10px; }
	 .page-hero {
        min-height: 55vh;
        padding: 120px 15px 60px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 14px;
        padding: 8px 18px;
    }
	  section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
	  .hero-title {
        font-size: 1.9rem;
        line-height: 1.5;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-feature-item {
        font-size: 14px;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .booking-card,
    .contact-form-card,
    .director-content {
        padding: 20px;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .chat-box {
        width: calc(100vw - 20px);
        left: 10px;
        right: 10px;
    }
	 body {
        font-size: 15px;
    }

    .hero-title {
        line-height: 1.5;
    }

    .section-title {
        line-height: 1.5;
    }

    p {
        line-height: 1.9;
    }

}
/* للموبايل */
