/* responsive.css - تحسين استجابة شامل لجميع الأجهزة */
/* ================================================== */

/* 1. إعدادات أساسية للاستجابة */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

/* 2. نقاط التوقف الشاملة لجميع الأجهزة */

/* 📱 الهواتف الذكية الصغيرة (iPhone SE, Samsung Galaxy S8, etc) */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }

  .logo img {
    width: 120px !important;
    height: 120px !important;
    margin-right: -30px !important;
  }

  .hero h1,
  .about-hero h1,
  .hero-title {
    font-size: 1.6rem !important;
  }

  .hero p,
  .about-hero p,
  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  nav ul li {
    margin: 3px 5px !important;
  }

  .header-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .search-box input {
    width: 140px !important;
  }
}

/* 📱 الهواتف الذكية المتوسطة (iPhone 12-15, معظم أندرويد) */
@media (max-width: 428px) and (min-width: 376px) {
  html {
    font-size: 15px;
  }

  .hero h1,
  .about-hero h1 {
    font-size: 1.8rem !important;
  }

  .search-box input {
    width: 160px !important;
  }
}

/* 📱 الهواتف الذكية الكبيرة & الأفقية */
@media (max-width: 767px) {

  /* تحسينات عامة للهواتف */
  header {
    flex-direction: column;
    height: auto;
    padding: 10px 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  /* تحسين الأقسام الرئيسية */
  .hero,
  .about-hero,
  .modern-hero {
    height: 60vh;
    min-height: 400px;
    padding: 20px 15px;
  }

  .hero-content,
  .about-hero-content {
    padding: 20px;
  }

  /* تحسين البطاقات */
  .features-grid,
  .grants-grid,
  .cards-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* تحسين النماذج */
  .input-group {
    grid-template-columns: 1fr;
  }

  .photo-names-row {
    flex-direction: column;
  }

  .names-section {
    grid-template-columns: 1fr;
  }

  .academic-row {
    grid-template-columns: 1fr;
  }

  /* تحسين النوافذ المنبثقة */
  .login-modal {
    width: 95vw;
    left: 2.5vw;
  }

  .details-modal,
  .application-modal {
    width: 98vw;
    margin: 10px 1vw;
  }
}

/* 📱 الهواتف في الوضع الأفقي */
@media (max-width: 767px) and (orientation: landscape) {

  .hero,
  .about-hero,
  .modern-hero {
    height: 80vh;
    min-height: 450px;
  }

  .login-modal,
  .details-modal,
  .application-modal {
    max-height: 80vh;
  }

  .application-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

/* 🏻 الأجهزة اللوحية الصغيرة (iPad Mini) */
@media (max-width: 834px) and (min-width: 768px) {

  .features-grid { 
    grid-template-columns: repeat(2, 1fr);
  }

  .grants-grid,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container {
    padding: 0 30px;
  }
}

/* 💻 الأجهزة اللوحية الكبيرة (iPad Pro, Surface) */
@media (max-width: 1024px) and (min-width: 835px) {

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grants-grid,
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .documents-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    max-width: 992px;
  }
}

/* 🖥 أجهزة اللابتوب الصغيرة */
@media (max-width: 1280px) and (min-width: 1025px) {
  .container {
    max-width: 1200px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 🖥 الشاشات الكبيرة (أكثر من 1440px) */
@media (min-width: 1441px) {
  .container {
    max-width: 1400px;
  }

  html {
    font-size: 18px;
  }
}

/* 3. تحسينات خاصة بأنظمة التشغيل */

/* 🍎 أجهزة Apple (iPhone, iPad) */
@supports (-webkit-touch-callout: none) {

  .hero,
  .about-hero,
  .modern-hero {
    height: -webkit-fill-available;
  }

  input,
  select,
  textarea {
    font-size: 16px;
    /* منع التكبير في iOS */
  }
}

/* 🤖 أجهزة Android */
@supports not (-webkit-touch-callout: none) {

  .hero,
  .about-hero,
  .modern-hero {
    height: 100vh;
    height: 100dvh;
    /* الوحدات الديناميكية */
  }
}

/* 4. تحسينات التفاعل واللمس */

/* تحسين الأزرار للشاشات التي تعمل باللمس */
button,
.btn,
.cta-button,
.submit-btn,
.apply-btn,
.details-btn,
.login-btn {
  min-height: 44px;
  min-width: 44px;
  padding: 12px 20px;
  font-size: 1rem;
  -webkit-tap-highlight-color: transparent;
}

/* تحسين الروابط للشاشات التي تعمل باللمس */
nav ul li a {
  padding: 12px 16px;
  display: block;
}

/* تحسين حقول الإدخال */
input,
select,
textarea {
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 8px;
}

/* 5. تحسينات الأداء والوصول */

/* تقليل الحركة للمستخدمين الذين يفضلون ذلك */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* تحسين التباين العالي */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066cc;
    --secondary-color: #000033;
    --text-color: #000000;
  }

  .feature-card,
  .value-item,
  .team-member {
    border: 2px solid #000;
  }
}

/* الوضع الداكن */
@media (prefers-color-scheme: dark) {
  :root {
    --light-bg: #1a1a1a;
    --white: #2d2d2d;
    --text-color: #e0e0e0;
    --secondary-color: #b0b0b0;
  }
}

/* 6. إصلاحات محددة للمكونات */

/* إصلاح التبويبات في النماذج على الشاشات الصغيرة */
@media (max-width: 480px) {
  .application-tabs {
    flex-direction: column;
  }

  .application-tab {
    flex: 1;
    min-width: auto;
    font-size: 12px;
    padding: 12px 8px;
  }

  .tabs {
    flex-wrap: wrap;
  }

  .tab {
    min-width: 50%;
  }
}

/* إصلاح شبكة المستندات */
@media (max-width: 1200px) {
  .documents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}

/* إصلاح الإحصائيات */
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

@media (max-width: 380px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* 7. تحسينات الفوتر */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section {
    padding: 0 20px;
  }
}

/* 8. منع التحديد غير المرغوب فيه على المحمول */
@media (max-width: 768px) {
  body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  input,
  textarea,
  [contenteditable] {
    -webkit-user-select: text;
    user-select: text;
  }
}

/* 9. تحسين شريط التمرير للمحمول */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
}

/* 10. دعم الطابعات */
@media print {

  .header-actions,
  nav,
  .login-modal,
  .translate-dropdown,
  .search-box {
    display: none !important;
  }

  .hero,
  .about-hero,
  .modern-hero {
    background: white !important;
    color: black !important;
    height: auto !important;
  }

  .feature-card,
  .value-item,
  .team-member {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
}