body {
    background: #f5f5f7;
}

html[lang="ar"] {
    direction: rtl;
    text-align: right;
}

/* =====================================
   REPRO IVF - SINGLE POST DESIGN
====================================== */

/* Article Container */
.single-post article.post {
    max-width: 900px;
    margin: 50px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* Post Title */
.single-post .entry-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f3c88; /* medical blue */
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Content Area */
.single-post .entry-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    font-family: "Poppins", "Segoe UI", sans-serif;
}

/* Headings */
.single-post .entry-content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #1f3c88;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 5px solid #7abf43;
}

.single-post .entry-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f3c88;
    margin-top: 30px;
}

.single-post .entry-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
}

/* Paragraph spacing */
.single-post .entry-content p {
    margin-bottom: 18px;
}

/* Lists */
.single-post .entry-content ul,
.single-post .entry-content ol {
    margin: 20px 0 20px 25px;
}

.single-post .entry-content ul li {
    margin-bottom: 10px;
}

.single-post .entry-content ul li::marker {
    color: #7abf43;
}

/* Links */
.single-post .entry-content a {
    color: #1f3c88;
    font-weight: 500;
    text-decoration: none;
}

.single-post .entry-content a:hover {
    color: #7abf43;
    text-decoration: underline;
}

/* Highlight Box */
.single-post .entry-content .highlight-box {
    background: #f4f9ff;
    border-left: 5px solid #7abf43;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

/* Blockquote */
.single-post .entry-content blockquote {
    background: #f9fafc;
    border-left: 5px solid #1f3c88;
    padding: 20px;
    font-style: italic;
    margin: 30px 0;
    border-radius: 6px;
}

/* Images */
.single-post .entry-content img {
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Horizontal line */
.single-post .entry-content hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #e3e3e3;
}

/* Responsive */
@media (max-width: 768px) {

    .single-post article.post {
        padding: 25px;
        margin: 25px 15px;
    }

    .single-post .entry-title {
        font-size: 26px;
    }

    .single-post .entry-content {
        font-size: 16px;
    }

}

.single-post {
    background: #f6f8fb;
}

.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.page-title,
.repro-page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Department cards hover */
.repro-card,
.repro-department-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.repro-card:hover,
.repro-department-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

.repro-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  .repro-site-header.is-sticky {
    transform: translateY(0);
  }

/* ---------------------------------------
   Single Doctor Layout
   --------------------------------------- */

   .repro-single-doctor {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px 80px;
    font-family: inherit;
}

/* Hero section: photo + info */
.repro-single-doctor__hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.repro-single-doctor__photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    object-fit: cover;
}

/* Head info */
.repro-single-doctor__head {
    position: relative;
}

.repro-single-doctor__name {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 700;
}

.repro-single-doctor__spec {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 500;
    color: #7a7a7a;
}

.repro-single-doctor__location {
    margin: 0 0 16px;
    font-size: 15px;
    color: #555;
}

/* Meta line: phone + years + governorate */
.repro-single-doctor__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #444;
}

.repro-single-doctor__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f5f3ff;
}

/* Rating (stars) */
.repro-single-doctor__rating {
    font-size: 20px;
    color: #8b5cf6; /* purple-ish */
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Biography text */
.repro-single-doctor__bio {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* Sections (Education & Work) */
.repro-single-doctor__section {
    margin-bottom: 40px;
}

.repro-single-doctor__section h2 {
    font-size: 22px;
    margin: 0 0 18px;
    font-weight: 700;
}

/* Timeline list */
.repro-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid rgba(139, 92, 246, 0.35);
}

.repro-timeline__item {
    position: relative;
    padding: 0 0 18px 24px;
    margin-bottom: 10px;
}

.repro-timeline__item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #8b5cf6;
    box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.18);
}

.repro-timeline__item h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}

.repro-timeline__place {
    margin: 0 0 4px;
    font-size: 13px;
    color: #666;
}

.repro-timeline__text {
    margin: 0;
    font-size: 13px;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .repro-single-doctor {
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .repro-single-doctor__hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .repro-single-doctor__photo img {
        max-width: 420px;
        margin-inline: auto;
    }
}

@media (max-width: 600px) {
    .repro-single-doctor__name {
        font-size: 26px;
    }

    .repro-single-doctor__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------------------------------------
   Doctors Archive Grid
   --------------------------------------- */

   .repro-archive-doctors {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px 80px;
}

.repro-archive-doctors__header {
    text-align: center;
    margin-bottom: 40px;
}

.repro-archive-doctors__title {
    font-size: 32px;
    margin: 0 0 8px;
    font-weight: 700;
}

.repro-archive-doctors__subtitle {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.repro-archive-doctors__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.repro-doctor-card {
    background: #ffffff;
    /* border-radius: 18px; */
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.repro-doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
}

.repro-doctor-card__thumb img,
.repro-doctor-card__thumb--placeholder {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.repro-doctor-card__thumb--placeholder {
    background: linear-gradient(135deg, #a855f7, #06b6d4);
}

.repro-doctor-card__body {
    padding: 18px 18px 20px;
}

.repro-doctor-card__name {
    margin: 0 0 6px;
    font-size: 18px;
}

.repro-doctor-card__name a {
    text-decoration: none;
    color: inherit;
}

.repro-doctor-card__name a:hover {
    text-decoration: underline;
}

.repro-doctor-card__spec {
    margin: 0 0 8px;
    font-size: 14px;
    color: #7a7a7a;
}

.repro-doctor-card__location {
    margin: 0 0 10px;
    font-size: 13px;
    color: #555;
}

.repro-doctor-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
}

.repro-doctor-card__meta span {
    padding: 3px 8px;
    border-radius: 999px;
    background: #f5f3ff;
}

.repro-doctor-card__rating {
    font-size: 16px;
    color: #8b5cf6;
}

/* Pagination */
.repro-archive-doctors__pagination {
    margin-top: 36px;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .repro-archive-doctors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .repro-archive-doctors {
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .repro-archive-doctors__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.repro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.repro-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.repro-grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.repro-grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.repro-doctor-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.repro-doctor-card__body {
  margin-top: 16px;
}

.repro-doctor-card__name {
  font-size: 20px;
  margin: 0 0 4px;
}

.repro-doctor-card__spec,
.repro-doctor-card__location,
.repro-doctor-card__phone {
  margin: 0 0 4px;
  font-size: 14px;
  opacity: .85;
}

.repro-doctor-card__rating {
  margin-top: 8px;
  font-size: 16px;
  color: #7b5cff;
}

/* ===== Doctors grid ===== */

.repro-grid {
    display: grid;
    gap: 32px;
    align-items: stretch;
}

.repro-grid--cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.repro-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.repro-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.repro-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Responsive */
@media (max-width: 991px) {
    .repro-grid--cols-3,
    .repro-grid--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .repro-grid--cols-2,
    .repro-grid--cols-3,
    .repro-grid--cols-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.repro-doctor-card {
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.repro-doctor-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.repro-doctor-card__photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.repro-doctor-card__body {
    padding: 20px 22px 22px;
}

.repro-doctor-card__name {
    font-size: 20px;
    margin: 0 0 4px;
    font-weight: 600;
}

.repro-doctor-card__spec {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 6px;
}

.repro-doctor-card__location,
.repro-doctor-card__years,
.repro-doctor-card__gov {
    font-size: 13px;
    color: #475569;
    margin: 0 0 4px;
}

.repro-doctor-card__rating {
    margin-top: 8px;
    font-size: 16px;
}

.repro-star {
    opacity: 0.35;
}

.repro-star.is-full {
    opacity: 1;
    color: #7c3aed;
}

/* ===== Departments grid ===== */

.repro-departments-grid {
    margin-top: 24px;
}

.repro-department-card {
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.repro-department-card__inner {
    display: block;
    padding: 22px 24px;
    text-decoration: none;
    color: inherit;
}

.repro-department-card__name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.repro-department-card__excerpt {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.repro-single-department {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px 80px;
}

.repro-single-department__head {
    margin-bottom: 30px;
}

.repro-single-department__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
}

.repro-single-department__subtitle {
    font-size: 16px;
    color: #777;
    margin: 0;
}

.repro-single-department__content {
    font-size: 16px;
    line-height: 1.8;
}

.repro-single-department__doctors {
    margin-top: 50px;
}

.repro-single-department__doctors h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.repro-doctor-grid--cols-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

@media (max-width: 900px) {
    .repro-doctor-grid--cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .repro-doctor-grid--cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Departments grid */
.repro-dept-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.repro-dept-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.repro-dept-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.repro-dept-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .repro-dept-grid--cols-3,
    .repro-dept-grid--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .repro-dept-grid--cols-2,
    .repro-dept-grid--cols-3,
    .repro-dept-grid--cols-4 {
        grid-template-columns: 1fr;
    }
}

.repro-dept-card {
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    background: #fff;
    overflow: hidden;
}

.repro-dept-card_inner {
    display: block;
    padding: 24px 28px;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.repro-dept-card_inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.repro-dept-card_title {
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
}

.repro-dept-card_excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.repro-doctors-grid-wrapper {
    margin-top: 30px;
}

.repro-doctor-filter {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f7f7fb;
}

.repro-doctor-filter label {
    font-weight: 600;
    font-size: 14px;
}

.repro-doctor-filter select {
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 6px 8px;
    outline: none;
    min-width: 180px;
}

/* ========== Doctors Grid ========== */

.repro-doctors-grid-wrapper {
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 15px;
}

.repro-doctor-filter {
    margin-bottom: 30px;
    text-align: right;
}

.repro-doctor-filter label {
    margin-inline-end: 10px;
    font-weight: 600;
}

.repro-doctor-filter select {
    min-width: 220px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #ddd;
    outline: none;
}

/* Grid */

.repro-doctor-grid {
    display: grid;
    grid-gap: 30px;
}

/* desktop columns */
.repro-doctor-grid.repro-doctor-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.repro-doctor-grid.repro-doctor-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* mobile */
@media (max-width: 900px) {
    .repro-doctor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .repro-doctor-grid { grid-template-columns: 1fr; }
}

/* Card */

.repro-doctor-card {
    list-style: none;
}

.repro-doctor-card_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;   
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.repro-doctor-card_inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
}

/* Photo */

.repro-doctor-card_photo img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Body */

.repro-doctor-card_body {
    padding: 18px 24px 22px;
}

.repro-doctor-card_name {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3d1365; /* clinic purple */
}

.repro-doctor-card_spec {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: #999;
}

.repro-doctor-card_location {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: #555;
}

.repro-doctor-card_rating {
    margin: 0;
    color: #7a2bd7; /* star color */
    letter-spacing: 1px;
    font-size: 0.95rem;
}

/* ========== Single Doctor ========== */

.repro-single-doctor__hero {
    max-width: 1200px;
    margin: 50px auto 60px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    grid-gap: 50px;
    align-items: center;
}

@media (max-width: 900px) {
    .repro-single-doctor__hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* photo */

.repro-single-doctor__photo img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

/* head */

.repro-single-doctor__head h1.repro-single-doctor__name {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #3d1365;
}

.repro-single-doctor__spec {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #999;
}

.repro-single-doctor__location {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #555;
}

.repro-single-doctor__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.repro-single-doctor__meta span {
    padding: 4px 12px;
    border-radius: 999px;
    background: #f4efff;
    color: #3d1365;
}

.repro-single-doctor__rating {
    font-size: 1.1rem;
    color: #7a2bd7;
}

/* bio */

.repro-single-doctor__bio {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

/* timeline sections */

.repro-single-doctor__section {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.repro-single-doctor__section h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #3d1365;
}

.repro-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-inline-start: 2px solid #eee;
}

.repro-timeline__item {
    position: relative;
    padding: 0 0 18px 24px;
}

.repro-timeline__item::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7a2bd7;
}

.repro-timeline__item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
}

.repro-timeline__place {
    margin: 0 0 2px;
    font-size: 0.95rem;
    color: #666;
}

.repro-timeline__text {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* =========================
   Departments grid
   ========================= */

   .repro-departments-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.repro-departments-grid {
    display: grid;
    grid-gap: 32px;
}

.repro-departments-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.repro-departments-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .repro-departments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .repro-departments-grid {
        grid-template-columns: 1fr;
    }
}

.repro-department-card {
    position: relative;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.repro-department-card_inner {
    display: block;
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.repro-department-card:hover .repro-department-card_inner {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
}

.repro-department-card_title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #2b173d; /* قريب من البنفسجي الداكن في اللايف */
}

.repro-department-card_excerpt {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.repro-department-card_link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #8a2be2; /* بنفسجي */
}

.repro-department-card_link::after {
    content: '›';
    margin-left: 6px;
    font-size: 16px;
}

/* ---------------------------------
   Home layout
----------------------------------*/

.repro-home {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 40px 20px 80px;
}

/* Hero */

.repro-home-hero {
    padding: 60px 20px;
    margin-bottom: 40px;
}

.repro-home-hero__inner {
    max-width: 700px;
}

.repro-home-hero__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.repro-home-hero__subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.repro-home-hero__cta {
    display: flex;
    gap: 12px;
}

/* Buttons */

.repro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.repro-btn--primary {
    background: #6c2bd9;
    color: #fff;
    box-shadow: 0 18px 65px rgba(108, 43, 217, 0.35);
}

.repro-btn--primary:hover {
    background: #581fb7;
}

.repro-btn--ghost {
    background: #fff;
    color: #6c2bd9;
    border-color: #e0d5ff;
}

.repro-btn--ghost:hover {
    background: #f5f1ff;
}

/* Sections */

.repro-home-section {
    margin-bottom: 50px;
}

.repro-home-section__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.repro-home-section__head h2 {
    font-size: 22px;
    font-weight: 700;
}

.repro-home-section__link {
    font-size: 14px;
    text-decoration: none;
    color: #6c2bd9;
}

.repro-home-section__link:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 768px) {
    .repro-home {
        padding: 30px 16px 60px;
    }

    .repro-home-hero__title {
        font-size: 28px;
    }

    .repro-home-hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== Global Layout Shell ========== */

.repro-site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f9fafb;
}

.repro-site-main {
    flex: 1 0 auto;
}

.repro-site-footer {
    flex-shrink: 0;
}

/* ========== Header ========== */

.repro-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.repro-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.repro-header-brand {
    flex: 0 0 auto;
}

.repro-logo-link img {
    max-height: 40px;
    width: auto;
}

.repro-site-title {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: #1e293b;
    text-decoration: none;
}

.repro-header-nav {
    flex: 1 1 auto;
}

.repro-main-menu {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.repro-main-menu li {
    position: relative;
}

.repro-main-menu a {
    display: inline-block;
    padding: 4px 0;
    font-size: 14px;
    text-decoration: none;
    color: #0f172a;
}

.repro-main-menu a:hover,
.repro-main-menu .current-menu-item > a {
    color: #7b3aed; /* بنفسجي قريب من الموقع اللايف */
}

/* ========== Header actions ========== */

.repro-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.repro-lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
}

.repro-btn {
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 13px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.3;
    transition: all 0.18s ease-in-out;
    white-space: nowrap;
}

.repro-btn--primary {
    background: #7b3aed;
    color: #fff;
    border-color: #7b3aed;
}

.repro-btn--primary:hover {
    background: #6d28d9;
    border-color: #6d28d9;
}

.repro-btn--outline {
    background: #ffffff;
    color: #7b3aed;
    border-color: #e5e7eb;
}

.repro-btn--outline:hover {
    border-color: #7b3aed;
}

/* ========== Footer ========== */

.repro-site-footer {
    background: #0b1020;
    color: #e5e7eb;
    padding: 24px 0;
    font-size: 13px;
}

.repro-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.repro-footer-brand {
    font-weight: 600;
    margin: 0 0 4px;
}

.repro-footer-copy,
.repro-footer-powered {
    margin: 0;
    opacity: 0.8;
}

.repro-site-footer a {
    color: #a855f7;
    text-decoration: none;
}

.repro-site-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .repro-header-inner {
        padding-inline: 16px;
        gap: 16px;
    }
    .repro-main-menu {
        display: none; /* لحد ما نعمل موبايل منيو */
    }
    .repro-header-actions {
        gap: 8px;
    }
    .repro-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.repro-faq {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.repro-faq-item + .repro-faq-item {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.repro-faq-item__question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.repro-faq-item__icon {
    margin-inline-start: 16px;
    font-weight: 700;
}

.repro-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.repro-faq-item__answer-inner {
    padding-bottom: 16px;
    color: #4b5563;
    font-size: 0.95rem;
}

.repro-faq-item.is-open .repro-faq-item__answer {
    max-height: 500px; /* مبدئيًا، كفاية */
}

.repro-faq-item.is-open .repro-faq-item__icon {
    transform: rotate(45deg);
}

.repro-testimonials {
    display: grid;
    gap: 24px;
}

.repro-testimonials--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.repro-testimonials--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .repro-testimonials--cols-2,
    .repro-testimonials--cols-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.repro-testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 20px 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.repro-testimonial-card__quote {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 16px;
}

.repro-testimonial-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.repro-testimonial-card__name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.repro-testimonial-card__subtitle,
.repro-testimonial-card__location {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.repro-testimonial-card__rating {
    font-size: 1rem;
    color: #fbbf24;
}

/* FAQs
/* -------------------------------------------------- */
.repro-faq {
    max-width: 800px;
    margin: 0 auto 80px;
}

.repro-faq--empty {
    text-align: center;
    color: #7b7f90;
    font-size: 15px;
}

.repro-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.repro-faq__item {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.06);
}

.repro-faq__question {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
    color: #101828;
}

.repro-faq__answer {
    font-size: 14px;
    line-height: 1.6;
    color: #4b4f5c;
}

/* Testimonials / Success Stories
/* -------------------------------------------------- */
.repro-testimonials {
    display: grid;
    gap: 24px;
    margin-bottom: 80px;
}

.repro-testimonials--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.repro-testimonials--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 991px) {
    .repro-testimonials--cols-2,
    .repro-testimonials--cols-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.repro-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 26px 22px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.repro-testimonial-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: #4b4f5c;
    margin: 0 0 18px;
}

.repro-testimonial-card__name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #101828;
}

.repro-testimonial-card__position {
    margin: 2px 0 0;
    font-size: 13px;
    color: #7b7f90;
}

.repro-testimonials--empty {
    text-align: center;
    color: #7b7f90;
    font-size: 15px;
}

/* 404 page
   ------------------------------------------------------------------ */
   .repro-404 {
    padding: 80px 0 120px;
}

.repro-404__header {
    text-align: center;
    margin-bottom: 32px;
}

.repro-404__code {
    font-size: 80px;
    font-weight: 700;
    color: var(--repro-primary);
    margin: 0 0 8px;
}

.repro-404__title {
    font-size: 32px;
    margin-bottom: 8px;
}

.repro-404__subtitle {
    color: var(--repro-text-muted);
}

.repro-404__content {
    display: flex;
    justify-content: center;
}

.repro-404__card {
    max-width: 520px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 24px 60px rgba(30, 26, 54, 0.06);
    text-align: center;
}

.repro-404__card p {
    margin-bottom: 24px;
}

.repro-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Search page
   ------------------------------------------------------------------ */
   .repro-search {
    padding: 80px 0 120px;
}

.repro-search__header {
    text-align: center;
    margin-bottom: 40px;
}

.repro-search__title {
    font-size: 32px;
    margin-bottom: 8px;
}

.repro-search__subtitle {
    color: var(--repro-text-muted);
}

.repro-search__query {
    font-weight: 600;
    color: var(--repro-primary);
}

.repro-search__form {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.repro-search__input {
    min-width: 260px;
    max-width: 420px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #e0e3ee;
    font-size: 14px;
    outline: none;
}

.repro-search__input:focus {
    border-color: var(--repro-primary);
    box-shadow: 0 0 0 2px rgba(115, 77, 243, 0.2);
}

.repro-search__results {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.repro-search-card {
    margin: 0;
}

.repro-search-card__inner {
    display: block;
    background: #fff;
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 18px 50px rgba(30, 26, 54, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.repro-search-card__inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(30, 26, 54, 0.09);
}

.repro-search-card__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.repro-search-card__title {
    font-size: 18px;
    margin: 0;
}

.repro-search-card__type {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #f3f2ff;
    color: var(--repro-primary);
}

.repro-search-card__excerpt p {
    margin: 0;
    color: var(--repro-text-muted);
    font-size: 14px;
}

.repro-search__pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

/* No results state */
.repro-search__no-results {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.repro-search__no-results-card {
    max-width: 520px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: 0 24px 60px rgba(30, 26, 54, 0.06);
    text-align: center;
}

.repro-search__no-results-card h2 {
    margin-bottom: 8px;
}

.repro-search__no-results-card p {
    margin-bottom: 24px;
    color: var(--repro-text-muted);
}

.repro-search__no-results-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* --------------------------------------------------------------
   Responsive layout
   -------------------------------------------------------------- */

/* شوية ضبط عام للـ paddings */
@media (max-width: 1200px) {
    .repro-shell,
    .repro-home,
    .repro-archive,
    .repro-single {
        padding-left: 20px;
        padding-right: 20px;
    }

    .repro-home-section,
    .repro-single-doctor,
    .repro-archive-doctors,
    .repro-archive-departments,
    .repro-faqs,
    .repro-testimonials {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* تابلت – 1024 وأقل */
@media (max-width: 1024px) {

    /* الهيرو في الهوم */
    .repro-home-hero {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .repro-home-hero__title {
        font-size: 32px;
        line-height: 1.2;
    }

    .repro-home-hero__subtitle {
        max-width: 480px;
    }

    /* الجريد بتاع الدكاترة والأقسام */
    .repro-doctor-grid.repro-doctor-grid--cols-4,
    .repro-doctor-grid.repro-doctor-grid--cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .repro-departments-grid.repro-departments-grid--cols-4,
    .repro-departments-grid.repro-departments-grid--cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* الهيدر بتاع الأرشيفات والصفحات الداخلية */
    .repro-archive-doctors__header,
    .repro-archive-departments__header,
    .repro-page-header {
        text-align: center;
    }

    .repro-archive-doctors__title,
    .repro-archive-departments__title,
    .repro-page-title {
        font-size: 30px;
    }
}

/* موبايل – 767 وأقل */
@media (max-width: 767px) {

    /* الهيرو + الأزرار */
    .repro-home-hero {
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .repro-home-hero__title {
        font-size: 26px;
    }

    .repro-home-hero__subtitle {
        font-size: 14px;
    }

    .repro-home-hero__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .repro-btn {
        width: 100%;
        text-align: center;
    }

    /* عناوين السكاشن */
    .repro-home-section__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .repro-home-section__head h2 {
        font-size: 22px;
    }

    /* Grid → عمود واحد على الموبايل */
    .repro-doctor-grid,
    .repro-departments-grid,
    .repro-faq-list,
    .repro-testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* كروت الدكاترة / الأقسام / الـcards عمومًا */
    .repro-doctor-card,
    .repro-department-card,
    .repro-faq-card,
    .repro-testimonial-card {
        padding: 18px 20px;
    }

    .repro-doctor-card_photo img,
    .repro-doctor-card__thumb img {
        width: 100%;
        height: auto;
    }

    /* صفحة الدكتور */
    .repro-single-doctor__hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .repro-single-doctor__photo {
        max-width: 260px;
        width: 100%;
    }

    .repro-single-doctor__name {
        font-size: 24px;
    }

    /* تايم لاين الـ Education / Work */
    .repro-timeline {
        margin-left: 0;
    }

    /* 404 / search box */
    .repro-404-box,
    .repro-search-box {
        margin: 40px auto 0;
        padding: 24px 20px;
    }

    .repro-404-box__actions {
        flex-direction: column;
        gap: 10px;
    }

    .repro-404-box__actions a {
        width: 100%;
        text-align: center;
    }
}

/* --------------------------------------------------------------
   Home Hero
   -------------------------------------------------------------- */

   .repro-home-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 120px;
    background: #f7f9fc;
}

/* خلفية ناعمة مع ظل خفيف حوالين الهيرو */
.repro-home-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at top right, rgba(146, 123, 255, 0.20), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(229, 227, 255, 0.70), transparent 60%);
}

/* لو حابب تضيف صورة خلفية زي اللايف:
.repro-home-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/hero-repro-placeholder.jpg') center/cover no-repeat;
    mix-blend-mode: multiply;
    opacity: 0.35;
}
*/

.repro-home-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.repro-home-hero__content {
    max-width: 520px;
}

/* الشريط الصغير فوق العنوان */
.repro-home-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7b23ff;
}

.repro-home-hero__title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1230;
    margin: 0 0 16px;
}

.repro-home-hero__subtitle {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #5c5873;
}

.repro-home-hero__cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.repro-home-hero__phone {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.repro-home-hero__phone-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8f8aab;
}

.repro-home-hero__phone-number {
    font-size: 16px;
    font-weight: 600;
    color: #26124f;
    text-decoration: none;
}

.repro-home-hero__phone-number:hover {
    text-decoration: underline;
}

/* تعديلات بسيطة على الزرار الرئيسي عشان يبقى شبه اللايف شوية */
.repro-btn--primary {
    border-radius: 999px;
    padding-inline: 26px;
    padding-block: 11px;
    font-weight: 600;
}

/* موبايل – نكمّل على اللي كتبناه قبل كده */
@media (max-width: 767px) {
    .repro-home-hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .repro-home-hero__content {
        max-width: 100%;
    }

    .repro-home-hero__title {
        font-size: 28px;
    }

    .repro-home-hero__subtitle {
        font-size: 14px;
    }

    .repro-home-hero__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .repro-home-hero__phone {
        align-items: flex-start;
    }
}

/* --------------------------------------------------------------
   Layout shell helper
   -------------------------------------------------------------- */
   .repro-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: 40px;
}

@media (max-width: 767px) {
    .repro-shell {
        padding-inline: 20px;
    }
}

/* --------------------------------------------------------------
   Home - About (details matters)
   -------------------------------------------------------------- */

.repro-home-about {
    padding: 70px 0 80px;
    background: #ffffff;
}

.repro-home-about__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.repro-home-about__media {
    position: relative;
}

.repro-home-about__image {
    display: block;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.repro-home-about__image--placeholder {
    background: #e4e7f2;
    height: 320px;
}

/* محتوى النص */
.repro-home-about__content {
    max-width: 460px;
}

.repro-home-about__title {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 18px;
    color: #1b1230;
    font-weight: 700;
}

.repro-home-about__text p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #605b78;
}

.repro-home-about__btn {
    margin-top: 18px;
}

/* --------------------------------------------------------------
   Home - Institutes & Departments
   -------------------------------------------------------------- */

.repro-home-section--departments {
    padding: 60px 0 80px;
    background: #f7f8fb;
}

.repro-home-depts__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.repro-home-depts__title {
    font-size: 22px;
    font-weight: 700;
    color: #1b1230;
    margin: 0;
}

.repro-home-depts__link {
    font-size: 13px;
    font-weight: 500;
    color: #7b23ff;
    text-decoration: none;
}

.repro-home-depts__link:hover {
    text-decoration: underline;
}

/* شبكة الكروت */
.repro-home-depts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.repro-home-dept-card__inner {
    display: block;
    padding: 22px 22px 18px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(10, 6, 58, 0.08);
    text-decoration: none;
}

.repro-home-dept-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #1b1230;
    margin: 0 0 8px;
}

.repro-home-dept-card__more {
    font-size: 12px;
    color: #8a84a5;
}

/* --------------------------------------------------------------
   Home - Trusted Doctors
   -------------------------------------------------------------- */

.repro-home-section--doctors {
    padding: 60px 0 90px;
    background: #ffffff;
}

.repro-home-doctors__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.repro-home-section__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1b1230;
}

.repro-home-section__link {
    font-size: 13px;
    color: #7b23ff;
    text-decoration: none;
}

.repro-home-section__link:hover {
    text-decoration: underline;
}

/* خلي الجريد اللي بيطلع من الشورت كود يتمدد على العرض */
.repro-home-doctors__body .repro-doctors-grid-wrapper {
    margin: 0;
}

/* --------------------------------------------------------------
   Responsive tweaks
   -------------------------------------------------------------- */

@media (max-width: 991px) {
    .repro-home-about__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .repro-home-about__content {
        max-width: 100%;
    }

    .repro-home-depts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .repro-home-about {
        padding: 50px 0 60px;
    }

    .repro-home-depts__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .repro-home-depts__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .repro-home-section--doctors {
        padding-bottom: 70px;
    }
}

/* --------------------------------------------------------------
   Home - Find What You Need
   -------------------------------------------------------------- */

   .repro-home-find {
    padding: 70px 0 80px;
    background: #ffffff;
}

.repro-home-find__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.repro-home-find__media {
    position: relative;
}

.repro-home-find__image {
    display: block;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(9, 6, 54, 0.28);
}

.repro-home-find__image--placeholder {
    height: 320px;
    background: linear-gradient(135deg, #ece9ff, #f9f7ff);
}

/* نص الفورم */
.repro-home-find__content {
    max-width: 460px;
}

.repro-home-find__title {
    margin: 0 0 16px;
    font-size: 26px;
    font-weight: 700;
    color: #1b1230;
}

.repro-home-find__text {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #605b78;
}

.repro-home-find__text--small {
    font-size: 13px;
    color: #8a84a5;
}

/* فورم */
.repro-home-find__form {
    margin-top: 20px;
}

.repro-home-find__fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.repro-home-find__input {
    border-radius: 999px;
    border: 1px solid #e0def0;
    background: #fafbff;
    padding: 10px 16px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.repro-home-find__input:focus {
    border-color: #7b23ff;
    box-shadow: 0 0 0 2px rgba(123, 35, 255, 0.12);
    background: #ffffff;
}

.repro-home-find__submit {
    min-width: 160px;
}

/* --------------------------------------------------------------
   Simple hover / motion tweaks for fancy feel
   -------------------------------------------------------------- */

.repro-home-dept-card__inner,
.repro-doctor-card_inner,
.repro-faq-item,
.repro-testimonial-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, translate 0.2s ease;
}

.repro-home-dept-card__inner:hover,
.repro-doctor-card_inner:hover,
.repro-faq-item:hover,
.repro-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(10, 6, 58, 0.16);
}

/* Responsive */
@media (max-width: 991px) {
    .repro-home-find__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .repro-home-find__content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .repro-home-find {
        padding: 52px 0 70px;
    }

    .repro-home-find__fields {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* عناصر تظهر بترانزيشن عند السكرول */
.repro-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.repro-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Basic scroll-in animation ========== */
.repro-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.repro-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ممكن تستخدم موديفيرز لو حبيت اتجاهات مختلفة بعدين */
.repro-animate--from-left {
    transform: translateX(-24px);
}
.repro-animate--from-right {
    transform: translateX(24px);
}
.repro-animate--from-left.is-visible,
.repro-animate--from-right.is-visible {
    transform: translateX(0);
}

/* ========== Header scrolled state ========== */
.repro-header.is-scrolled,
.site-header.is-scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
}

/* تأكيد إن الترانزيشن لطيف */
.repro-header,
.site-header {
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* Header layout */
.repro-site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.repro-site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Brand */
.repro-logo img {
    max-height: 48px;
    width: auto;
    display: block;
}

.repro-site-title {
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
    text-decoration: none;
}

/* Main nav */
.repro-site-nav {
    flex: 1;
}

.repro-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.repro-nav li {
    list-style: none;
}

.repro-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    padding: 6px 0;
}

.repro-nav .current-menu-item > a,
.repro-nav a:hover {
    color: var(--primary);
}

/* Right side (flags + buttons) */
.repro-site-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language switcher – remove bullets & align flags */
.repro-lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 12px 0 0;
    padding: 0;
    list-style: none;
}

.repro-lang-switch li {
    list-style: none;
}

/* Header buttons */
.repro-header-btn {
    font-size: 13px;
    padding: 8px 18px;
}

.repro-about-hero-text {
    max-width: 520px;
}

.repro-about-hero-image img {
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.14);
}

/* زرار البلاى الدائرى لو هتضيفه */
.repro-about-hero-play {
    position: absolute;
    left: -80px;
    bottom: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #00d1c4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 209, 196, 0.4);
}

/* About – cards grid */
.repro-about-cards {
    margin-top: 60px;
  }
  
  @media (min-width: 769px) {
    .repro-about-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .repro-about-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  
  /* Single card */
  .repro-about-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 32px 30px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.28);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  
  .repro-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.1);
    border-color: var(--primary);
  }
  
  /* Icon circle inside card (لو استخدمت Icon widget في أول الكارد) */
  .repro-about-card .elementor-icon,
  .repro-about-card .elementor-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 199, 200, 0.12);
    color: var(--primary);
    margin-bottom: 16px;
  }
  
  /* Card typography */
  .repro-about-card h5,
  .repro-about-card .elementor-heading-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .repro-about-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
  }
  
  .repro-doctors-grid {
    display: grid;
    gap: 24px;
  }
  
  .repro-doctors-grid.columns-2 { grid-template-columns: repeat(2, 1fr); }
  .repro-doctors-grid.columns-3 { grid-template-columns: repeat(3, 1fr); }
  .repro-doctors-grid.columns-4 { grid-template-columns: repeat(4, 1fr); }
  
  .repro-doctor-card {
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: center;
  }
  
  .repro-doctor-card:hover {
    transform: translateY(-5px);
  }

/* ================================
   EDUCATION & EXPERIENCE CONTAINER
================================ */

.repro-doctor-education,
.repro-doctor-experience {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
    padding-left: 0;
    padding-top:15px;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: #8CC542 #eaeaea;
}

/* Chrome / Edge Scrollbar */
.repro-doctor-education::-webkit-scrollbar,
.repro-doctor-experience::-webkit-scrollbar {
    width: 6px;
}

.repro-doctor-education::-webkit-scrollbar-track,
.repro-doctor-experience::-webkit-scrollbar-track {
    background: #eaeaea;
    border-radius: 10px;
}

.repro-doctor-education::-webkit-scrollbar-thumb,
.repro-doctor-experience::-webkit-scrollbar-thumb {
    background: #8CC542;
    border-radius: 10px;
}

/* ================================
   GLOBAL CARD STYLE
================================ */

.repro-doctor-education li,
.repro-doctor-experience li {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px 16px 50px;
    margin-bottom: 20px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    border-left: 4px solid #8CC542;
    border-bottom: 1px solid #8CC542;
    border-top: 1px solid #8CC542;
    border-right: 1px solid #8CC542;
    transition: all 0.3s ease;
}

/* Hover animation */
.repro-doctor-education li:hover,
.repro-doctor-experience li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 26px rgba(0,0,0,0.15);
}

/* ================================
   LEFT ICONS
================================ */

.repro-doctor-education li::before {
    content: "🎓";
    position: absolute;
    left: 14px;
    top: 16px;
    font-size: 20px;
}

.repro-doctor-experience li::before {
    content: "💼";
    position: absolute;
    left: 14px;
    top: 16px;
    font-size: 20px;
}

/* ================================
   EDUCATION FIELDS
================================ */

.edu-year {
    font-weight: 800;
    font-size: 14px;
    color: #8CC542;
}

.edu-title {
    font-weight: 700;
    font-size: 16px;
    color: #2E3094;
}

.edu-text {
    font-size: 14px;
    color: #444;
}

/* ================================
   EXPERIENCE FIELDS
================================ */

.exp-year {
    font-weight: 800;
    font-size: 14px;
    color: #8CC542;
}

.exp-location {
    font-size: 13px;
    color: #777;
}

.exp-text {
    font-size: 15px;
    font-weight: 700;
    color: #2E3094;
}

/* ================================
   RTL SUPPORT (Arabic)
================================ */

html[dir="rtl"] .repro-doctor-education li,
html[dir="rtl"] .repro-doctor-experience li {
    padding-left: 18px;
    padding-right: 50px;
    border-left: none;
    border-right: 4px solid #8CC542;
}

html[dir="rtl"] .repro-doctor-education li::before,
html[dir="rtl"] .repro-doctor-experience li::before {
    left: auto;
    right: 14px;
}

/* ===============================
   EDUCATION & EXPERIENCE WRAPPER
================================= */
.repro-doctor-education,
.repro-doctor-experience {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}

/* ===============================
   ITEM CARD
================================= */
.repro-doctor-education li,
.repro-doctor-experience li {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.25s ease;
    position: relative;
}

/* Hover */
.repro-doctor-education li:hover,
.repro-doctor-experience li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.15);
}

/* ===============================
   EDUCATION FIELDS
================================= */
.edu-year {
    font-weight: 700;
    font-size: 14px;
    color: #8CC542;
}

.edu-title {
    font-weight: 600;
    font-size: 16px;
    color: #2E3094;
}

.edu-text {
    font-size: 14px;
    color: #444;
}

/* ===============================
   EXPERIENCE FIELDS
================================= */
.exp-year {
    font-weight: 700;
    font-size: 14px;
    color: #8CC542;
}

.exp-location {
    font-size: 14px;
    color: #2E3094;
    font-weight: 600;
}

.exp-text {
    font-size: 14px;
    color: #444;
}

/* ===============================
   CUSTOM GREEN SCROLLBAR
================================= */
.repro-doctor-education::-webkit-scrollbar,
.repro-doctor-experience::-webkit-scrollbar {
    width: 7px;
}

.repro-doctor-education::-webkit-scrollbar-track,
.repro-doctor-experience::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.repro-doctor-education::-webkit-scrollbar-thumb,
.repro-doctor-experience::-webkit-scrollbar-thumb {
    background: #8CC542;
    border-radius: 10px;
}

/* Firefox */
.repro-doctor-education,
.repro-doctor-experience {
    scrollbar-color: #8CC542 #f1f1f1;
    scrollbar-width: thin;
}

/* === FORCE YEARS TO MATCH ELEMENTOR POST-INFO STYLE === */

.repro-doctor-years {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

/* Icon exactly like Post Info */
.repro-doctor-years svg,
.repro-doctor-years i {
    width: 18px;
    height: 18px;
    fill: #2E3094;
    color: #2E3094;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

/* Number */
/* .repro-doctor-years .years-value {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

// Label same as Location text 
.repro-doctor-years .years-label {
    font-weight: 400;
    color: #000;
    opacity: 0.85;
    font-size: 16px;
} */

/* RTL Support identical to Elementor */
body.rtl .repro-doctor-years {
    flex-direction: row-reverse;
}

.repro-find-doctor-form {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.repro-find-doctor-form select,
.repro-find-doctor-form button {
    height: 48px;
    padding: 0 15px;
    font-size: 14px;
}

.repro-find-doctor-form button {
    background: #1c1c1c;
    color: #fff;
    border: none;
    cursor: pointer;
}
