@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #1B2D6B;
  --navy-dark: #142252;
  --crimson: #B8283C;
  --crimson-dark: #9B1F30;
  --teal: #1ABBB5;
  --teal-dark: #148F8A;
  --light-bg: #F4F8FF;
  --gray-bg: #F8F9FA;
  --text-dark: #1a1a2e;
  --text-medium: #555;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

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

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.nav-logo svg { width: 44px; height: 44px; }

.nav-logo-text { line-height: 1.1; }
.nav-logo-text .name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.nav-logo-text .tagline {
  font-size: 0.72rem;
  color: var(--crimson);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.3rem;
}

.nav-links a {
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--light-bg);
  color: var(--navy);
}

.nav-cta {
  background: var(--crimson) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}

.nav-cta:hover { background: var(--crimson-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2340a0 100%);
  color: var(--white);
  padding: 90px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,187,181,0.12) 0%, transparent 60%);
}

.hero-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(26,187,181,0.2);
  border: 1px solid rgba(26,187,181,0.5);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero h1 span { color: var(--teal); }

.hero p {
  font-size: 1.15rem;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,40,60,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

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

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 80px 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef8;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--teal);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-right: 4px solid var(--teal);
  transition: var(--transition);
}

.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 70px 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.cta-banner p {
  opacity: 0.85;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 60px 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--light-bg) 0%, #ddeeff 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  border: 2px solid #c8dff8;
}

.about-visual .big-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.about-visual h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.about-visual p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.about-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.highlight-text {
  font-size: 1.1rem !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-right: 3px solid var(--teal);
  padding-right: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.value-card .icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.88rem; color: var(--text-medium); }

/* ── SERVICE DETAIL ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 1px solid #e8eef8;
}

.service-detail.reverse { direction: ltr; }
.service-detail.reverse > * { direction: rtl; }

.service-detail-visual {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  font-size: 4.5rem;
}

.service-detail-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-detail-text p {
  color: var(--text-medium);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin-top: 1rem;
}

.service-list li {
  padding: 0.45rem 0;
  padding-right: 1.6rem;
  position: relative;
  color: var(--text-medium);
  font-size: 0.93rem;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef8;
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #dde4f0;
  border-radius: 8px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  direction: rtl;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,187,181,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--crimson);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover { background: var(--crimson-dark); transform: translateY(-2px); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef8;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-icon.red { background: #fff0f2; }
.contact-card-icon.teal { background: #e8faf9; }
.contact-card-icon.green { background: #e8f8f0; }
.contact-card-icon.navy { background: #eef1fa; }

.contact-card-text { line-height: 1.3; }
.contact-card-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 0.1rem;
}
.contact-card-text span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.hours-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px dashed #b8cce8;
}

.hours-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-box p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 0.3rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 2rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; opacity: 0.75; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-col .contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  transition: var(--transition);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; }

  .hero { padding: 60px 1.5rem; }
  .hero-stats { gap: 1.5rem; }

  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail.reverse { direction: rtl; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 60px 1.5rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 300px; }
}

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--navy);
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* ── RATES TABLE ── */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}
.rates-table th {
  background: var(--navy);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
}
.rates-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e8eef8;
  font-size: 0.95rem;
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:nth-child(even) td { background: var(--light-bg); }
.rates-table .rate-good { color: #0a7a5e; font-weight: 700; }
.rates-table .rate-med { color: var(--navy); font-weight: 700; }
.rates-table .rate-none { color: #888; }

/* ── ELIGIBILITY SECTION ── */
.eligibility-box {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e8 100%);
  border: 2px solid #f0c080;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.eligibility-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.eligibility-box p { color: var(--text-medium); margin-bottom: 1.5rem; }

/* ── TIPS LIST ── */
.tips-list { list-style: none; counter-reset: tip; }
.tips-list li {
  counter-increment: tip;
  padding: 1.2rem 1.5rem 1.2rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-right: 4px solid var(--crimson);
}
.tips-list li::before {
  content: counter(tip);
  background: var(--crimson);
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.tips-list li strong { color: var(--navy); display: block; margin-bottom: 0.3rem; }
.tips-list li p { color: var(--text-medium); font-size: 0.93rem; margin: 0; }

/* ── ACCESSIBILITY STATEMENT PAGE ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.8rem; }
.legal-content p { color: var(--text-medium); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-right: 1.5rem; color: var(--text-medium); line-height: 1.9; }
.legal-content ul li { margin-bottom: 0.3rem; }
.legal-content .last-updated {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 2rem;
  border-right: 3px solid var(--teal);
}

/* ── FOOTER LEGAL LINKS ── */
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.5rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--teal); }

/* ── LOGO IMAGE ── */
.navbar .nav-logo {
  background: var(--navy);
  padding: 5px 10px;
  border-radius: 8px;
  flex-shrink: 0;
}
.navbar .nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.footer-brand .nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: center;
}
.nav-logo { gap: 6px; }
.nav-logo-text .name { font-size: 1.55rem; }

/* ── SCREEN-READER ONLY ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── BRANCHES ── */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.branch-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef8;
  border-top: 4px solid var(--teal);
  text-align: center;
  transition: var(--transition);
}

.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.branch-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.branch-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.branch-address { color: var(--text-medium); font-size: 0.93rem; line-height: 1.65; margin-bottom: 0.3rem; }
.branch-note { font-size: 0.8rem; color: var(--teal); font-weight: 600; }

.branch-card--soon {
  border-top-color: #aaa;
  opacity: 0.75;
  position: relative;
}
.branch-soon-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.4rem;
  letter-spacing: 0.5px;
}

/* ── ACCESSIBILITY WIDGET ── */
#a11y-widget {
  position: fixed;
  bottom: 96px;
  left: 24px;
  z-index: 9998;
  direction: rtl;
}

#a11y-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27,45,107,0.45);
  transition: var(--transition);
}

#a11y-btn:hover { background: var(--navy-dark); transform: scale(1.08); }

#a11y-panel {
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 244px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border: 1px solid #dde4f0;
  overflow: hidden;
  font-size: 0.9rem;
}

.a11y-header {
  background: var(--navy);
  color: white;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.a11y-header h3 { font-size: 0.95rem; font-weight: 700; margin: 0; }

#a11y-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.2rem;
  opacity: 0.75;
}
#a11y-close:hover { opacity: 1; }

.a11y-section {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #f0f4f8;
}
.a11y-section:last-child { border-bottom: none; }

.a11y-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 0.45rem;
}

.a11y-font-row { display: flex; gap: 0.5rem; }

.a11y-font-btn {
  flex: 1;
  padding: 0.45rem;
  border: 1.5px solid #dde4f0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.a11y-font-btn:hover { border-color: var(--teal); background: #f0fbfb; }
.a11y-font-btn.active { border-color: var(--teal); background: var(--teal); color: white; }

.a11y-toggle {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1.5px solid #dde4f0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  transition: var(--transition);
}
.a11y-toggle:hover { border-color: var(--teal); background: #f0fbfb; }
.a11y-toggle.a11y-on { background: var(--teal); color: white; border-color: var(--teal-dark); }

.a11y-footer { padding: 0.6rem 1rem; text-align: center; background: #f8f9fa; }
.a11y-footer a { font-size: 0.8rem; color: var(--teal); text-decoration: underline; }

/* High-contrast mode */
body.a11y-high-contrast { filter: contrast(1.6) brightness(0.92); }

/* Underline links */
body.a11y-underline-links a { text-decoration: underline !important; }

/* Big cursor */
body.a11y-big-cursor,
body.a11y-big-cursor * { cursor: zoom-in !important; }

