/* ==============================================
   هاديلا للتدريب والاستشارات العقارية
   Premium Design System v2.0
   ============================================== */

:root {
  --navy: #0B2240;
  --navy-dark: #06162e;
  --navy-light: #1a3559;
  --orange: #E58200;
  --orange-light: #ffa826;
  --orange-dark: #c47000;
  --gold: #F59E0B;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;

  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.06);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px rgba(229,130,0,0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ar);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}

body.en { direction: ltr; font-family: var(--font-en); }
body.en .text-ar { display: none; }
body:not(.en) .text-en { display: none; }

::selection { background: var(--orange); color: var(--white); }

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-ar);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
body.en h1, body.en h2, body.en h3, body.en h4, body.en h5, body.en h6 {
  font-family: var(--font-en);
}

.display-1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 900; letter-spacing: -0.01em; }
.display-3 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 1rem;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--navy);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 580px;
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== Glassmorphism ========== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(229,130,0,0.2);
}
.glass-card-dark {
  background: rgba(11,34,64,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  padding: 0.6rem 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.navbar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 44px; width: auto; display: block; }
.navbar.scrolled .logo-img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
}
.navbar.scrolled .nav-links a { color: var(--slate-700); }
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(229,130,0,0.08);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; }
.navbar.scrolled .nav-links a::after { bottom: 0; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.lang-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: all 0.25s ease;
  font-family: inherit;
}
.navbar.scrolled .lang-toggle {
  background: var(--slate-100);
  border-color: var(--slate-200);
  color: var(--navy);
}
.lang-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  padding: 0.25rem;
}
.navbar.scrolled .mobile-menu-btn { color: var(--navy); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: inherit;
}
.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  opacity: 1;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--slate-100);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

.btn-whatsapp {
  background: var(--navy);
  color: white;
}
.btn-whatsapp:hover {
  background: var(--navy-light);
  opacity: 1;
}

.btn-sm { padding: 0.35rem 0.9rem; font-size: 0.78rem; }
.btn-lg { padding: 0.65rem 1.5rem; font-size: 0.9rem; }
.btn-xl { padding: 0.8rem 2rem; font-size: 0.95rem; border-radius: var(--radius-md); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/photos/18c1f106-47e9-45f0-902a-377d890e342a00.png') center/cover;
}
.hero-overlay {
  display: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,130,0,0.08) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 780px;
  padding: 6rem 0 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229,130,0,0.12);
  border: 1px solid rgba(229,130,0,0.25);
  padding: 0.4rem 1rem 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 580px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* ========== Sections ========== */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-alt {
  background: var(--slate-50);
}
.section-dark {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
  color: white;
}
.section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
  margin: 0;
}
.section-divider-light {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid.reverse .split-content { order: 2; }
.split-grid.reverse .split-visual { order: 1; }

.split-content { padding: 1rem 0; }
.split-visual img, .split-visual video {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ========== Service Cards Premium ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); transform-origin: left; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(229,130,0,0.1), rgba(229,130,0,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(229,130,0,0.3);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.service-card-image {
  width: calc(100% + 4rem);
  height: 160px;
  margin: -2.5rem -2rem 1.25rem;
  overflow: hidden;
  position: relative;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.08);
}
.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, var(--white));
}

.service-card .btn {
  position: relative;
  z-index: 1;
}

.service-card-features {
  list-style: none;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--slate-600);
  padding: 0.35rem 0;
}
.service-card-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ========== Stats Premium ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ========== Features Premium ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.features-grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 1200px) {
  .features-grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .features-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(229,130,0,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(229,130,0,0.1), rgba(229,130,0,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
}
.feature-text h4 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.feature-text p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ========== Bento Grid ========== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
.bento-item {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.bento-item:hover .bento-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
}
.bento-item-wide { grid-column: span 2; }
.bento-item-tall { grid-row: span 2; }
.bento-icon {
  width: 48px; height: 48px;
  background: rgba(229,130,0,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.bento-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.bento-item p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.7; }
.bento-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(229,130,0,0.08);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  line-height: 1;
  pointer-events: none;
}

/* ========== Timeline ========== */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  right: 2rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--gold), transparent);
}
body.en .timeline::before { right: auto; left: 2rem; }
.timeline-item {
  position: relative;
  padding-right: 5rem;
  padding-bottom: 3rem;
}
body.en .timeline-item { padding-right: 0; padding-left: 5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  right: 1.35rem;
  width: 16px; height: 16px;
  background: var(--orange);
  border: 3px solid var(--slate-100);
  border-radius: 50%;
  top: 0.25rem;
}
body.en .timeline-dot { right: auto; left: 1.35rem; }
.timeline-content {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(-4px);
}
body.en .timeline-content:hover { transform: translateX(4px); }
.timeline-content h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.7; }
.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* ========== Testimonials ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 4rem;
  color: rgba(229,130,0,0.08);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 0.8rem; color: var(--slate-400); }

/* ========== FAQ ========== */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--orange); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  gap: 1rem;
}
body.en .faq-question { text-align: left; }
.faq-question .icon {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--slate-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  transition: all 0.3s ease;
}
.faq-item.active .faq-question .icon {
  background: var(--orange);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.8;
}

/* ========== CTA ========== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('/photos/pexels-brett-sayles-2599538.jpg') center/cover;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,22,46,0.8);
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 50%, rgba(229,130,0,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 75% 50%, rgba(229,130,0,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
}
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ========== Footer ========== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,130,0,0.3), transparent);
}
.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 30px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
body.en .footer h4::after { right: auto; left: 0; }
.footer p { font-size: 0.88rem; line-height: 1.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links a:hover { color: var(--orange); transform: translateX(-4px); }
body.en .footer-links a:hover { transform: translateX(4px); }
.footer-contact { list-style: none; }
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact .icon { color: var(--orange); flex-shrink: 0; margin-top: 0.15rem; }
.social-links { display: flex; gap: 0.5rem; margin-top: 1rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-link svg {
  width: 16px; height: 16px;
  fill: currentColor;
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}
.social-link.yt:hover { background: #FF0000; border-color: #FF0000; color: white; }
.social-link.fb:hover { background: #1877F2; border-color: #1877F2; color: white; }
.social-link.li:hover { background: #0A66C2; border-color: #0A66C2; color: white; }
.social-link.ig:hover { background: #E4405F; border-color: #E4405F; color: white; }
.social-link.tw:hover { background: #000; border-color: #000; color: white; }
.social-link.tt:hover { background: #000; border-color: #000; color: white; }
.social-link.sc:hover { background: #FFFC00; border-color: #FFFC00; color: #000; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ========== Page Banner ========== */
.page-banner {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  background: var(--navy-dark);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background: url('/photos/pexels-brett-sayles-2599538.jpg') center/cover;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,34,64,0.96) 0%, rgba(11,34,64,0.92) 100%);
}
.page-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-banner h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.page-banner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.page-banner-breadcrumb a { color: var(--orange); }

/* ========== Forms ========== */
.form-section { padding: 5rem 0; }
.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.form-card h2 { text-align: center; margin-bottom: 0.5rem; }
.form-card .section-subtitle { text-align: center; margin: 0 auto 2rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { margin-bottom: 0; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: var(--slate-50);
  color: var(--slate-700);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,130,0,0.1);
  background: white;
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 2.5rem;
}
body.en select.form-control {
  background-position: right 1rem center;
  padding-left: 1rem;
  padding-right: 2.5rem;
}
.form-submit { grid-column: 1 / -1; margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

/* ========== Course Cards ========== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.course-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.course-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.course-card:hover .course-card-image img { transform: scale(1.05); }
.course-card-image .badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(229,130,0,0.3);
}
body.en .course-card-image .badge { right: auto; left: 1rem; }
.course-card-body { padding: 1.5rem; }
.course-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.course-card-body p { font-size: 0.88rem; color: var(--slate-500); margin-bottom: 1rem; line-height: 1.6; }
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--slate-500);
}
.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  background: var(--slate-50);
  border-radius: 6px;
}

/* ========== Hero Article ========== */
.hero-article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}
.hero-article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.hero-article-image {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}
.hero-article-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-article:hover .hero-article-image img { transform: scale(1.05); }
.hero-article-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,34,64,0.1) 0%, transparent 50%);
}
body.en .hero-article-image::after {
  background: linear-gradient(225deg, rgba(11,34,64,0.1) 0%, transparent 50%);
}
.hero-article-image .featured-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(229,130,0,0.3);
}
body.en .hero-article-image .featured-tag { right: auto; left: 1.25rem; }
.hero-article-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-article-body .category {
  display: inline-block;
  background: rgba(229,130,0,0.1);
  color: var(--orange);
  padding: 0.25rem 0.85rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.hero-article-body h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.hero-article-body h2 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.hero-article-body h2 a:hover { color: var(--orange); }
.hero-article-body p {
  font-size: 0.92rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hero-article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--slate-400);
}
.hero-article-meta .author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
}
.hero-article-meta .author-info {
  display: flex;
  flex-direction: column;
}
.hero-article-meta .author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
}
.hero-article-meta .author-role {
  font-size: 0.75rem;
  color: var(--slate-400);
}
.hero-article-meta .date {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: auto;
}
body.en .hero-article-meta .date { margin-right: 0; margin-left: auto; }

/* ========== Article Cards ========== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.article-card-image {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.article-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-body { padding: 1.5rem; }
.article-card-body .category {
  display: inline-block;
  background: rgba(229,130,0,0.08);
  color: var(--orange);
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.article-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.article-card-body h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.article-card-body h3 a:hover { color: var(--orange); }
.article-card-body p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.6; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

/* ========== Contact Premium ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--slate-100);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(229,130,0,0.1), rgba(229,130,0,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
}
.contact-item h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-item p { font-size: 0.88rem; color: var(--slate-500); }

/* ========== Industries Grid ========== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 1199px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
.industry-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.industry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.industry-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--orange);
}
.industry-icon svg {
  width: 28px; height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-item h4 { font-size: 0.9rem; }

/* ========== Benefits Grid ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.benefit-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(229,130,0,0.1), rgba(229,130,0,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--orange);
  transition: all 0.4s ease;
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(229,130,0,0.3);
}
.benefit-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.7; }

/* ========== Floating Elements ========== */
.float-anim {
  animation: float 6s ease-in-out infinite;
}
.float-anim-delayed {
  animation: float 6s ease-in-out 2s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========== Pricing Cards ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(229,130,0,0.1);
}
.pricing-card.featured::before {
  content: 'الأكثر طلباً';
  position: absolute;
  top: 1.5rem; right: -2.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  padding: 0.3rem 3rem;
  font-size: 0.78rem;
  font-weight: 700;
  transform: rotate(-45deg);
}
.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.pricing-card .price span { font-size: 1rem; font-weight: 500; color: var(--slate-400); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓ '; color: var(--success); font-weight: 700; }

/* ========== Process Steps ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--slate-500); line-height: 1.7; max-width: 280px; margin: 0 auto; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: -1rem;
  right: auto;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
body.en .process-step:not(:last-child)::after { left: auto; right: -1rem; }

/* ========== Logo Showcase ========== */
.logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 2rem 0;
  opacity: 0.5;
}
.logo-showcase-item {
  font-size: 0.9rem;
  color: var(--slate-400);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 56px; height: 56px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float svg {
  width: 28px; height: 28px;
  fill: white;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ========== AOS Overrides ========== */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ========== Utilities ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-item-wide { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split-grid.reverse .split-content { order: 1; }
  .split-grid.reverse .split-visual { order: 2; }
  .section { padding: 5rem 0; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--slate-700);
  }
  .navbar .nav-links a::after { display: none; }
  .navbar { background: rgba(255,255,255,0.95); }
  .navbar .nav-links a { color: var(--slate-700); }
  .navbar .lang-toggle { background: var(--slate-100); color: var(--navy); border-color: var(--slate-200); }
  .mobile-menu-btn { color: var(--navy); }
  .navbar { padding: 0.7rem 0; }
  .logo-img { height: 36px; }

  .hero { min-height: auto; padding: 5.5rem 0 3.5rem; }
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero .hero-bg {
    background-image: url('/photos/pexels-szymon-shields-1503561-8858380.jpg');
    opacity: 1;
  }

  .section { padding: 4rem 0; }
  .section-title { font-size: 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
  .split-grid { gap: 2rem; }

  .form-card { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-card { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2rem; }
  .courses-grid, .articles-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { gap: 1.5rem; }
  .process-step:not(:last-child)::after { display: none; }
  .logo-showcase { gap: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-banner { padding: 7rem 0 3rem; }
  .cta-section { padding: 4rem 0; }
  .hero-article { grid-template-columns: 1fr; }
  .hero-article-image { min-height: 240px; }
  .hero-article-body { padding: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { right: 1rem; }
  body.en .timeline::before { left: 1rem; }
  .timeline-item { padding-right: 3.5rem; }
  body.en .timeline-item { padding-left: 3.5rem; }
  .timeline-dot { right: 0.35rem; }
  body.en .timeline-dot { left: 0.35rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-number { font-size: 1.75rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ========== Shine Hover Effect ========== */
.service-card, .benefit-card, .stat-card, .feature-card, .testimonial-card, .industry-item, .course-card, .article-card {
  position: relative;
  overflow: hidden;
}
.service-card::after, .benefit-card::after, .stat-card::after, .feature-card::after, .testimonial-card::after, .industry-item::after, .course-card::after, .article-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%) rotate(25deg);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 2;
}
.service-card:hover::after, .benefit-card:hover::after, .stat-card:hover::after, .feature-card:hover::after, .testimonial-card:hover::after, .industry-item:hover::after, .course-card:hover::after, .article-card:hover::after {
  transform: translateX(100%) rotate(25deg);
}
