/* ======================================================
   مدرسة النور الابتدائية الخاصة – Stylesheet
   Design: RTL Arabic, Premium, Dark-accented Navy/Gold
   ====================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b3e;
  --navy-mid:   #162355;
  --navy-light: #1e3275;
  --gold:       #f0b429;
  --gold-light: #fcd36a;
  --gold-dark:  #c8860a;
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --gray-100:   #eef1f8;
  --gray-200:   #d8dde8;
  --gray-500:   #7a88a8;
  --gray-700:   #3d4f72;
  --green:      #10b981;
  --red:        #ef4444;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 2px 8px rgba(13,27,62,.12);
  --shadow-md:  0 8px 32px rgba(13,27,62,.18);
  --shadow-lg:  0 20px 60px rgba(13,27,62,.25);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font:       'Cairo', sans-serif;
}

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

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }
input, select, textarea { font-family: var(--font); }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section-pad { padding: 90px 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(240,180,41,.4);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240,180,41,.55);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  background: rgba(240,180,41,.15);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(240,180,41,.3);
  margin-bottom: 14px;
  letter-spacing: .05em;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.35;
}

.section-title .highlight {
  color: var(--gold-dark);
  position: relative;
}
.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.section-desc {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 640px;
  margin-inline: auto;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(13, 27, 62, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px rgba(240,180,41,.4);
  transition: var(--transition);
}
.logo-img:hover { transform: rotate(8deg) scale(1.05); }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-subtitle {
  font-size: .78rem;
  color: var(--gold-light);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 6px; }

.nav-list { display: flex; align-items: center; gap: 4px; }

.nav-link {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; right: 50%; left: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { right: 16%; left: 16%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(240,180,41,.35);
  margin-right: 6px;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(240,180,41,.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom { to { transform: scale(1.12); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,.92) 0%,
    rgba(22,35,85,.80) 50%,
    rgba(13,27,62,.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(240,180,41,.2);
  border: 1px solid rgba(240,180,41,.45);
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .06em;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-btn { font-size: 1.05rem; padding: 16px 36px; }
.hero-btn .btn-icon { font-size: 1.2rem; }

.btn-secondary.hero-btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.btn-secondary.hero-btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  width: fit-content;
}

.stat-item { text-align: center; padding: 0 28px; }
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 500; }

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: .5; }
}

/* ── ANIMATIONS ── */
.animate-fade-down { animation: fadeDown .8s ease both; }
.animate-fade-up   { animation: fadeUp  .9s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT ── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.about-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240,180,41,.3);
  background: var(--white);
}
.about-card:hover::before { transform: scaleY(1); }

.about-icon { font-size: 2.4rem; margin-bottom: 16px; }
.about-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.about-card p  { font-size: .93rem; color: var(--gray-700); line-height: 1.75; }

/* Vision */
.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  overflow: hidden;
}

.vision-text h3 { font-size: 1.8rem; font-weight: 800; color: var(--gold-light); margin-bottom: 16px; }
.vision-text p  { color: rgba(255,255,255,.82); margin-bottom: 24px; line-height: 1.8; }

.vision-list { margin-bottom: 32px; }
.vision-list li {
  color: rgba(255,255,255,.85);
  padding: 8px 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vision-list li:last-child { border-bottom: none; }

.vision-deco {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deco-ring {
  position: absolute;
  border: 2px solid rgba(240,180,41,.25);
  border-radius: 50%;
  animation: rotateSlow linear infinite;
}
.deco-ring-1 { width: 200px; height: 200px; animation-duration: 20s; }
.deco-ring-2 { width: 150px; height: 150px; animation-duration: 14s; border-style: dashed; border-color: rgba(240,180,41,.15); }
.deco-ring-3 { width: 260px; height: 260px; animation-duration: 28s; animation-direction: reverse; }

@keyframes rotateSlow { to { transform: rotate(360deg); } }

.deco-icon, .deco-icon-2, .deco-icon-3 {
  position: absolute;
  font-size: 2.5rem;
  animation: floatIcon 4s ease-in-out infinite;
}
.deco-icon   { top: 20%; left: 10%; animation-delay: 0s; }
.deco-icon-2 { top: 10%; right: 15%; animation-delay: 1.3s; font-size: 2rem; }
.deco-icon-3 { bottom: 18%; right: 8%; animation-delay: 2.5s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

/* ── NEWS ── */
.news { background: var(--gray-100); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.news-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.news-card:hover .news-img { transform: scale(1.07); }

.news-tag-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.news-tag-badge.badge-green { background: linear-gradient(135deg, #10b981, #059669); color: var(--white); }
.news-tag-badge.badge-blue  { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: var(--white); }

.news-body { padding: 24px; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-date { font-size: .8rem; color: var(--gray-500); font-weight: 500; }
.news-cat {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy-light);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 50px;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.45;
}

.news-excerpt {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-dark);
  transition: var(--transition);
}
.news-read-more:hover { gap: 10px; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: var(--white); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.6fr;
  gap: 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240,180,41,.5);
}
.footer-school-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-school-sub {
  font-size: .78rem;
  color: var(--gold-light);
}
.footer-tagline {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-links li {
  padding: 7px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  cursor: default;
}
.footer-links li a {
  color: inherit;
  transition: var(--transition);
}
.footer-links li a:hover, .footer-links li:has(a):hover {
  color: var(--gold-light);
  padding-right: 6px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-link {
  color: rgba(255,255,255,.75);
  transition: var(--transition);
  display: block;
}
.contact-link:hover { color: var(--gold-light); }

.footer-reg-btn { width: 100%; justify-content: center; padding: 12px; font-size: .93rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.highlight-gold { color: var(--gold-light); font-weight: 600; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,62,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(620px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 40px;
  position: relative;
  transform: translateY(30px) scale(.96);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 18px; left: 18px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.modal-close:hover { background: var(--red); color: var(--white); transform: rotate(90deg); }

.modal-header { margin-bottom: 28px; }

.modal-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}
.modal-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }

.modal-title { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.modal-subtitle { font-size: .83rem; color: var(--gray-500); }

.modal-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .4;
  transition: var(--transition);
}
.step.active { opacity: 1; }
.step span {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-200);
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-700);
  transition: var(--transition);
}
.step.active span { background: var(--navy); color: var(--white); }
.step.done span   { background: var(--green); color: var(--white); }
.step small { font-size: .78rem; color: var(--gray-700); font-weight: 600; }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 10px;
}

/* Form */
.form-step { animation: fadeUp .35s ease both; }
.form-step.hidden { display: none; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.req { color: var(--red); }

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .93rem;
  color: var(--navy);
  background: var(--off-white);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22,35,85,.12);
}
.form-group input.error,
.form-group select.error { border-color: var(--red); }

.field-error {
  font-size: .78rem;
  color: var(--red);
  font-weight: 600;
  min-height: 16px;
}

.form-actions { display: flex; justify-content: flex-end; }
.form-actions.two-btns { justify-content: space-between; }

.form-next-btn, .form-submit-btn { min-width: 160px; justify-content: center; }
.form-back-btn { min-width: 130px; }

/* Success */
.form-success {
  text-align: center;
  padding: 20px 0;
  animation: fadeUp .5s ease both;
}
.form-success.hidden { display: none; }

.success-animation { margin-bottom: 20px; }
.success-circle {
  display: inline-flex;
  animation: successPop .6s cubic-bezier(.2,1.5,.5,1) both;
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-msg {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: .95rem;
}
.success-contact {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
}
.success-contact p { font-size: .85rem; color: var(--gray-700); margin-bottom: 10px; font-weight: 600; }
.success-phone {
  display: inline-block;
  margin: 4px 10px;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  transition: var(--transition);
}
.success-phone:hover { color: var(--gold-dark); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(240,180,41,.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-vision { grid-template-columns: 1fr; gap: 32px; }
  .vision-deco { height: 180px; }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(13,27,62,.98);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-list.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); width: 100%; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .stat-divider { width: 80%; height: 1px; }

  .modal { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .about-vision { padding: 36px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: center; }
  .news-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .header-inner { height: 68px; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 4px; }
