
/* ====== القيم العامة ====== */
:root{
  --maroon: #7a0f18;       /* لون اسم الدكتور */
  --med-green: #00695c;    /* الأخضر الطبي */
  --overlay: rgba(0,105,92,.18); /* طبقة لون خفيفة فوق الخلفية */
  --text: #1c1c1c;
  --muted: #4a4a4a;
  --container: 1200px;
  --shadow: 0 20px 60px rgba(0,0,0,.15);
  --radius: 18px;
}

*{box-sizing: border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Tajawal", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: #cbc9c9;
}
@font-face {
  font-family: 'LamaSans';
  src: url('/css/font/ArbFONTS-LamaSans-Medium.ttf') format('woff2'),
       url('/css/font/ArbFONTS-LamaSans-Medium.ttf') format('woff'),
       url('/css/font/ArbFONTS-LamaSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

body {
  font-family: 'LamaSans', sans-serif;
}

.navbar{
  position: fixed;       /* ثابتة فوق */
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  background: transparent; /* افتراضي شفاف */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled{
  background: #337768;       /* اللون الغامق بعد النزول */
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.navbar-inner{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}
.navbar .logo img{
  font-size: 22px;
  font-weight: bold;
  width: 150px;
}
.nav-links a{
  margin-left: 24px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .3s ease;
}
.nav-links a:hover{color: #68081b;} /* اللون النبيتي */
.mobile-menu-toggle{
  display:none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}
.nav-links.show-menu{
  display:flex;
}

/* ريسبونسيف */
@media(max-width:768px){
  .nav-links{
    position: absolute;
    top:60px;
    left:0;
    width:100%;
    background:#4a4a4a;
    flex-direction: column;
    display:none;
  }
  .nav-links a{
    margin:12px 0;
    text-align:center;
  }
  .mobile-menu-toggle{
    display:block;
  }
}

/* ====== HERO ====== */
.hero{
  position: relative;
  min-height: 100vh;               /* يملا الشاشة */
  display: grid;
  place-items: center;
  overflow: hidden;
  /* حطي صورة الكفر هنا كخلفية للسيكشن كله */
  background: url("/css/cover.jpg") center/cover no-repeat fixed;
}
.hero::before{                      /* طبقة اللون الخفيفة */
  content:"";
  position:absolute; inset:0;
  background: var(--overlay);
  z-index: 0;
  backdrop-filter: blur(1px);       /* خفة بس لتهدئة الخلفية */
}

.hero-inner{
  width: min(100%, calc(var(--container) + 6vw));
  height: 100%;
  position: relative;
  z-index: 1;                       /* فوق الخلفية والطبقة */
}

/* صورة الدكتور في النص */
.hero-figure{
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  filter: drop-shadow(var(--shadow));
    left: 12vw;        /* بدل مركز الشاشة */
  top: 0%;
  transform: translateY(-50%);

}
.hero-figure img{
  width: clamp(320px, 43vw, 520px);
  height: auto;
  display:block;
  object-fit: contain;
}

/* المحتوى على اليمين (فوق الخلفية) */
.hero-content{
  position: absolute;
  top: 50%;
  right: 6vw;
  transform: translateY(-50%);
  width: min(540px, 88vw);
  z-index: 3;
  text-align: right;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.doctor-name{
  margin: 0 0 8px;
  line-height: 1;
  font-size: clamp(38px, 5vw, 80px);
  font-weight: 1000;
  color: var(--maroon);
    font-family: 'EBN_ELNILE', 'Tajawal', sans-serif;
  color: #68081b; /* النبيتي */

}
@font-face {
  font-family: 'EBN_ELNILE';
  src: url('/css/font/ArbFONTS-eb-nile.ttf') format('woff2'),
       url('/css/font/ArbFONTS-eb-nile.ttf') format('woff'),
       url('/css/font/ArbFONTS-eb-nile.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.doctor-title{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.9;
  font-weight: bold;
}

.services{
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid; gap: 10px;
}
.services li{
  padding: 8px 12px;
  border-right: 4px solid var(--med-green); /* ستايل الكفر */
  background: rgba(255,255,255,.65);
  border-radius: 8px;
  font-size: clamp(14px,1.3vw,18px);
  font-weight: bold;
}

.cta-row{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.btn-whatsapp{
  display:inline-block;
  padding: 12px 18px;
  background: #022e29;
  color: #fff; text-decoration: none; border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,105,92,.35);
  transition: transform .5s ease, box-shadow .2s ease, opacity .5s ease;
  border: 2px double #337768;
}
.btn-whatsapp:hover{ transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 105, 93, 0)}

/* شريط العناوين والرقم */
.info-strip{
  position: absolute;
  inset: auto 0 24px 0;
  width: min(100%, calc(var(--container) + 6vw));
  margin-inline: auto;
  display:flex; justify-content: space-between; align-items:center;
  gap: 16px;
  background: rgba(0,105,92,.92);
  color:#fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  z-index: 3;
  backdrop-filter: blur(2px);
}
.info-strip .locations{font-size: clamp(14px,1.4vw,22px); font-weight:700}
.info-strip .phone{color:#fff; text-decoration:none; font-size: clamp(14px,1.4vw,22px)}

/* ====== حركة الظهور (تتكرر مع السكرول) ====== */
.hidden-left, .hidden-right{
  opacity: 0;
  filter: blur(3px);
  transition:
    transform 5s  cubic-bezier(.2,.7,.2,1),
    opacity 5s  ease,
    filter 5s  ease;
  will-change: transform, opacity, filter;
}
.hidden-left{ transform: translate(-80px,0) scale(.98) }
.hidden-right{ transform: translate(80px,0)  scale(.98) }
.show{
  opacity: 1;
  filter: blur(0);
  transform: translate(0,0) scale(1);
}


/* تقليل الحركة لو المستخدم مفضل تقليل الحركة */
@media (prefers-reduced-motion: reduce){
  .hidden-left, .hidden-right{ transition: none; transform: none; opacity: 1; filter:none }
}

/* ====== ريسبونسيف ====== */
@media (max-width: 992px){
  .hero{ background-attachment: scroll } /* لأداء أفضل على الموبايل */
  .hero-content{
    right: 50%;
    transform: translate(50%, -50%);  /* خلي المحتوى أقرب للمنتصف */
    width: min(92vw, 560px);
    text-align: center;
    padding-top: 100px;
  }
  .services li{ border-right-width: 3px }
  .info-strip{ inset: auto 16px 16px 16px; }
}

@media (max-width: 640px){
   .hero-figure img{ width: clamp(450px, 80vw, 550px);
    margin-left: -70px; 
       padding-top: 50px;
   }
  .doctor-title{ line-height: 1.8 }
  .services{ gap:8px }
  .services li{ padding: 8px 10px }
  .btn-whatsapp{ width: 100%; text-align:center ;}
  .info-strip{ flex-direction: column; gap:8px; text-align:center ;}
    .hero-figure{
    left: 22vw;        /* بدل مركز الشاشة */
  
}
}


.experience {
  margin-top: 20px;
  font-size: 16px;
  color: #00695c;
}
.experience span{
    color: #fff;
}

@media (max-width: 768px){
  .info-strip{
    width: 100%;           /* ياخد العرض كله */
    border-radius: 0;      /* يشيل الحواف الدائرية لو عايزة الشريط كامل */
    inset: auto 0 0 0;     /* يمسك أطراف الشاشة */
    margin: 0;             /* يشيل أي مسافات جانبية */
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 12px;
  }
}



/* ====== Certificates Section (dark & elegant) ====== */
:root{
  --cert-bg: #cbc9c9;        /* الخلفية الأساسية */
  --cert-panel: #c3cbcd;     /* لون أغمق للكروت والإطارات */
  --accent: #337768;         /* لون تمييزي دهبي فاتح عشان الفخامة */
  --muted-light: rgba(255,255,255,.9);
  --glass: rgba(255,255,255,.08);
}

.certs-section{
  background: var(--cert-bg);
  color: var(--muted-light);
  padding: clamp(40px, 6vw, 80px) 16px;
  overflow: hidden;
}

.certs-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: center;
  position: relative;
}

/* --- صورة الدكتور داخل إطار أنيق --- */
.certs-figure{
  display:flex; justify-content:center; align-items:center;
}
.figure-frame{
  width: 320px;
  height: 420px;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(3,9,14,.6), 0 4px 12px rgba(0,0,0,.6);
  display:flex; justify-content:center; align-items:center;
  transform-origin: center;
   background: var(--cert-panel);
  border: 1px solid rgba(255,255,255,.08);
}
.figure-frame img{
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display:block;
}

/* --- المحتوى --- */
.certs-content{ padding: 8px 4px; }
.section-title{
  color: var(--accent);
  font-size: clamp(26px, 3.6vw, 40px);
  margin: 0 0 8px;
  font-weight: bold;
  letter-spacing: .6px;
}
.section-sub{
  color: #1c1c1c;
  margin: 0 0 22px;
  font-size: clamp(18px, 2vw, 18px);
  line-height: 1.8;
  font-weight: bold;
}

/* --- شبكة الكروت --- */
.certs-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.cert-card{
 border-radius: 14px;
  padding: 18px;
  min-height: 130px;
  box-shadow: 0 10px 30px rgba(2,6,10,.6);
 display:flex;
  flex-direction:column;
  gap:8px;
  transform-origin: left center;
 background: var(--cert-panel);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted-light);
  transition: transform 450ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms ease;
}
.cert-card:hover{
  transform: translateY(-8px) scale(1.02);
  background: #f3e9e7;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.cert-badge{
  
  width: 44px; height: 44px;
  border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  font-size: 20px;
    background: #4a4a4a;
  color: var(--accent);
}

/* --- شهادات مصغرة --- */
.cert-thumbs{
  display:flex; gap:12px; align-items:center;
}
.cert-thumbs img{
  width: 110px; height: auto; border-radius: 8px;
  object-fit: cover;
   border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.5);
}

/* ====== حركة الظهور المتكررة (تستخدم نفس فئاتك) ====== */
.hidden-left, .hidden-right, .hidden-up{
  opacity: 0;
  transform: translateY(24px) scale(.98);
  filter: blur(4px);
  transition:
    transform 900ms cubic-bezier(.2,.7,.2,1),
    opacity 900ms ease,
    filter 900ms ease;
  will-change: transform, opacity, filter;
}
.hidden-left{ transform: translateX(60px) translateY(10px) scale(.98) }
.hidden-right{ transform: translateX(-60px) translateY(10px) scale(.98) }
.hidden-up{ transform: translateY(36px) scale(.98) }
.show{
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) translateY(0) scale(1);
}

.cert-card h3{
    color: #7a0f18;
}
.cert-card p{
color: #1c1c1c;
}
/* ====== responsive ====== */
@media (max-width: 980px){
  .certs-inner{ grid-template-columns: 340px 1fr; gap: 24px; }
  .figure-frame{ width: 280px; height: 360px; }
  .certs-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .certs-inner{
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .figure-frame{ width: 220px; height: 300px; margin: 0 auto; }
  .certs-grid{ grid-template-columns: 1fr; }
  .cert-thumbs img{ width: 86px; }
  .certs-section{ padding: 28px 12px; }
  .section-title{ text-align: center; }
  .section-sub{ text-align: center; }
}




/* ====== SOCIAL MEDIA SECTION ====== */
.social-section{
  background: #cbc9c9;
  color: #4a4a4a;
  padding: clamp(40px, 6vw, 80px) 16px;
  text-align: center;
}

.social-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.social-title{
  color: #337768;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}

.social-sub{
  color: rgba(28,28,28,.85);
  font-size: clamp(14px, 1.4vw, 18px);
  margin-bottom: 24px;
}

/* Grid الكروت */
.social-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 2fr));
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top:15px ;
}

/* الكارت نفسه */
.social-card{
  background: linear-gradient(145deg, #e0dfdf, #d1cfcf);
  color: #1c1c1c;
  border-radius: 18px;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .35s ease;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(30px);
}

.social-card i{
  font-size: 28px;
  transform: translateZ(12px);
  color: #7a0f18;
}

.social-card span{
  font-weight: 600;
  transform: translateZ(8px);
}

/* Hover effect */
.social-card:hover{
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 10px 25px rgba(0,0,0,0.5);
  background: linear-gradient(145deg, #d1cfcf, #bfbcbc);
}

/* ظهور عند السكرول */
.show-up{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px){
  .social-card{
    width: 100px;
    height: 100px;
    font-size: 12px;
  }
  .social-card i{ font-size: 22px; }
}


:root{
  --maroon: #7a0f18;       
  --med-green: #00695c;    
  --overlay: rgba(0,105,92,.18); 
  --text: #1c1c1c;
  --muted: #4a4a4a;
  --container: 1200px;
  --shadow: 0 20px 60px rgba(0,0,0,.15);
  --radius: 18px;
}

*{box-sizing:border-box}
body{margin:0;padding:0;font-family:"Tajawal", system-ui; background:#cbc9c9; color:var(--text);}

/* ====== الخدمات ====== */
/* ====== الخدمات ====== */
.services-section{
  padding: clamp(60px, 8vw, 120px) 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.services-inner{
  display: flex;
  max-width: var(--container);
  width: 100%;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

.services-left{
  flex: 1;
  color: #4a4a4a;
}
.services-left h2{
  font-size: clamp(28px, 4.2vw, 56px);
  margin-bottom: 12px;
  color: #337768;
  font-weight: 800;
  text-shadow: 3px 3px 0 #fff, 6px 6px 0 rgba(0,0,0,.2);
  margin-right: 30px;
}
.services-left p{
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 24px;
}

.services-right{
  flex: 1.2;
}
.services-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list li a{
  color: #7a0f18;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(74,74,74,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.services-list li a:hover{
  background: rgba(74,74,74,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translateX(6px);
}

/* صورة الدكتور */
.services-figure{
  position: absolute;
  top: 50%;
  right: 7vw;
  transform: translateY(-50%);
   width: auto;          /* العرض حسب الصورة */
  max-width: 40vw;      /* أقصى عرض ديناميكي */
  height: auto;         /* الطول يتغير تلقائي */
  max-height: 80vh;     /* أقصى ارتفاع يظهر كامل على الشاشة */
  margin-right: -40px;
}
.services-figure img{
  width: 100%;
  height: 100%;
  object-fit: contain;  /* يظهر الصورة كاملة */
  display: block;
}

/* الحركة عند السكرول */
.hidden-services{
  opacity: 0;
  transform: translateX(80px);
  transition: transform .8s ease, opacity .8s ease;
}
.show-services{
  opacity: 1;
  transform: translateX(0);
}

/* ريسبونسيف */
@media (max-width: 992px){
  .services-inner{
    flex-direction: column; 
    align-items: center; 
    text-align: center;
  }
  .services-figure{
    position: relative; 
    transform: translateY(0); 
    margin: 24px 0 0 0;
    width: 60%;  /* أصغر على الموبايل */
  }
  .services-right{ width: 100%; }
  .services-list li a{ transform: translateX(0); }
}
@media (max-width: 992px){
  .services-figure{
    position: relative;    /* تتحرك تحت الكلام */
    right: 0;
    top: 0;
    transform: none;
    width: 90%;            /* تقريباً نفس عرض الشاشة */
    max-width: 350px;      /* أقصى حجم مناسب */
    margin: 24px auto 0 auto; /* يوسّط الصورة */
  }

  .services-figure img{
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}


.clinics-section{
  padding: clamp(60px, 8vw, 120px) 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-title{
  font-size: clamp(28px, 4vw, 48px);
  color: #337768;
  margin-bottom: 12px;
}

.section-desc{
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 40px;
}

.section-desc .btn-whatsapp{
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: #7a0f18;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}
.section-desc .btn-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.clinics-list{
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.clinic-card{
  flex: 1 1 280px;
  max-width: 320px;
  background: #4a4a4a;
  color: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  transition: transform .35s ease, box-shadow .35s ease;
  text-align: right;
}

.clinic-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.25);
}

.clinic-card h3{
  margin-top: 0;
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 12px;
  color: #337768;
}
.highlight-text {
  background: rgba(255, 255, 255, 0.653); /* خلفية بيضاء شفافة */
  padding: 4px 15px;
  border-radius: 12px;
  display: inline-block;
}

.clinic-card p{margin:6px 0;}

/* حركة ظهور عند السكرول */
.hidden-clinic{
  opacity: 0;
  transform: translateY(40px);
  transition: transform .7s ease, opacity .7s ease;
}
.show-clinic{
  opacity: 1;
  transform: translateY(0);
}

/* ريسبونسيف */
@media (max-width: 992px){
  .clinics-list{ flex-direction: column; align-items: center; }
  .clinic-card{text-align: center; }
}

.map-link{
  margin-left: 8px;
  font-size: 1.2em;
  text-decoration: none;
  color: #ffd700; /* لون ذهبي يبرز الأيقونة */
  transition: transform .25s ease, color .25s ease;
}
.map-link:hover{
  transform: scale(1.2);
  color: #ff4500; /* يتغير عند المرور */
}
.main-video-section{
  padding: clamp(40px,5vw,80px) 16px;
  text-align:center;
}
.video-title{
  font-size:clamp(24px,3.5vw,40px);
  margin-bottom:24px;
  color:#337768;
}

.video-wrapper{
  max-width:700px;
  margin-inline:auto;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 36px rgba(0,0,0,0.18);
  margin-bottom:24px;
}

.btn-view-reels{
  display:inline-block;
  background:#68081b;
  color:#fff;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 24px rgba(104,8,27,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-view-reels:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(104,8,27,.45);
}

/* ظهور عند السكرول */
.hidden-video{
  opacity:0;
  transform:translateY(30px);
  transition:transform .8s ease,opacity .8s ease;
}
.show-video{
  opacity:1;
  transform:translateY(0);
}

/* ريسبونسيف */
@media(max-width:992px){.video-wrapper iframe{width:60%;height:450px;}}
@media(max-width:640px){.video-title{font-size:clamp(20px,4vw,28px);}}



.site-footer{
  background:#4a4a4a;  /* اللون الغامق المتناسق مع الموقع */
  color:#fff;
  padding:40px 16px 20px;
  font-family:"Tajawal",sans-serif;
}
.footer-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer-inner h3{
    color: #d1cfcf;
    font-weight: bold;
}
.footer-inner h3:hover{
  color: #7a0f18;
}
.footer-col{
  flex:1;
  min-width:220px;
}
.footer-logo{
  max-width:150px;
  margin-bottom:12px;
}
.footer-desc{
  font-size:24px;
  line-height:1.3;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:8px;
}
.footer-links a{
  color:#fff;
  text-decoration:none;
  transition:color .3s ease;
}
.footer-links a:hover{color:#68081b;} /* اللون النبيتي */
.footer-contact p{
  margin:4px 0;
  font-size:14px;
}
.footer-socials{
  display:flex;
  gap:12px;
  margin-top:8px;
}
.footer-socials a img{
  width:32px;
  height:32px;
  object-fit:contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  transition:transform .2s ease;
}
.footer-socials a:hover img{
  transform:scale(1.1);
}
.footer-socials a{
  display:inline-block;
  margin-right:12px;
  font-size:24px;
  color:#fff;
  transition: transform .2s ease, color .2s ease;
}
.footer-socials a:hover{
  transform: scale(1.2);
  color:#68081b; /* اللون النبيتي */
}

.footer-bottom{
  text-align:center;
  margin-top:24px;
  font-size:13px;
  color:#bbb;
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:12px;
}

/* ريسبونسيف */
@media(max-width:768px){
  .footer-inner{flex-direction:column; align-items:center; text-align:center;}
  .footer-col{min-width:100%; margin-bottom:20px;}
  .footer-socials{justify-content:center;}
}
