/* =============================================
   يد الشفاء للحجامة - Main Stylesheet
   Font: Cairo (Arabic)
   Direction: RTL
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:      #3DBBB3;
    --primary-dark: #2D9A93;
    --primary-light:#70CFCA;
    --secondary:    #CC2929;
    --secondary-dark:#A81F1F;
    --accent:       #3DBBB3;
    --dark:         #1a1a2e;
    --dark2:        #2c2c3e;
    --text:         #444;
    --text-light:   #777;
    --border:       #e0e0e0;
    --bg-light:     #EEF9F8;
    --bg-white:     #ffffff;
    --white:        #ffffff;
    --shadow:       0 4px 24px rgba(61,187,179,.12);
    --shadow-lg:    0 12px 40px rgba(61,187,179,.18);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   .3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-white);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61,187,179,.35);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* --- Section Heading --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
    display: inline-block;
    background: rgba(61,187,179,.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 14px;
}
.section-title span { color: var(--primary); }
.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to left, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin: 14px auto 0;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    padding: 9px 0;
}
.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.top-bar a {
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar a:hover { color: var(--white); }
.top-bar span { display: flex; align-items: center; gap: 6px; }
.social-links { display: flex; gap: 8px; }
.social-links a {
    width: 28px; height: 28px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}
.social-links a:hover { background: var(--secondary); color: var(--white); }

/* --- Header / Navbar --- */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
    transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.14); }
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 22px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; text-align: right; }
.logo-name { font-size: 19px; font-weight: 800; color: var(--primary-dark); }
.logo-sub  { font-size: 11px; color: var(--text-light); font-weight: 500; }

.navbar { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(61,187,179,.07);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.nav-link i { font-size: 10px; transition: var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
    border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}
.dropdown-menu a i {
    width: 28px; height: 28px;
    background: rgba(61,187,179,.1);
    color: var(--primary);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    transition: var(--transition);
    min-width: 28px;
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }
.dropdown-menu a:hover i { background: var(--primary); color: var(--white); }

.header-btn { display: flex; }
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle span {
    width: 24px; height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.mobile-overlay.active { display: block; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d2e2d 0%, #1A3635 40%, #2D9A93 70%, #3DBBB3 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(61,187,179,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(204,41,41,.1) 0%, transparent 40%);
}
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
}
.hero-shapes .shape-1 { width:500px; height:500px; background: var(--primary-light); top:-150px; left:-100px; }
.hero-shapes .shape-2 { width:300px; height:300px; background: var(--secondary); bottom:-80px; right:-80px; }
.hero-shapes .shape-3 { width:200px; height:200px; background: var(--white); top:40%; left:40%; }

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    direction: rtl;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--secondary); }
.hero-title {
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 22px;
}
.hero-title span { color: #7dd8d4; }
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.82);
    margin-bottom: 36px;
    line-height: 1.85;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat-num {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Hero card */
.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-img-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    max-width: 360px;
    width: 100%;
}
.hero-img-icon {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--secondary), #E57373);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 12px 40px rgba(204,41,41,.4);
}
.hero-img-card h3 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.hero-img-card p  { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 22px; line-height: 1.7; }
.hero-services-mini { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hero-services-mini span {
    background: rgba(255,255,255,.15);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.2);
}
.float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatAnim 3s ease-in-out infinite;
    white-space: nowrap;
}
.float-badge-1 { top: -20px; right: -20px; animation-delay: 0s; }
.float-badge-2 { bottom: -20px; left: -20px; animation-delay: 1.5s; }
.float-badge i { color: var(--primary); font-size: 18px; }
.float-badge span { font-size: 13px; font-weight: 700; color: var(--dark); }
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
/* Women-only badge */
.hero-women-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204,41,41,.2);
    border: 1px solid rgba(204,41,41,.4);
    color: #ffcdd2;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services { padding: 100px 0; background: var(--bg-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(61,187,179,.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); transform: scale(1.1); }
.service-card h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; }
.service-card .btn { margin: 0 auto; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about { padding: 100px 0; background: var(--bg-light); }
.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    direction: rtl;
}
.about-img { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-placeholder { text-align: center; color: rgba(255,255,255,.8); }
.about-img-placeholder i { font-size: 80px; margin-bottom: 16px; display: block; }
.about-img-placeholder p { font-size: 20px; font-weight: 700; }
.about-exp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-exp-badge .num { font-size: 38px; font-weight: 900; line-height: 1; display: block; }
.about-exp-badge .text { font-size: 12px; font-weight: 700; }
.about-cert {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}
.about-cert i { font-size: 22px; color: var(--primary); }
.about-cert span { font-size: 13px; font-weight: 700; color: var(--dark); }

.about-content .section-header { text-align: right; }
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; }
.about-feature-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(61,187,179,.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 16px;
}
.about-feature-text { text-align: right; }
.about-feature-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.about-feature-text p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }
.about-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================
   STATS SECTION
   ========================================= */
.stats { padding: 80px 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.stat-item { text-align: center; }
.stat-icon { font-size: 34px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.stat-num { font-size: 44px; font-weight: 900; color: var(--white); display: block; line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 8px; font-weight: 600; }

/* =========================================
   TIPS SECTION (قبل/بعد الجلسة)
   ========================================= */
.tips-section { padding: 100px 0; background: var(--bg-white); }
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.tips-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
}
.tips-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.tips-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}
.tips-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.tips-card-icon.before-icon { background: rgba(61,187,179,.12); color: var(--primary); }
.tips-card-icon.after-icon  { background: rgba(204,41,41,.1);    color: var(--secondary); }
.tips-card-header h3 { font-size: 20px; font-weight: 800; color: var(--dark); }
.tips-list { display: flex; flex-direction: column; gap: 12px; }
.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
}
.tips-list li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; font-size: 13px; }
.tips-list.after-tips li i { color: var(--secondary); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { padding: 100px 0; background: var(--bg-light); }
.testimonials-swiper { overflow: hidden; padding: 20px 10px 50px; }
.swiper-testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border: 1px solid var(--border);
    height: auto;
}
.testimonial-quote { font-size: 42px; color: var(--primary); opacity: .2; line-height: 1; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.testimonial-role { font-size: 12px; color: var(--text-light); }
.testimonial-stars { margin-right: auto; color: #ffc107; font-size: 13px; letter-spacing: 1px; }
.swiper-pagination-bullet { background: var(--primary); }
.swiper-pagination-bullet-active { background: var(--primary-dark); transform: scale(1.3); }

/* =========================================
   BLOG SECTION
   ========================================= */
.blog { padding: 100px 0; background: var(--bg-white); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    margin-bottom: 48px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
    color: rgba(255,255,255,.4);
    position: relative;
    overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--secondary);
    color: var(--white);
    font-size: 11px; font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.blog-content { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.blog-meta i { color: var(--primary); }
.blog-title {
    font-size: 16px; font-weight: 800; color: var(--dark);
    margin-bottom: 10px; line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: 13.5px; color: var(--text-light);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.65;
}
.blog-read-more {
    color: var(--primary); font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
}
.blog-read-more:hover { gap: 10px; }
.blog-center { text-align: center; }

/* =========================================
   CTA SECTION
   ========================================= */
.randevu-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #43a047 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.randevu-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.randevu-cta .container { position: relative; z-index: 1; }
.randevu-cta-icon {
    width: 90px; height: 90px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-size: 36px; color: var(--white);
    border: 2px solid rgba(255,255,255,.3);
}
.randevu-cta h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.randevu-cta p  { font-size: 17px; color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }
.randevu-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact { padding: 100px 0; background: var(--bg-light); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.contact-info-icon {
    width: 46px; height: 46px; min-width: 46px;
    background: rgba(61,187,179,.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 18px;
}
.contact-info-details { text-align: right; }
.contact-info-details h4 { font-size: 13px; font-weight: 700; color: var(--text-light); margin-bottom: 4px; }
.contact-info-details p, .contact-info-details a { font-size: 15px; font-weight: 700; color: var(--dark); }
.contact-info-details a:hover { color: var(--primary); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

/* =========================================
   FORMS
   ========================================= */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-label .required { color: var(--secondary-dark); }
.form-control {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
    text-align: right;
    direction: rtl;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(61,187,179,.1); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 20px;
    padding-left: 42px;
}
.form-submit { width: 100%; }

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px; font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #E0F5F4; color: #2D9A93; border-right: 4px solid var(--primary); }
.alert-error   { background: #ffebee; color: #c62828; border-right: 4px solid #e53935; }
.alert-info    { background: #e3f2fd; color: #1565c0; border-right: 4px solid #1e88e5; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--dark); color: rgba(255,255,255,.8); direction: rtl; }
.footer-top { padding: 80px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px; font-weight: 800; color: var(--white);
    margin-bottom: 18px;
}
.footer-logo i {
    width: 40px; height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--white);
}
.footer-desc { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: rgba(255,255,255,.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-title {
    font-size: 16px; font-weight: 800; color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 36px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px; color: rgba(255,255,255,.6);
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-links a i { font-size: 11px; color: var(--primary); }
.footer-links a:hover { color: var(--white); gap: 12px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255,255,255,.65);
}
.footer-contact i {
    width: 32px; height: 32px;
    background: rgba(61,187,179,.25);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light); font-size: 14px;
    flex-shrink: 0;
}
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--white); }
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px; font-weight: 700;
    transition: var(--transition);
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-content strong { color: rgba(255,255,255,.7); }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 100px; left: 24px; right: auto;
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0; visibility: hidden;
    z-index: 997;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

.whatsapp-float {
    position: fixed;
    bottom: 36px; right: 20px; left: auto;
    background: #25d366;
    color: var(--white);
    border-radius: 50px;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px 12px 14px;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: var(--transition);
    z-index: 997;
}
.whatsapp-float i { font-size: 22px; }
.whatsapp-float:hover { background: #1ebe5d; transform: translateY(-3px); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(26px, 5vw, 44px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.8); margin: 0 auto 20px; max-width: 550px; line-height: 1.75; }
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: #ffd180; font-weight: 700; }
.breadcrumb i { font-size: 10px; }

/* =========================================
   APPOINTMENT PAGE
   ========================================= */
.randevu-section { padding: 80px 0; }
.randevu-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: start;
}
.randevu-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.randevu-form-card h2 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.randevu-form-card > p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.randevu-info-col { display: flex; flex-direction: column; gap: 20px; }
.randevu-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
}
.randevu-info-card h3 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.randevu-info-card h3 i { color: var(--primary); }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
}
.hours-list li:last-child { border: none; }
.hours-list .day  { color: var(--text); font-weight: 600; }
.hours-list .time { color: var(--primary); font-weight: 700; }
.hours-list .closed { color: #e53935; font-weight: 700; }

/* =========================================
   BLOG PAGES
   ========================================= */
.blog-section { padding: 80px 0; }
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.blog-post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 28px;
    transition: var(--transition);
}
.blog-post-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.blog-sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.blog-sidebar-card h4 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.sidebar-post {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}
.sidebar-post img, .sidebar-post-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    flex-shrink: 0;
    object-fit: cover;
}
.sidebar-post-icon {
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 20px;
}
.sidebar-post-text h5 { font-size: 13.5px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 4px; }
.sidebar-post-text span { font-size: 12px; color: var(--text-light); }

/* Blog detail */
.blog-detail-content { font-size: 15px; line-height: 1.9; color: var(--text); }
.blog-detail-content h2, .blog-detail-content h3 { color: var(--dark); font-weight: 800; margin: 24px 0 12px; }
.blog-detail-content p  { margin-bottom: 16px; }
.blog-detail-content ul { padding-right: 20px; margin-bottom: 16px; }
.blog-detail-content ul li { margin-bottom: 8px; list-style: disc; }

/* =========================================
   SERVICES DETAIL PAGE
   ========================================= */
.service-detail-section { padding: 80px 0; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.service-detail-icon-big {
    width: 90px; height: 90px;
    border-radius: 20px;
    background: rgba(61,187,179,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--primary);
    margin-bottom: 24px;
}
.service-detail-card h2 { font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.service-detail-card .meta {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 28px; font-size: 13px; color: var(--text-light);
}
.service-detail-card .meta span { display: flex; align-items: center; gap: 6px; }
.service-detail-card .meta i { color: var(--primary); }
.service-sidebar-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    color: var(--white);
    margin-bottom: 24px;
}
.service-sidebar-cta h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.service-sidebar-cta p  { font-size: 14px; opacity: .85; margin-bottom: 20px; line-height: 1.7; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-page-section { padding: 80px 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); transform: translateY(-4px); }
.value-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(61,187,179,.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px; color: var(--primary);
}
.value-card h4 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.value-card p  { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.py-section { padding: 100px 0; }
.bg-light { background: var(--bg-light) !important; }

/* Women only notice */
.women-only-notice {
    background: linear-gradient(135deg, rgba(204,41,41,.06), rgba(204,41,41,.02));
    border: 1px solid rgba(204,41,41,.2);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 20px;
}
.women-only-notice i { font-size: 20px; flex-shrink: 0; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stats-grid  { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .about .container { grid-template-columns: 1fr; gap: 50px; }
    .about-img-main   { height: 320px; }
    .contact-grid     { grid-template-columns: 1fr; }
    .randevu-grid     { grid-template-columns: 1fr; }
    .hero .container  { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap  { display: none; }
    .tips-grid        { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar .container { justify-content: center; }
    .top-bar-left { display: none; }
    .header .container { height: 64px; }
    .navbar {
        position: fixed;
        top: 0; right: -100%;
        width: 290px; height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 30px rgba(0,0,0,.15);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 40px;
        z-index: 999;
        transition: var(--transition);
        overflow-y: auto;
    }
    .navbar.open { right: 0; }
    .nav-list { flex-direction: column; width: 100%; gap: 2px; align-items: flex-start; }
    .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--radius); justify-content: flex-start; }
    .has-dropdown { width: 100%; }
    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        box-shadow: none; border: none;
        background: var(--bg-light);
        margin-top: 4px; padding: 8px;
        border-radius: var(--radius);
    }
    .mobile-toggle { display: flex; z-index: 1001; }
    .header-btn { display: none; }
    .hero { padding: 80px 0 60px; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col:nth-child(2), .footer-col:nth-child(3) { display: none; }
    .contact-form-card  { padding: 28px 20px; }
    .randevu-form-card  { padding: 28px 20px; }
    .service-detail-card { padding: 28px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 14px; }
    .randevu-cta-actions { flex-direction: column; align-items: center; }
}
