:root {
  --maroon: #800020;
  --maroon-dark: #4e0013;
  --slate-teal: #3a6669;
  --slate-teal-soft: #5a868a;
  --orange: #ff7a1a;
  --ink: #1f242d;
  --muted: #5f6b77;
  --white: #ffffff;
  --surface: #f8fafb;
  --border: #e5eaee;
  --shadow: 0 20px 45px rgba(19, 29, 35, 0.12);
}

body.dark-mode {
  --ink: #e8edf2;
  --muted: #b7c0cc;
  --white: #121821;
  --surface: #1a222d;
  --border: #283342;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  --slate-teal: #7eb8c4;
  --slate-teal-soft: #a8d4dc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  transition:
    background-color 0.45s ease,
    color 0.35s ease;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(92%, 1760px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
}

.nav-wrap .brand {
  justify-self: start;
}

.nav-wrap .main-nav {
  justify-self: center;
}

.nav-wrap .header-controls {
  justify-self: end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--ink);
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: var(--maroon);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-list {
  display: flex;
  gap: 1.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--maroon);
}

.header-controls {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.2s ease;
}

#lang-toggle-label,
#theme-toggle-label,
#theme-icon {
  transition: opacity 0.22s ease;
}

.chip-btn:hover {
  border-color: var(--slate-teal);
  color: var(--slate-teal);
}

.btn-icon {
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  background-image: linear-gradient(
      100deg,
      rgba(22, 33, 43, 0.77) 12%,
      rgba(22, 33, 43, 0.3) 58%
    ),
    url("Images/IMG_0069-750x520.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(128, 0, 32, 0.2),
    rgba(58, 102, 105, 0.12),
    rgba(128, 0, 32, 0.15)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-teal-soft);
}

.hero .eyebrow {
  color: #ffd7bb;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  color: #ffffff;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--maroon);
}

body.dark-mode h2 {
  color: #ff8a9f;
}

h3 {
  font-size: 1.4rem;
  color: var(--slate-teal);
}

.hero p {
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-bottom: 2rem;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 122, 26, 0.35);
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-outline {
  border: 1px solid var(--slate-teal);
  color: var(--slate-teal);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.2s ease;
}

.btn-outline:hover {
  background: rgba(58, 102, 105, 0.07);
}

.section {
  padding: clamp(4rem, 7vw, 8rem) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--slate-teal);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card h3,
.card p {
  padding: 0 1.25rem;
}

.card h3 {
  margin-top: 1.15rem;
}

.card p {
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.news-events {
  background: var(--surface);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(19, 29, 35, 0.18);
}

body.dark-mode .news-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}

.news-image {
  overflow: hidden;
  height: 220px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.news-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--maroon);
  font-size: 1.25rem;
}

body.dark-mode .news-card h3 {
  color: #ff9fb0;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0 1.25rem 1.25rem;
  color: var(--slate-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.35s ease;
}

.read-more:hover {
  color: var(--orange);
}

.news-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.streams {
  background: var(--white);
}

.streams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.stream-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stream-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.pricing {
  background: var(--surface);
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  max-width: 900px;
  margin-inline: auto;
}

.price-main {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.price-main strong {
  font-size: 2rem;
  color: var(--maroon);
}

body.dark-mode .price-main strong {
  color: #ff9fb0;
}

.discount-note {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--slate-teal);
}

.pricing-tables {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.pricing-table-block {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

.pricing-table-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--slate-teal);
  text-align: center;
}

body.dark-mode .pricing-table-block h3 {
  color: var(--slate-teal-soft);
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  background: var(--surface);
  color: var(--ink);
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table .total-row th,
.price-table .total-row td {
  font-weight: 700;
  background: rgba(128, 0, 32, 0.06);
  color: var(--maroon);
}

body.dark-mode .price-table .total-row th,
body.dark-mode .price-table .total-row td {
  background: rgba(255, 138, 159, 0.12);
  color: #ff9fb0;
}

.price-table .muted-cell {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-table td a {
  color: var(--slate-teal);
  font-weight: 600;
  text-decoration: none;
}

.price-table td a:hover {
  text-decoration: underline;
}

.pricing-table-foot {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.pricing-actions {
  margin-top: 2rem;
  justify-content: center;
}

.contact-page .page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 1rem;
}

.contact-page .page-hero h1 {
  color: var(--maroon);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

body.dark-mode .contact-page .page-hero h1 {
  color: #ff8a9f;
}

.contact-page .page-lead {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-tables {
  display: grid;
  gap: 2.5rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-table-wrap .price-table caption {
  caption-side: top;
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--maroon);
  padding: 0 0 0.75rem;
}

body.dark-mode .contact-table-wrap .price-table caption {
  color: #ff8a9f;
}

@media (min-width: 921px) {
  .price-table-wrap {
    margin-inline: auto;
    max-width: 900px;
  }
}

.trips {
  background: var(--white);
}

.section-alt {
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.split-content p {
  color: var(--muted);
}

.ticks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.ticks li {
  position: relative;
  padding-left: 1.2rem;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.split-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-height: 420px;
  object-fit: cover;
}

.admissions {
  background: linear-gradient(180deg, #fff 0%, #fef9f7 100%);
}

body.dark-mode .admissions {
  background: linear-gradient(180deg, #121821 0%, #1a222d 100%);
}

.admissions-inner {
  max-width: 930px;
  text-align: center;
}

.admissions p {
  color: var(--muted);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--maroon-dark);
  color: #eedfe4;
}

.footer-wrap {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Page Hero for news and detail pages */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.08) 0%, rgba(58, 102, 105, 0.06) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

body.dark-mode .page-hero h1 {
  color: #ff8a9f;
}

.page-lead {
  max-width: 720px;
  color: var(--muted);
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

/* News List Section */
.news-list-section {
  background: var(--white);
}

.news-list {
  display: grid;
  gap: 2.5rem;
}

.news-list-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.news-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(19, 29, 35, 0.18);
}

body.dark-mode .news-list-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}

.news-list-image {
  overflow: hidden;
  min-height: 100%;
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-list-item:hover .news-list-image img {
  transform: scale(1.05);
}

.news-list-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.news-list-header {
  margin-bottom: 0.75rem;
}

.news-list-date {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-list-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--maroon);
}

body.dark-mode .news-list-content h2 {
  color: #ff9fb0;
}

.news-list-content p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  flex-grow: 1;
  line-height: 1.65;
}

.news-list-content .btn-primary {
  align-self: flex-start;
}

/* News Detail Section */
.news-detail-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.news-detail-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

.news-detail-article {
  max-width: 900px;
}

.news-detail-header {
  margin-bottom: 2rem;
}

.news-detail-date {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-detail-article h1 {
  color: var(--maroon);
  margin: 0 0 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

body.dark-mode .news-detail-article h1 {
  color: #ff8a9f;
}

.news-detail-image {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}

.news-detail-body p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.news-detail-body h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
  color: var(--maroon);
}

body.dark-mode .news-detail-body h2 {
  color: #ff9fb0;
}

.news-detail-body ul {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
  color: var(--muted);
}

.news-detail-body ul li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.news-detail-body ul li strong {
  color: var(--ink);
}

.news-detail-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* News Detail Sidebar */
.news-detail-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.news-detail-sidebar h3 {
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
}

body.dark-mode .news-detail-sidebar h3 {
  color: #ff9fb0;
}

.related-articles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.related-articles li {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  transition: 
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.related-articles li:hover {
  background: var(--surface);
  border-color: var(--slate-teal);
}

.related-articles a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: var(--ink);
}

.related-articles a strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--maroon);
  font-size: 0.95rem;
}

body.dark-mode .related-articles a strong {
  color: #ff9fb0;
}

.related-date {
  display: block;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .nav-wrap,
html[dir="rtl"] .brand,
html[dir="rtl"] .header-controls,
html[dir="rtl"] .nav-list,
html[dir="rtl"] .footer-wrap {
  direction: ltr;
}

html[dir="rtl"] .ticks li {
  padding-left: 0;
  padding-right: 1.2rem;
}

html[dir="rtl"] .ticks li::before {
  left: auto;
  right: 0;
}

html[lang="ar"] body {
  font-size: 1.075rem;
}

html[lang="ar"] .eyebrow {
  font-size: 0.85rem;
}

html[lang="ar"] h2 {
  font-size: clamp(2.15rem, 3.15vw, 3.2rem);
}

html[lang="ar"] h3 {
  font-size: 1.52rem;
}

html[lang="ar"] .nav-list a {
  font-size: 1.03rem;
}

html[lang="ar"] .chip-btn {
  font-size: 1.02rem;
}

html[lang="ar"] .price-table {
  font-size: 1.02rem;
}

html[lang="ar"] .pricing-table-foot {
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-detail-container {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .streams-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.7rem 0;
    gap: 0.85rem;
  }

  .nav-wrap .brand {
    justify-self: center;
  }

  .nav-wrap .main-nav {
    justify-self: center;
  }

  .nav-wrap .header-controls {
    justify-self: center;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    justify-content: center;
  }

  .header-controls {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    align-items: center;
  }

  .header-controls {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 72vh;

  .news-list-item {
    grid-template-columns: 1fr;
  }

  .news-list-image {
    min-height: 250px;
  }
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(94%, 1760px);
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .actions {
    flex-direction: column;
  }
}
