/* ===================================
   GLOBAL & VARIABLES
=================================== */
:root {
  --navy: #0d2e6e;
  --navy-mid: #1a4fa0;
  --navy-light: #2563b0;
  --gold: #c9a227;
  --gold-light: #e2b93b;
  --gold-pale: #fdf3d8;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --blue-tint: #e8f0fe;
  --text: #1a1f36;
  --text-mid: #4a5275;
  --text-light: #8892aa;
  --border: #dde2ef;
  --shadow: 0 4px 24px rgba(13,46,110,0.10);
  --shadow-lg: 0 12px 48px rgba(13,46,110,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Heebo', 'Arial Hebrew', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.btn-primary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: white;
}
.btn.full-width {
  width: 100%;
  justify-content: center;
  font-size: 1.08rem;
  padding: 16px;
}

/* ===================================
   SECTION HEADERS
=================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.78); }

.section-tag {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--navy-mid);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-tag.gold {
  background: var(--gold-pale);
  color: #8c6e0a;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}

/* ===================================
   NAVBAR
=================================== */
#navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 16px 0;
}
#navbar.scrolled {
  background: rgba(10,28,66,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  padding: 10px 0;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* row-reverse in RTL = logo LEFT, links RIGHT */
  flex-direction: row-reverse;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-svg-wrap svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)); }

/* Logo image – transparent PNG, no background */
.logo-svg-wrap {
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35));
}
.logo-img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  width: 58px;
  height: 58px;
}
.nav-logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.logo-sub {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.12); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.nav-links a.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===================================
   HERO
=================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1c42 40%, #162d5e 70%, #1a3d7a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,162,39,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(26,79,160,0.3) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.18);
  border: 1px solid rgba(201,162,39,0.5);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeDown 0.7s ease both;
}
.hero-title {
  margin-bottom: 22px;
  animation: fadeDown 0.7s 0.1s ease both;
}
.title-line-1 {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.title-line-2 {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeDown 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeDown 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  animation: fadeDown 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 70px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  z-index: 2;
  animation: bounce 2s infinite 1.5s;
  cursor: pointer;
  text-decoration: none;
}
.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.55);
  border-bottom: 2px solid rgba(255,255,255,0.55);
  transform: rotate(45deg);
}

/* ===================================
   PROGRAM SECTION
=================================== */
.program-section { background: var(--off-white); }
.program-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.program-card {
  position: relative;
  background: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card.featured-blue {
  border-color: var(--navy-mid);
  border-width: 2px;
  background: linear-gradient(160deg, #fff 70%, var(--blue-tint) 100%);
}
.program-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  background: linear-gradient(160deg, #fff 70%, var(--gold-pale) 100%);
}
.featured-ribbon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}
.program-card-badge {
  display: inline-block;
  background: var(--blue-tint);
  color: var(--navy-mid);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.program-card-badge.gold {
  background: var(--gold-pale);
  color: #8c6e0a;
}
.program-rating {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 6px 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  min-width: 64px;
}
.rating-score {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #c9a227, #e8c84a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rating-stars {
  color: #f5a623;
  font-size: 0.65rem;
  letter-spacing: 1px;
  line-height: 1.4;
}
.rating-label {
  display: block;
  font-size: 0.6rem;
  color: #666;
  margin-top: 2px;
}
.program-icon { margin-bottom: 18px; }
.program-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.program-code {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.program-code strong { color: var(--navy-mid); }
.program-card > p {
  color: var(--text-mid);
  font-size: 0.96rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.program-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.program-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text);
}
.program-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--blue-tint);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-6' stroke='%231a4fa0' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.program-card.featured .program-list li::before {
  background: var(--gold-pale);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-6' stroke='%23c9a227' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.approval-banner {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1.5px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.approval-icon { flex-shrink: 0; }
.approval-text { flex: 1; min-width: 200px; }
.approval-text strong { display: block; font-size: 1.05rem; color: #1b5e20; margin-bottom: 4px; }
.approval-text span { font-size: 0.9rem; color: #2e7d32; }

/* ===================================
   BENEFITS
=================================== */
.benefits-section {
  background: linear-gradient(145deg, var(--navy) 0%, #0a1c42 100%);
  position: relative;
}
.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E") repeat;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-4px);
}
.benefit-icon { margin-bottom: 18px; }
.benefit-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===================================
   ABOUT
=================================== */
.about-section { background: white; }
.about-ido {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.about-ido-image { position: relative; }
.image-placeholder {
  background: var(--blue-tint);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy-mid);
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px dashed var(--border);
}
.ido-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.12);
  transform-origin: center 10%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-ido-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.badge-item {
  background: var(--navy);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.badge-item.gold {
  background: var(--gold);
  color: var(--navy);
}
.about-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-ido-content h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}
.about-lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  padding-right: 18px;
  position: relative;
}
.about-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* Team */
.team-section { background: var(--off-white); border-radius: var(--radius); padding: 48px 40px; margin-bottom: 40px; }
.team-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.team-sub {
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 32px;
  font-size: 0.96rem;
  line-height: 1.65;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-tint);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo.placeholder svg { opacity: 0.5; }
.team-photo.plus { background: transparent; border: none; }
.team-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.team-rank { font-size: 0.8rem; color: var(--text-light); }
.team-card.add-card { border-style: dashed; }

/* Syllabus section */
.syllabus-section { background: var(--bg-light); }
.syllabus-tracks {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.track-pill {
  background: white;
  border: 2px solid var(--navy-mid);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.9rem;
  font-weight: 600;
}
.track-pill.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.syllabus-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.syllabus-num {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.syllabus-text {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.syllabus-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 8px;
}
.syllabus-wrapper {
  position: relative;
}
.syllabus-blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}
.syllabus-gate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-light) 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}
.syllabus-gate-inner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px 40px;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.syllabus-gate-inner p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Art banner */
.art-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  border-radius: var(--radius);
  padding: 36px 40px;
  position: relative;
}
.art-content { padding-left: 100px; }
.art-content h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.art-content p { font-size: 0.95rem; opacity: 0.85; }
.art-logo-wrap {
  position: absolute;
  top: 20px;
  left: 24px;
}
.art-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.art-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.art-link:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }

/* ===================================
   GALLERY
=================================== */
.gallery-section { background: var(--off-white); }
.gallery-tabs {
  display: flex;
  gap: 4px;
  background: var(--border);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 36px;
}
.tab-btn {
  padding: 9px 28px;
  border: none;
  background: none;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active {
  background: var(--navy);
  color: white;
  box-shadow: 0 2px 12px rgba(13,46,110,0.2);
}
.tab-content { display: none; }
.tab-content.active { display: grid; }
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; background: #ddd; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item img:hover { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: white;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: all var(--transition);
  cursor: pointer;
}
.gallery-placeholder:hover {
  background: var(--blue-tint);
  border-color: var(--navy-mid);
  color: var(--navy);
}
.video-placeholder { background: var(--navy); border: none; color: rgba(255,255,255,0.6); position: relative; }
.video-placeholder:hover { background: var(--navy-mid); }
.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(201,162,39,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all var(--transition);
}
.gallery-placeholder:hover .play-btn { background: var(--gold); transform: scale(1.1); }
.gallery-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 14px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* ===================================
   TESTIMONIALS
=================================== */
.testimonials-section {
  background: linear-gradient(145deg, #0d2e6e 0%, #162d5e 100%);
  overflow: hidden;
}
.testimonials-slider { overflow: hidden; margin: 0; padding: 0 0 8px; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  backdrop-filter: blur(6px);
}
.testimonial-quote {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 18px;
  font-family: Georgia, serif;
  opacity: 0.6;
}
.testimonial-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 24px;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: white; font-size: 0.95rem; }
.testimonial-author span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}
.slider-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===================================
   CONTACT
=================================== */
.contact-section { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group:last-child { margin-bottom: 0; }
label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: #e53935; }
input, select, textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Heebo', sans-serif;
  font-size: 0.96rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
  direction: rtl;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(26,79,160,0.1);
}
textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  color: #1b5e20;
  font-weight: 600;
  font-size: 0.95rem;
}
.hidden { display: none !important; }

.contact-info-wrap { position: sticky; top: 100px; }
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-info-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-method:hover {
  border-color: var(--navy-mid);
  background: var(--blue-tint);
  transform: translateX(-3px);
}
.cm-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cm-icon.phone { background: var(--blue-tint); }
.cm-icon.mail { background: #fce4ec; }
.cm-icon.whatsapp { background: #e8f5e9; }
.cm-label { display: block; font-size: 0.78rem; color: var(--text-light); margin-bottom: 2px; }
.contact-method strong { font-size: 0.9rem; color: var(--navy); }
.contact-gphan { border-top: 1px solid var(--border); padding-top: 24px; }
.contact-gphan h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-gphan p {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.6;
}
.gphan-links { display: flex; flex-direction: column; gap: 10px; }
.gphan-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: var(--blue-tint);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.gphan-link:hover {
  background: var(--navy);
  color: white;
}

/* ===================================
   FOOTER
=================================== */
.footer {
  background: #080f1e;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-text span { color: white; font-size: 1.15rem; font-weight: 800; }
.footer-logo-text small { color: var(--gold); font-size: 0.8rem; }
.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}
.footer-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.footer-nav a:hover { color: white; background: rgba(255,255,255,0.08); }
.footer-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.88rem;
}
.footer-contact a { color: var(--gold); transition: opacity var(--transition); }
.footer-contact a:hover { opacity: 0.8; }
.footer-contact span { color: rgba(255,255,255,0.2); }
.footer-bottom {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-approved {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
=================================== */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: all var(--transition);
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #20c05a;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: #1a1f36;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1a1f36;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===================================
   SCROLL TO TOP
=================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13,46,110,0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--navy-mid); transform: translateY(-3px); }

/* ===================================
   ANIMATIONS
=================================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
  .program-cards { grid-template-columns: 1fr; }
  .about-ido { grid-template-columns: 1fr; gap: 24px; align-items: center; }
  .about-ido-image { max-width: 360px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-wrap { position: static; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: #0a1c42;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 20px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li a { display: block; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-links a.nav-cta { margin-top: 12px; text-align: center; }
  .hamburger { display: flex; z-index: 999; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 85vw; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .approval-banner { flex-direction: column; text-align: center; }
  .art-banner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 22px; }
  .team-section { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .section-header h2 { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .team-grid { grid-template-columns: 1fr; }
}
