
/*
Theme Name: OSA Theme V2
Theme URI: https://example.com/osa-theme-v2
Author: ChatGPT
Description: RTL, responsive WordPress theme tailored to OSA design (header, content, footer) with exact color specs.
Version: 2.0.0
Text Domain: osa
*/

.main-nav .icon {
  fill: #3194a3;   /* لون OSA الأزرق */
}
.main-nav .nav-item:hover .icon {
  fill: #1b6f7c;
}
/* تثبيت حجم أيقونات شريط OSA */
.main-nav svg,
.main-nav .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}


:root{
  --body:#99c0c6;
  --header-slab:#eaeaea;
  --link:#8f8f8f;
  --contrib-bg:#3194a3;
  --add-bg:#3d848f;
  --search-bg:#ffffff;
  --search-ink:#99c0c6;
  --table-wrap:#ffffff;
  --thead-bg:#ececec;
  --thead-ink:#8f8f8f;
  --row-a:#c5dce0;
  --row-b:#d8e6e8;
  --stats-left-bg:#ffffff;
  --stats-banner:#56a1ac;
  --stats-banner-ink:#ffffff;
  --stats-card:#eaeaea;
  --stats-card-ink:#8f8f8f;
  --footer-top-bg:#ffffff;
  --footer-top-ink:#bebebe;
  --footer-bottom-bg:#dcdbd7;
  --footer-bottom-ink:#807b67;
  --ink:#213033;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--body);
  color:var(--ink);
  font:16px/1.7 "Tajawal","Noto Kufi Arabic","Segoe UI",Tahoma,Arial,sans-serif;
  direction: rtl;
}
a{color:inherit;text-decoration:none}
img {
    display: block;
}

.container{ width:min(1200px, 92vw); margin-inline:auto }

/* Header */


/* ===== Header groups with DIVs (no <nav>) ===== */
.header-slab{
  margin-top:14px;
}

.header-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;              
}

.header-group.primary{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:24px;               
  background:#eaeaea;    
  border-radius:14px;
  padding:10px 16px;
}

.header-link{
  color:#8f8f8f;
  font-weight:700;
  padding:8px 10px;
  border-radius:8px;
  text-decoration:none;
}
.header-link:focus-visible{
  outline:2px solid #8f8f8f33;
  outline-offset:2px;
}

.header-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
}
.header-chip.contrib{ background:#3194a3; color:#ffffff; } /* المساهمين */
.header-chip.add{     background:#3d848f; color:#ffffff; } /* أضف كلمات */

@media (max-width:640px){
  .header-group.primary{ gap:12px; padding:8px 12px; }
  .header-link{ padding:8px 8px; }
  .header-chip{ padding:9px 12px; }
}

.search-wrap{ margin-top:12px }
.search{ display:flex; align-items:center; gap:12px; background:var(--search-bg); border-radius:40px; padding:12px 16px;}
.search svg{ color:var(--search-ink) }
.search input{ flex:1; border:0; outline:none; background:#e5f6f8; color:var(--search-ink); font-size:16px;padding: 5px 10px;border-radius: 5px; }
.search input::placeholder{ color:var(--search-ink) }

/* Section title */
.section-title{ text-align:center; color:#fff; font-weight:700; font-size:36px; margin:28px 0 10px; }
.section-title-h1{ text-align:center; color:#3194a3; font-weight:700; font-size:36px; margin:28px 0 10px; }


article p{
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.6;
    color: #222;
    font-weight: 500;
    margin-bottom: 35px;
}



/* Table */
.table-wrap{ background:var(--table-wrap); border-radius:var(--radius); padding:12px; }
.thead{ display:grid; grid-template-columns:1.2fr 1fr .7fr 1fr; background:var(--thead-bg); color:var(--thead-ink); font-weight:800; padding:12px 16px; border-radius:12px; }
.row{ display:grid; grid-template-columns:1.2fr 1fr .7fr 1fr; padding:14px 16px; border-radius:12px; margin-top:10px; }
.row.a{ background:var(--row-a) } .row.b{ background:var(--row-b) }
.cell{ overflow:hidden; white-space:nowrap; text-overflow:ellipsis }

/* Stats */
.stats{ margin:28px 0 36px; display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; }
@media (max-width:900px){ .stats{ grid-template-columns:1fr } }

.stats-left{ background:var(--stats-left-bg); border-radius:var(--radius); padding:16px;}
.grid-2x3{ display:grid; grid-template-columns:repeat(2,1fr); grid-template-rows:repeat(3,1fr); gap:10px; }
.cell2{ padding:14px; border-radius:12px; font-weight:700 }
.cell2.alt1{ background:var(--row-b) } .cell2.alt2{ background:var(--row-a) }

.stats-right .banner{ background:var(--stats-banner); color:var(--stats-banner-ink); padding:16px; text-align:center; border-radius:12px; font-weight:800; margin-bottom:12px; }
.kpi-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px }
.kpi{ background:var(--stats-card); color:var(--stats-card-ink); padding:18px; border-radius:12px; text-align:center; font-weight:800; }

/* Footer */
.site-footer{ margin-top:32px }
.footer-top{ background:var(--footer-top-bg); color:var(--footer-top-ink); padding:18px 0; text-align:center; }
.footer-top .brand{ gap:10px; margin-bottom:8px }
.footer-top img{ height:60px; width:auto; margin-inline:auto }

.footer-bottom {
    background: #f3f3f3;
    color: #939393;
    text-align: center;
    padding: 14px 0;
}

.footer-icons{ display:inline-flex; gap:10px; align-items:center; justify-content:center; margin-top:6px }
.footer-icons svg {
    width: 20px;
    height: 20px;
    color: #99c0c6;
}
/* Responsive table */
@media (max-width:720px){ .thead{ display:none } .row{ grid-template-columns:1fr } }



/* ==== OSA Add Lyrics Form ==== */
.osa-form{background:#ffffff;border-radius:14px;padding:16px;margin:14px 0}
.osa-form h3{margin:0 0 10px;color:#3a4c50;font-weight:800}
.osa-field{margin:10px 0}
.osa-label{display:block;margin-bottom:6px;font-weight:700;color:#3a4c50}
.osa-input,.osa-textarea{
  width:100%;border:2px solid #dfe8ea;border-radius:8px;padding:12px 10px;
  font-family:'Tajawal',sans-serif;background:#eef6f7;outline:none
}
.osa-input:focus,.osa-textarea:focus{border-color:#99c0c6;background:#ffffff}
.osa-req{color:#d05}
.osa-actions{margin-top:14px}
.osa-btn{
  background:#3d848f;color:#fff;border:0;border-radius:12px;padding:12px 22px;
  font-weight:800;cursor:pointer
}
.osa-btn[disabled]{opacity:.6;cursor:not-allowed}
.osa-chip{display:inline-block;background:#3194a3;color:#fff;border-radius:10px;padding:6px 10px;margin-inline:4px}
.osa-success{background:#e7f6eb;border:2px solid #b6e0c2;color:#1d6b2d;border-radius:12px;padding:14px;margin:16px 0;font-weight:700}
.osa-error{background:#fdecec;border:2px solid #f6baba;color:#7d1b1b;border-radius:12px;padding:12px;margin:10px 0}

/*.osa-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }*/
.osa-sep{ border:0; height:1px; background:#eaeaea; margin:14px 0; }
@media (max-width:640px){ .osa-grid{ grid-template-columns:1fr; } }


.osa-mobile-header {
  display: flex;
  flex-direction: column;
  background: #eaeaea;
  padding: 8px;
  border-bottom: 2px solid #c0d7d9;
}

.osa-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.osa-mobile-icon {
  font-size: 26px;
  color: #2a5a60;
  text-decoration: none;
  padding: 6px 10px;
}

.osa-search-box {
  display: none;
  text-align: center;
  background: #b3d3d6;
  padding: 10px;
  border-radius: 10px;
  margin-top: 5px;
}



.osa-letters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.osa-letter {
  background: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  color: #20585e;
  text-decoration: none;
}

.osa-letter:hover {
  background: #20585e;
  color: white;
}

/* افتراضيًا: أخفي هيدر الجوال على الشاشات الكبيرة */
.osa-mobile-header { display: none; }

/* على الشاشات الصغيرة فقط (<= 768px): أظهر هيدر الجوال وأخفي هيدر الديسكتوب */
@media (max-width: 768px) {
  .osa-mobile-header { display: block; }
  /* لو كان عندك هيدر الديسكتوب داخل عنصر اسمه site-header أو header-row عدّل هنا */
  .site-header, .header-row, .desktop-header { display: none !important; }
}



/* إظهار/إخفاء حسب المقاس */
.desktop-header { display: block; }
.osa-mobile-header, #osa-drawer, #osa-overlay { display: none; }

@media (max-width: 768px) {
  .desktop-header { display: none !important; }
  .osa-mobile-header,
  #osa-overlay,
  #osa-drawer { display: block; }

  /* اخفِ شريط الحروف الطويل في الرئيسية على الجوال */
  .letters-bar { display: none !important; }
}

/* شريط الهيدر الجوال */
.osa-mobile-header { position: sticky; top: 0; z-index: 1000; background:#eaeaea; padding:8px 10px; border-bottom:2px solid #9fbcc0; }
.osa-mobile-bar { display:flex; align-items:center; gap:12px; }

.osa-mobile-logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    margin: 0px;
}

.osa-mobile-icon { font-size:24px; background:transparent; border:0; color:#1d4f56; padding:6px 8px; cursor:pointer; }

/* صندوق الحروف */
.osa-search-box { background:#cfe1e3; margin-top:6px; border-radius:12px; padding:10px; border:2px solid #eaeaea; }
.osa-letters { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; }
.osa-letter { background:#fff; border-radius:8px; padding:6px 10px; color:#20585e; font-weight:700; text-decoration:none; }
.osa-letter:hover { background:#20585e; color:#fff; }

/* الدرج الجانبي */
.osa-overlay { position:fixed; inset:0; background:rgba(0,0,0,.35); z-index:999; opacity:0; pointer-events:none; transition:opacity .2s; }
.osa-overlay.open { opacity:1; pointer-events:auto; }

.osa-drawer { position:fixed; top:0; bottom:0; right:0; width:78%; max-width:340px;
  background:#fff; z-index:1000; transform:translateX(100%); transition:transform .22s ease-in-out;
  box-shadow:-2px 0 14px rgba(0,0,0,.15); padding:14px;
}
.osa-drawer.open { transform:translateX(0); }
.osa-drawer-close { position:absolute; top:6px; left:10px; background:#eaeaea; border:0; border-radius:10px; width:32px; height:32px; font-size:22px; color:#18353a; cursor:pointer; }
.osa-drawer-list { list-style:none; margin:42px 0 0; padding:0; display:flex; flex-direction:column; gap:8px; }
.osa-drawer-list a { display:block; padding:10px 12px; border-radius:10px; background:#f3f5f5; color:#18353a; text-decoration:none; font-weight:800; }
.osa-drawer-list a:hover { background:#cfe1e3; }


/* زر أيقونة مربّع بنفس ألوان الثيم */
.osa-icon-btn{
  inline-size: 50px;
  block-size: 50px;
  display:inline-grid;
  place-items:center;
  background:#99c0c6;
  border:2px solid #9fbcc0;
  border-radius:12px;
  color:#ffffff;
  text-decoration:none;
  transition:transform .12s ease, background .12s ease, color .12s ease;
}
.osa-icon-btn:hover{ background:#d8e6e8; }
.osa-icon-btn:active{ transform:scale(.97); }
.osa-icon-btn--primary{ background:#3194a3; color:#fff; border-color:#2d8593; }
.osa-icon-btn--ghost{ background:transparent; border-color:transparent; }
.osa-ico{ inline-size:30px; block-size:30px; display:block; }

/* في الهيدر الجوال نستخدم هذا الصف */
.osa-mobile-icons{ display:flex; gap:8px; align-items:center; }



/* شبكة البطاقات: ديسكتوب 2×10 – موبايل 1×20 */
.home-grid-posts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
@media (max-width:768px){
  .home-grid-posts{ grid-template-columns:1fr; }
}

/* بطاقة العنصر */
.home-post{
  background:#d8e6e8;
  border-radius:14px;
  padding:14px;
  border:2px solid #eaeaea;
  display:flex; align-items:center; justify-content:space-between;
  text-decoration:none;
}
.home-post.is-even{ background:#c5dce0; }
.hp-title{
    color:#176774;
    font-weight:600;
    display:flex; 
    flex-wrap:wrap;
    gap:0px;
    align-items:center;
    min-width:0;
    margin-left: 5px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:100%;
    font-size: 16px;
}

.hpartist{
    color: #176774;
    font-weight: 600;
    align-items: center;
    min-width: 0;
    margin-left: 5px;
    font-size: 14px;
}

.hp-artist, .hp-artist-link {
    color: #0087aa;
    font-weight: 600;
    text-decoration: none;
}






.hp-views{ display:flex; align-items:center; gap:6px; color:#18353a; font-weight:800; }

.stats-card-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}


@media (max-width:768px){
  .stats-card-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
.stat-box{
  background:#f2f2f2;
  border-radius:14px;
  padding:16px;
  text-align:center;
}
.statret {
    color: #676767;
    font-size: 22px;
    font-weight: 500;
}
.stats-card-top {
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    padding: 6px;
    margin-bottom: 14px;
    color: #676767;
}
.stat-box .s-label {
    color: #a0a0a0;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 24px;
}
.stat-box .s-num {
    color: #b86027;
    font-weight: 500;
    font-size: 21px;
}


.stats-card {
    background: #fff;
    border-radius: 18px;
    padding: 9px;
    margin-top: 18px;
}

/* الصندوق فوق كل شيء */
.osa-mobile-header { position: sticky; top: 0; z-index: 1000; }
.osa-search-box {
  position: fixed; /* مهم للجوال */
  right: 8px; left: 8px; top: 56px;
  z-index: 1002;
  pointer-events: auto;
  background: #cfe1e3;
  border:0px solid #eaeaea;
  border-radius: 12px;
  padding: 10px;
}

/* الغطاء يمنع اللمسات تحت الصندوق/الدرج */
#osa-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1001;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
#osa-overlay.open { opacity: 0; pointer-events: auto; }

/* قفل تمرير الجسم أثناء الفتح */
body.osa-lock { overflow: hidden; }

/* على الجوال نخفي شريط الحروف الطويل إن وُجد */
@media (max-width: 768px){
  .letters-bar, .osa-letters-desktop { display: none !important; }
}


/* شريط الحروف المكتبي */
.letters-bar { display: block; }

/* الجوال: نخفي شريط الحروف المكتبي، ونستخدم صندوق الحروف المنبثق */
@media (max-width: 768px){
  .letters-bar { display: none !important; }
  /* صندوق الحروف المنبثق مخفي افتراضياً (يظهر عند الضغط على العدسة) */
  #osa-search-box { display: none; }
  #osa-search-box.open { display: block; }
}


/* شبكة 2×10 ديسكتوب / 1×20 موبايل */
.home-grid-posts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
@media (max-width:768px){
  .home-grid-posts{ grid-template-columns:1fr; }
}

/* بطاقة */
.home-post{
  background:#d8e6e8;
  border-radius:14px;
  padding:14px;
  border:2px solid #eaeaea;
  display:flex; align-items:center; justify-content:space-between;
  text-decoration:none;
}
.home-post.is-even{ background:#c5dce0; }

/* العنوان + الفنان */
.hp-title-text{ color:#18353a; font-weight:800; }

.hp-artist-link:hover{ text-decoration:underline; }



/* المشاهدات + الأيقونة */
.hp-views{ display:flex; align-items:center; gap:6px; color:#18353a; font-weight:800; }

/* إحصائيات: 4 أعمدة ديسكتوب / 2×2 موبايل */
@media (max-width:768px){ .stats-card-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }

/* الكمبيوتر: يظهر الشريط المكتبي */
.letters-bar{ display:block; }

/* الجوال: أخفي الشريط المكتبي، واسمح بفتح صندوق الحروف من العدسة */
@media (max-width:768px){
  .letters-bar{ display:none !important; }
  #osa-search-box{ display:none; }         /* مخفي افتراضياً */
  #osa-search-box.open{ display:block; }   /* يظهر عند الضغط على العدسة */
}



/* شبكة 2 × 10 على الكمبيوتر / 1 × 20 على الجوال */
.home-grid-posts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin: 8px 0 0;
}
@media (max-width:768px){
  .home-grid-posts{ grid-template-columns:1fr; }
}

/* البطاقة */
.home-post{
  background:#d8e6e8;
  border-radius:14px;
  padding:14px;
  border:2px solid #eaeaea;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-decoration:none;
  min-width:0; /* مهم لمنع تمدد داخل الفلكس */
}
.home-post.is-even{ background:#c5dce0; }



/* عمود المشاهدات (ثابت) */
.hp-views{
  flex:0 0 auto;
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap:6px;
  color:#18353a;
  font-weight:800;
}

/* إزالة أي تباعد غير مقصود من عناصر داخل الشبكة */
.home-grid-posts > * { margin:0 !important; }


/* الشريط في الوضع الطبيعي */
.letters-bar { display:block; }

/* الجوال: الشريط مخفي افتراضياً */
@media (max-width:768px){
  .letters-bar{ display:none; }
  /* عندما نفتحه بالعدسة */
  .letters-bar.is-open{ display:block !important; }
}

/* على الكمبيوتر: نسمح بإخفائه/إظهاره بالعدسة */
.letters-bar.is-hidden{ display:none !important; }

/* قائمة آخر 20 */
/* شبكة القائمة: 2×10 ديسكتوب / 1×20 موبايل */

.hp-list {
    list-style: none;
    margin: 8px 0;
    padding: 10px 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    background: #ffffff;
    border-radius: 10px;
}


@media (max-width:768px){
  .hp-list{ grid-template-columns:1fr; }
}

/* العنصر */
.hp-item{
  display:flex; align-items:center; justify-content:space-between; 
  background:#f3f9fa; border-radius:9px; padding:5px 2px;
}
.hp-item.even{ background:#f3f9fa; }

/* يمين: العنوان + الفنان (بدون أي شرطة) */




.hp-artist-wrap{ display:inline-flex; gap:10px; }



/* إزالة أي فواصل/شرطات قديمة */
.hp-title::before, .hp-artist-wrap::before{ content:'' !important; }



/* ضبط توزيع العناصر داخل عنصر القائمة */
.hp-item{
  display:flex;
  align-items:center;
}

/* يمين: العنوان + الفنان على سطر واحد */




/* اسم الفنان ملاصق ولا ينكسر */
.hp-artist-wrap,
.hp-artist,
.hp-artist-link{
  white-space:nowrap;
}

/* يسار: المشاهدات إلى الطرف دومًا */
.hp-l{
  margin-inline-start:auto;
  padding-inline-start:10px;
  white-space:nowrap;
  flex:0 0 auto;
}


/* أيقونات صغيرة موحّدة */
.hp-ico{
    inline-size:18px;
    block-size:18px;
    display:inline-block;
    color:#54838a; 
}

/* النوتة قبل العنوان */
.hp-ico-note {
    margin-inline-end: 8px;
    color: #1f6570;
    width: 18px;
    height: 18px;
}
/* غلاف الفنان مع الميكروفون */
.hp-artist-wrap{
  display:inline-flex; align-items:center; gap:0px;
  margin-inline-start:0px; white-space:nowrap;
}
.hp-ico-mic{ color:#46b0c0; }

/* تأكيد أن العنوان والفنان على سطر واحد */

.hp-r {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0px;
  min-height: 44px;
  min-width: 0;
  padding: 2px 0px;
  padding-inline-end: 5px;
  text-decoration: none;
  color: #18353a;
  font-weight: 800;
}




/* رابط العنوان */
.hp-title-link{
  display:inline-flex;
  align-items:center;
  gap:0px;
  color:inherit;
  text-decoration:none;
  line-height:1.4;
}
.hp-title-link:hover{ text-decoration:underline; }

/* الأيقونات الصغيرة */


/* كتلة الفنان */
.hp-artist-wrap{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-inline-start:12px; /* مسافة بعد العنوان */
}

/* رابط الفنان */


/* يسار السطر (المشاهدات) – للتوسيط العمودي والفراغات */
.hp-l {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    color: #347d88;
    font-weight: 700;
    font-size: 14px;
}
/* احجز مساحة لشريط الإدارة حتى لا يزحزح الصفحة */
@media (max-width: 782px){
  body.admin-bar .site-header{ margin-top:46px; }
}
@media (min-width: 783px){
  body.admin-bar .site-header{ margin-top:32px; }
}

/* لو الهيدر Fixed/Sticky استعمل top بدل margin */
@media (max-width: 782px){
  body.admin-bar .site-header.is-fixed,
  body.admin-bar .site-header[style*="position:fixed"],
  body.admin-bar .site-header.sticky { top:46px !important; }
}
@media (min-width: 783px){
  body.admin-bar .site-header.is-fixed,
  body.admin-bar .site-header[style*="position:fixed"],
  body.admin-bar .site-header.sticky { top:32px !important; }
}


 :root{ --bg:#e1f0f0; --ink:#2b4b4d; --accent:#3aa4a4; --panel-bg:#f6fbfb; --ring:rgba(58,164,164,.25); }
  html{scroll-behavior:smooth}
  .site-header{background:#fff;color:#539ca7;border-bottom:0px solid rgba(0,0,0,.05)}
  .header-inner{max-width:1200px;margin:0 auto;padding:20px 10px;display:flex;align-items:center;gap:1rem}
  .brand{display:flex;align-items:center;gap:.5rem;color:inherit;text-decoration:none;min-width:56px}
  .brand .icon{width:28px;height:28px}
  .brand-text{font-weight:700;letter-spacing:.5px}
  .main-nav{display:flex;align-items:center;gap:.5rem;margin-inline-start:auto}
  .nav-item{font-weight:600;appearance:none;border:0;background:transparent;display:flex;align-items:center;gap:.5rem;padding:.5rem .6rem;border-radius:10px;color:inherit;text-decoration:none;cursor:pointer;line-height:1}
  .nav-item .icon{width:25px;height:25px;flex:0 0 25px}
  .label{font-size:.95rem}
  @media (hover:hover){ .nav-item:hover{color:var(--accent)} .nav-item:focus-visible{outline:2px solid var(--accent);outline-offset:2px}}
  @media (max-width:1024px){ .label{display:none} .nav-item{padding:.55rem}}
  .search-panel{scroll-margin-top:80px;background:var(--panel-bg);border-top:1px solid rgba(0,0,0,.06);padding:1.25rem}
  .search-box{max-width:900px;margin:0 auto 1rem;display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap}
  .lead{margin:0;font-weight:700;color:var(--ink)}
  .adv-link{padding:.4rem .7rem;border-radius:8px;text-decoration:none;color:#fff;background:var(--accent);box-shadow:0 0 0 0 var(--ring);transition:box-shadow .2s}
  .adv-link:focus-visible{outline:none;box-shadow:0 0 0 4px var(--ring)}
  .letters-header{max-width:900px;margin:0 auto .5rem;display:flex;justify-content:center}
  .letters-toggle{padding:.45rem .8rem;border-radius:10px;border:1px solid rgba(0,0,0,.08);background:#fff;cursor:pointer;font-weight:700;color:var(--ink)}
  @media (hover:hover){ .letters-toggle:hover{color:var(--accent)} }
  .letters{max-width:900px;margin:0 auto;display:flex;flex-wrap:wrap;gap:.4rem;justify-content:center}
  .letters a{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:12px;background:#fff;color:var(--ink);text-decoration:none;font-weight:700;border:1px solid rgba(0,0,0,.08);transition:transform .15s}
  .letters a.letter-all{padding:0 12px;width:auto}
  @media (hover:hover){ .letters a:hover{color:var(--accent);transform:translateY(-1px)} }
  .is-hidden{display:none !important}
  @media (max-width:1024px){
    .site-header,.site-header .header-inner,.site-header .main-nav{display:flex !important}
    .site-header .header-inner{flex-wrap:nowrap !important}
    .site-header .main-nav{gap:.5rem !important}
  }
  /* كانت اللوحة ظاهر دائمًا — الآن نغلقها افتراضيًا */
.search-panel{ display:none; }               /* مغلقة */
.search-panel.is-open{ display:block; }      /* مفتوحة */
/* ألغِ الهامش/الحشوة الافتراضية */
html, body { margin: 0 !important; padding: 0 !important; }

/* تأكد أن الهيدر ملاصق تمامًا */
.site-header { margin-top: 0 !important; padding-top: 0 !important; }

/* بعض القوالب تضيف شريط علوي رفيع: احذف أي مسافة قبل الهيدر إن وجدت */
.header-top, .topbar, .site-top, .site-notice { margin: 0 !important; padding: 0 !important; border: 0 !important; }
:root{ --adminbar: 0px; }
/* ارتفاع شريط ووردبريس */
body.admin-bar{ --adminbar: 32px; }
@media (max-width:782px){ body.admin-bar{ --adminbar: 46px; } }

/* طبّق الارتفاع */
.site-header{ margin-top: var(--adminbar) !important; }
.site-header {
  min-height: 80px;
}
/* لو عندك scroll إلى لوحة البحث خله يحسب الارتفاع */
.search-panel{ scroll-margin-top: calc(80px + var(--adminbar)) !important; }
/* ----------------------------------------
   1) اجعل شريط الأيقونات صفًا واحدًا قابلًا للتمرير
   ---------------------------------------- */
.site-header .main-nav{
  flex-wrap: nowrap;              /* لا يلف لسطريْن */
  overflow-x: auto;               /* تمرير أفقي عند الضيق */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* إخفاء شريط التمرير */
}
.site-header .main-nav::-webkit-scrollbar{ display:none; }
.site-header .nav-item{ flex: 0 0 auto; }   /* كل عنصر يأخذ عرضه فقط */

/* (اختياري) سحب أنيق */
.site-header .main-nav{ scroll-snap-type: x proximity; }
.site-header .nav-item{ scroll-snap-align: center; }

/* ----------------------------------------
   2) تحسين التباعد والأحجام على الشاشات الصغيرة جدًا
   ---------------------------------------- */
@media (max-width: 414px){        /* آيفون XR/12 وما شابهه */
  .site-header .header-inner{ gap:.4rem; padding:.4rem .6rem; }
  .site-header .nav-item{ padding:.45rem; }
}
@media (max-width: 375px){        /* آيفون SE وأصغر */
  .site-header .header-inner{ gap:.25rem; padding:.35rem .5rem; }
  .site-header .nav-item{ padding:.38rem; }
  .site-header .nav-item .icon{ width:18px; height:18px; }
  .site-header .brand .icon{ width:22px; height:22px; }
}

/* ----------------------------------------
   3) احترام حافة النوتش في آيفون (safe area)
   ---------------------------------------- */
.site-header{
  padding-top: max(0px, env(safe-area-inset-top));
}

/* ----------------------------------------
   4) تعامل صحيح مع شريط ووردبريس عند تسجيل الدخول
   ---------------------------------------- */
body.admin-bar .site-header { margin-top: 32px; }
@media (max-width: 782px){
  body.admin-bar .site-header { margin-top: 46px; }
}

/* ----------------------------------------
   5) منع أي حواف علوية غير مقصودة
   ---------------------------------------- */
html, body{ margin:0; padding:0; }
/* 1) امنع أي تمرير جانبي دقّيق يطلع فراغ يسار */
html, body { overflow-x: hidden; }

/* 2) خلّي خلفية الهيدر تغطي حافة الشاشة، وتعامل مع الـ safe-area */
.site-header{
  padding-left:  max(.5rem, env(safe-area-inset-left));
  padding-right: max(.5rem, env(safe-area-inset-right));
}

/* 3) تأكيد محاذاة عناصر النافبار لليمين في RTL وعدم تمددها غلط */
.site-header .main-nav{
  margin-inline-start: auto;   /* يدفع النافبار لجهة اليسار في RTL بدون تمدد زائد */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.site-header .main-nav::-webkit-scrollbar{ display:none; }

.brand-logo{ height:40px; width:auto; display:block; }
@media (max-width:1024px){ .brand-logo{ height:28px; } .brand-text{ display:none; } }


/* حجم افتراضي للكمبيوتر/التابلت */
.brand-logo,
.header-logo img{
  height: 50px;           /* الكمبيوتر */
  width: auto;
  display: block;
  object-fit: contain;
}

/* تابلت وصغير */
@media (max-width: 992px){
  .brand-logo,
  .header-logo img{ height: 32px; }
}

/* جوال عادي */
@media (max-width: 576px){
  .brand-logo,
  .header-logo img{ height: 36px; }
}

/* جوال صغير جدًا (SE وما شابهه) */
@media (max-width: 375px){
  .brand-logo,
  .header-logo img{ height: 22px; }
}

/* محاذاة لطيفة داخل الهيدر */
.header-inner{ align-items: center; }


label.screen-reader-text {
    background: #dcdbd7;
    padding: 1px 8px;
    border-radius: 5px;
}



/* ظلّ المربعات والأزرار كان يزود كلفة الرسم — خففه */
.site-header .main-nav .nav-item .icon{
  box-shadow: none;
}
#search-panel{ content-visibility:auto; contain-intrinsic-size:1px 420px; }
#letters-list{ content-visibility:auto; contain-intrinsic-size:36px 160px; }


/* الكمبيوتر فقط: سلاسة تمرير */
@media (hover:hover){ html{ scroll-behavior:smooth; } }
/* الجوال: إلغها لتقليل عمل الـMain Thread */
@media (hover:none){ html{ scroll-behavior:auto; } }














body.search #primary, 
body.search .content-area, 
body.search main.site-main, 
body.search .osa-search-wrap {
  float: none !important;
  width: 100% !important;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}
body.search .widget-area, 
body.search .sidebar { display: none; } /* إن وُجد سايدبار */

/* اتّساق RTL */
body.search [dir="rtl"] { direction: rtl; }
body.search .osa-card { background:#fff; border:1px solid #dbe9e9; border-radius:12px; padding:10px; }
body.search .osa-grid2 { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:8px; }
@media (max-width: 768px){ body.search .osa-grid2 { grid-template-columns:1fr; } }
body.search mark { background:#fffb9e; padding:0 .15em; }

/* Tajawal local fonts (WOFF2 أولاً ثم TTF كاحتياط) */
@font-face{
  font-family:'Tajawal';
  src:url('/wp-content/themes/osa-theme-v2/fonts/Tajawal-Regular.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Tajawal';
  src:url('/wp-content/themes/osa-theme-v2/fonts/Tajawal-Medium.ttf') format('truetype');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Tajawal';
  src:url('/wp-content/themes/osa-theme-v2/fonts/Tajawal-Bold.ttf') format('truetype');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:'Tajawal';
  src:url('/wp-content/themes/osa-theme-v2/fonts/Tajawal-Black.ttf') format('truetype');
  font-weight:900;
  font-style:normal;
  font-display:swap;
}


/* ===== CLS FIX: تثبيت النصوص العلوية ===== */

/* اسم الفنان */
.hp-artist-link{
  line-height:1.4;
  min-height:1.4em;
  display:inline-block;
  padding-left: 5px;
}

/* العناوين الرئيسية والفرعية في الأعلى */
.home-title,
h1,
h2{
  line-height:1.4;
}



/* طبّق الخط على كل العناصر النصية الشائعة،
   وارفِع الأولوية بدون ما نكسّر أيقونات الـicon-font */
html, body, p, a, li, span, div, h1, h2, h3, h4, h5, h6,
button, input, select, textarea {
  font-family:'Tajawal', system-ui, -apple-system, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* لا تطبّق على الأيقونات (إن وُجدت) */
[class*="icon"] i, i[class*="icon"] { font-family: inherit !important; }

.home-title {text-align:center;color:#fff;margin:12px 0 14px;font-weight:600 !important;
    
}
    
    :root{ --adminbar:0px; }
    body.admin-bar{ --adminbar:32px; }
    @media (max-width:782px){ body.admin-bar{ --adminbar:46px; } }

    #search-panel{ display:none; padding:16px 0; background:#e9f4f4; scroll-margin-top: calc(80px + var(--adminbar)); }
    #search-panel.is-open{ display:block; }

    .search-box{ max-width: 1100px; margin: 0 auto; padding-inline: 12px; }
    .search-hint{ margin:0 0 .75rem; font-weight:700; color:#2a5a5f; }
    .advanced-link{ color:#0aa; text-decoration:none; font-weight:700; }
    .letters{ display:flex; flex-wrap:wrap; gap:.5rem; }
    .letters a{
      display:inline-flex; align-items:center; justify-content:center;
      min-width:36px; height:36px; padding:0 .6rem; border-radius:12px;
      background:#fff; color:#2a5a5f; text-decoration:none; font-weight:700;
      border:1px solid rgba(0,0,0,.06);
    }
    .letters .letter-all{ background:#0aa; color:#fff; border-color:#0aa; }
    
    
    
    .home-card{
        background:#fff;
        border-radius:18px;
        padding:0;overflow:hidden;
        padding: 18px 10px 10px 10px;
        margin: 30px 0 0 0;
    }
    
    .home-card-top {
        background: #f2f2f2;
        color: #8f8f8f;
        font-weight: 800;
        padding: 14px 18px;
        border-bottom: 2px solid #e5e5e5;
    }
    .home-card-top-do {
        display: grid;
        grid-template-columns: 2fr .7fr;
        gap: 10px;
    }
    .home-card-tabel {
    background: #eaf4f6;
    padding: 14px 18px;
    border-bottom: 10px solid #fff;
}

.home-title {
    text-align: center;
    color: #51848c;
    margin: 12px 0 14px;
    font-weight: 800;
}

.page-content {margin: 30px auto;text-align: center;font-weight: 600;background: #fff;padding: 15px;border-radius: 15px;}








.osa-tax-archive {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.osa-tax-header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.osa-tax-desc {
  color: #666;
  margin-bottom: 30px;
}

.osa-song-list {
  list-style: none;
  padding: 0;
}

.osa-song-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.osa-song-item a {
  font-weight: 600;
  text-decoration: none;
}

.osa-song-artist {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}













.osa-home-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:14px;
}

.osa-song-card{
    background:#e8f3f5;
    padding:12px 10px;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.osa-title {
    font-weight: 600;
    font-size: 15px;
    color: #2a7b8a;
}
.osa-home-latest svg {
    fill: #20a8c4;
    color: #5e8e98;
}
.osa-artist {
    font-size: 13px;
    color: #16757d;
    font-weight: 500;
}
.osa-song-title{
    font-weight:600;
}

.osa-song-title a{
    text-decoration:none;
    color:#0f2e33;
}

.osa-song-artist a{
    text-decoration:none;
    color:#1f9ca7;
    font-weight:500;
}


/* ===== Year Archive Header ===== */

.osa-year-header{
    text-align:center;
    margin-bottom:30px;
}

.osa-year-count{
    margin-top:8px;
    font-size:14px;
    color:#6f6f6f;
}

.osa-year-count span{
    font-weight:600;
    color:#2f5e66;
}


.osa-home-year .container{
    max-width:1100px;
    margin:0 auto;
    padding:40px 20px;
}

.osa-year-title{
    text-align:center;
    font-size:28px;
    margin-bottom:10px;
}

.osa-year-desc{
    text-align:center;
    color:#777;
    font-size:14px;
    margin-bottom:30px;
}




/* صفحة سنة الكلمات */
/* كمبيوتر */
.release-year-page .osa-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* تابلت */
@media (max-width: 1024px) {
    .release-year-page .osa-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* جوال */
@media (max-width: 600px) {
    .release-year-page .osa-grid2 {
        grid-template-columns: 1fr;
    }
}


.release-year-page .osa-card {
    background: #f3f6f6;
    border-radius: 12px;
    padding: 14px 18px;
    transition: .2s ease;
}

.release-year-page .osa-card:hover {
    background: #e8efef;
}


/* صفحة سنة الإصدار */
.release-year-page {
}

.release-year-page .home-card {
    padding: 35px 30px 45px;
}

.release-year-page .osa-main-title {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.release-year-page .osa-sub-title {
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    padding: 10px;

}


.release-year-page .osa-pagination {
    margin-top: 35px;
    text-align: center;
}

.release-year-page .osa-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border-radius: 8px;
    background: #eef3f3;
    color: #1f4d52;
    font-weight: 600;
    transition: all .2s ease;
    text-decoration: none;
}

.release-year-page .osa-pagination .page-numbers:hover {
    background: #1f9ca7;
    color: #fff;
}

.release-year-page .osa-pagination .current {
    background: #93abaf;
    color: #fff;
}


h1.lyricsTitle-h1 {
    font-size: 40px; 
    line-height: 1.25;
    color: #18717e;
}


@media (max-width: 576px) {

  h1.lyricsTitle-h1 {
    font-size: 26px;
  }

  article p {
    font-size: 18px;
    line-height: 1.6;
  }

}

.s-icon svg{
  width:45px;
  height:45px;
  fill:#bab5b5;
}

.stat-icon{
  stroke: #f2f2f2;
  display:block;
    margin: 0 auto 5px;
    stroke-width: 1.0;
}




/* Search */
/* ===== تنسيق معزول لصفحة البحث المتقدم فقط ===== */











.osa-search-page .wrap {
    margin: 0 auto;
        text-align: center;
}

.cardmain {

}
.cardmainhome {
    background: #f2f2f2;
    padding: 10px 0;
    margin: 15px 0;
    color: #716553;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
}

.osa-search-page .card {
    display: grid;
    border: 1px solid #dbe9e9;
    border-radius: 12px;
    padding: 10px;
    background: #e8f3f5;
    color: #2a7b8a;
}


.osa-search-page ul.grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
}


@media (max-width: 1024px) {
    .osa-search-page ul.grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 640px) {
    .osa-search-page ul.grid2 {
        grid-template-columns: 1fr;
    }
}




.osa-search-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 20px;
}

.osa-search-title {
    font-size: 28px;
    font-weight: 600;
    text-align: right; /* RTL */
}

.osa-search-again {
    text-align: left;
}


.osa-search-again a {
    display: inline-block;

    font-size: 18px;
    font-weight: 600;

    background: #cb7134;
    color: #fff;
    text-decoration: none;

    padding: 12px 28px;
    border-radius: 10px;

    line-height: 1;      /* أهم سطر */
    vertical-align: middle;
}
.osa-search-again a {
    transform: translateY(-2px);
}

.osa-search-again a:hover {
    background: #b8642d;
}



@media (max-width: 1024px) {
    .osa-search-head {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .osa-search-title,
    .osa-search-again {
        text-align: center;
    }
}














.osa-search-min {
    background: #e8f3f5;
}
.grid2 {
    display: grid;
    gap: 22px;
}

/* كمبيوتر 3 */
@media (min-width: 992px) {
    .grid2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* تابلت 2 */
@media (min-width: 600px) and (max-width: 991px) {
    .grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* جوال 1 */
@media (max-width: 599px) {
    .grid2 {
        grid-template-columns: 1fr;
    }
}

















/* ============================= */
/* OSA ADVANCED SEARCH LAYOUT */
/* ============================= */

.osa-search-page {
    padding: 0;
    margin: 0;
}

.osa-search-page .wrap {
    padding: 0;
    margin: 0;
}

/* الفورم */
.osa-search-page .controls {
    display: grid;
    gap: 14px;
    margin: 0;
}

/* إزالة أي مسافات افتراضية */
.osa-search-page .controls input,
.osa-search-page .controls select,
.osa-search-page .controls button {
    margin: 0;
}

/* تنسيق الحقول */
.osa-search-page input,
.osa-search-page select {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #dbe9e9;
    padding: 0 14px;
    font-size: 15px;
    box-sizing: border-box;
    width: 100%;
}

/* زر البحث */
.osa-search-page button {
    height: 48px;
    border-radius: 10px;
    border: none;
    background: #2a9aa0;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

/* ============================= */
/* كمبيوتر */
/* ============================= */

@media (min-width: 992px) {

    .osa-search-page .controls {
        grid-template-columns: 1fr;
    }

    /* حقل البحث فوق */
    .osa-search-page input[type="search"] {
        grid-column: 1 / -1;
        background: #f7f7f7;
        border: 1px solid #c7c7c7;
    }

    /* الأربعة عناصر في صف */
    .osa-search-page select[name="type"],
    .osa-search-page select[name="sort"],
    .osa-search-page input[name="ymin"],
    .osa-search-page input[name="ymax"] {
        width: 100%;
    }

    .osa-search-page .controls {
        grid-template-areas:
            "search"
            "filters"
            "button";
    }

    /* نعيد ترتيب العناصر */
    .osa-search-page input[type="search"] {
        order: 1;
        background: #f7f7f7;
        border: 1px solid #c7c7c7;

    }
    .osa-search-page select[name="type"] { order: 2;
                    background: #daf1f4;
}
    .osa-search-page select[name="sort"] { order: 3;
                    background: #daf1f4;
}
    .osa-search-page input[name="ymin"] { order: 4; 
                        background: #daf1f4;

    }
    .osa-search-page input[name="ymax"] { order: 5; 
                        background: #daf1f4;

    }
    .osa-search-page button {
        order: 6; }

    .osa-search-page .controls {
        grid-template-columns: repeat(4, 1fr);
    }

    .osa-search-page input[type="search"] {
        grid-column: span 4;
    }

    .osa-search-page button {
        grid-column: span 4;
    }
}

/* ============================= */
/* 📱 تابلت + جوال */
/* ============================= */

@media (max-width: 991px) {

    .osa-search-page .controls {
        display: grid !important;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0px;
    }

    /* البحث فوق ممتد */
    .osa-search-page input[type="search"] {
        grid-column: 1 / -1;
    }

    /* نجبر العناصر تكون نصف العرض فعلياً */
    .osa-search-page select,
    .osa-search-page input[type="number"] {
        width: 100% !important;
        max-width: 100%;
        background: #daf1f4;
    }

    .osa-search-page button {
        grid-column: 1 / -1;
    }
}


@media print {
  * {
    transform: none !important;
  }

  html, body {
    overflow: visible !important;
  }

  .oer-wrap,
  .oer-bar,
  header,
  nav,
  footer {
    display: none !important;
  }
}



.osa-article-breadcrumbs{
  margin-bottom: 12px;
  font-size: 14px;
  color: #777;
  text-align: right;
}

.osa-article-breadcrumbs a{
  color: #1f9ca7;
  text-decoration: none;
}

.osa-article-breadcrumbs a:hover{
  text-decoration: underline;
}

.osa-article-breadcrumbs .osa-article-sep{
  margin: 0 6px;
  color: #bbb;
}

.osa-article-breadcrumbs .osa-current{
  color: #6b7c80;
  font-weight: 400;
}




.osa-gridnew {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* تابلت */
@media (max-width: 1024px) {
    .osa-gridnew {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* جوال */
@media (max-width: 640px) {
    .osa-gridnew {
        grid-template-columns: repeat(1, 1fr);
    }
}

.osa-year-stats {
    margin-bottom: 30px;
}


.osa-song-yearcard {
    background: #f2f2f2;
    padding: 12px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.osa-song-yearcard svg {
    fill: #887b66;
    color: #afa698;
}

.osa-song-yearcard .osa-title {
    color: #716553;
    font-weight: 500;
}


.osa-song-yearcard .osa-title span {
    color: #b86027;
    margin-right: auto; /* هذا السر 🔥 */
}


.osa-song-card .osa-title svg {
    vertical-align: middle;
    margin-left: 5px;
}

.osa-song-card .osa-artist svg {
    vertical-align: middle;
    margin-left: 5px;
}

.release-year-page .osa-main-title-stats {
    font-size: 19px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
    color: #716553;
}


.osa-song-yearcard .osa-title {
    display: flex;
    align-items: center;
    width: 100%;
}



.osa-news-bar {
    background: #f8f4ed;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #a06868;
}


































/* نموذج اتصل بنا - OSA */

.osa-contact-box {

}

.osa-form label {
    display: block;
    margin-bottom: 0;
    font-weight: 600;
    color: #225458;
    font-size: 18px;
    text-align: right;
}

.osa-form input, .osa-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #99c0c6;
    border-radius: 6px;
    margin-bottom: 0;
    font-size: 14px;
    transition: 0.2s;
    background: #e8f3f5;
}

.osa-form input:focus,
.osa-form textarea:focus {
    border-color: #2c7a7b;
    outline: none;
}

.osa-form textarea {
    min-height: 120px;
    resize: vertical;
}

.osa-form button {
    background: #2c7a7b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s;
}

.osa-form button:hover {
    background: #245f60;
}

/* رسالة النجاح */
.osa-success {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    background: #e6f7ee;
    border: 1px solid #b7e4c7;
    border-radius: 10px;
    text-align: center;
}

.osa-success a {
    display: inline-block;
    margin-top: 15px;
    background: #2c7a7b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}


#osa-note {
    background: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
    color: #716553;
}


.osa-form p {
    margin: 0 !important;
}

.osa-form label {
    margin-bottom: 5px;
}

.osa-form input,
.osa-form textarea {
    margin-bottom: 12px;
}