:root {
  --blue: #1E73BE;
  --blue-dark: #155a96;
  --blue-light: #3b9ee8;
  --blue-pale: #e8f4fd;
  --yellow: #F5B400;
  --yellow-dark: #d49900;
  --yellow-light: #FFD14D;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray: #6b7280;
  --text-dark: #1a2332;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 8px 40px rgba(30, 115, 190, 0.12);
  --shadow-lg: 0 20px 60px rgba(30, 115, 190, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  direction: rtl;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none !important;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(30, 115, 190, 0.05);
  height: 64px;
  border: none !important;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(30, 115, 190, 0.3);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: white;
  transition: color 0.3s;
}

.logo-text span {
  color: var(--yellow);
}

nav.scrolled .logo-text {
  color: var(--blue);
}

.nav-logo img {
  transition: filter 0.4s ease;
  filter: brightness(0) invert(1);
}

nav.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  padding: 6px 4px;
  position: relative;
}

nav.scrolled .nav-links a {
  color: var(--blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2.5px;
  background: #fbbf24;
  border-radius: 99px;
  transition: width 0.3s cubic-bezier(.4, 0, .2, 1);
}

.nav-links a:hover {
  color: #fbbf24;
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  z-index: 1001;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 10px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

nav.scrolled .lang-current {
  color: var(--blue);
  background: rgba(30, 115, 190, 0.05);
  border-color: rgba(30, 115, 190, 0.1);
}

.lang-current i {
  font-size: 9px;
  transition: transform 0.3s;
}

.lang-dropdown:hover .lang-current {
  background: rgba(255, 255, 255, 0.2);
}

.lang-dropdown:hover .lang-current i {
  transform: rotate(180deg);
}

.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

[dir="ltr"] .lang-list {
  right: auto;
  left: 0;
}

.lang-dropdown:hover .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: #1e293b !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  direction: ltr;
  justify-content: flex-start;
}

[dir="rtl"] .lang-item {
  direction: rtl;
  justify-content: flex-start;
}

/* Specific fix for English text in Arabic version */
.lang-item[href="en.html"] {
  direction: ltr;
}

/* Specific fix for Arabic text in English version */
.lang-item[href="index.html"] {
  direction: rtl;
}

.lang-item:hover {
  background: var(--blue-pale);
  color: var(--blue) !important;
  transform: translateX(4px);
}

[dir="rtl"] .lang-item:hover {
  transform: translateX(-4px);
}

.lang-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.nav-cta {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  color: var(--blue) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: 0 4px 16px rgba(245, 180, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 180, 0, 0.5) !important;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: radial-gradient(circle at 70% 50%, rgba(59, 158, 232, 0.4) 0%, transparent 60%),
    linear-gradient(160deg, rgba(15, 76, 138, 0.95) 0%, rgba(30, 115, 190, 0.92) 40%, rgba(59, 158, 232, 0.88) 80%),
    url('../images/header-img.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 180, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* Wavy bottom */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge span {
  color: var(--yellow-light);
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .highlight {
  color: var(--yellow);
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  color: var(--blue);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(245, 180, 0, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 180, 0, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: background 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hero-image {
  perspective: 1500px;
  z-index: 5;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotateX(0deg);
  }

  50% {
    transform: translateY(-20px) rotateX(2deg);
  }
}

.hero-card-glass {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  transform: translateZ(20px);
}

.hero-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

.hero-card-img.active {
  opacity: 1;
  z-index: 2;
}

/* Navigation Arrows */
.hero-card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(40px);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.hero-card-nav:hover {
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-50%) translateZ(60px) scale(1.1);
  box-shadow: 0 0 20px rgba(245, 180, 0, 0.4);
}

.hero-card-nav.prev {
  right: -60px;
}

.hero-card-nav.next {
  left: -60px;
}

@media (max-width: 900px) {
  .hero-card-nav.prev {
    right: 10px;
  }

  .hero-card-nav.next {
    left: 10px;
  }
}

/* Pagination Dots */
.hero-card-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) translateZ(30px);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(245, 180, 0, 0.5);
}

/* ===== TRUST STATS ===== */
.trust-bar {
  background: white;
  padding: 40px 5%;
  position: relative;
  z-index: 3;
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30, 115, 190, 0.12);
  overflow: hidden;
}

.trust-item {
  flex: 1;
  text-align: center;
  padding: 36px 20px;
  position: relative;
  transition: background 0.3s;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(30, 115, 190, 0.15);
}

.trust-item:hover {
  background: var(--blue-pale);
}

.trust-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-number span {
  color: var(--yellow);
}

.trust-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray);
}

.trust-caption {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== SECTION COMMONS ===== */
section {
  padding: 90px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-title .blue {
  color: var(--blue);
}

.section-title .yellow {
  color: var(--yellow-dark);
}

.section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 680px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--yellow);
  color: var(--text-dark);
  border-radius: 18px;
  padding: 16px 24px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(245, 180, 0, 0.4);
  text-align: center;
  line-height: 1.4;
}

.about-badge-float .num {
  font-size: 28px;
  font-weight: 900;
  display: block;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== EXPERIENCE / MALAYSIA ===== */
.experience {
  background: white;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.exp-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.exp-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--blue-pale);
  border-radius: 16px;
  padding: 18px 22px;
  border-right: 4px solid var(--blue);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  transition: transform 0.3s;
}

.exp-highlight:hover {
  transform: translateX(-6px);
}

.exp-highlight-icon {
  font-size: 24px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.dest-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(30, 115, 190, 0.2);
}

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

.dest-card .dest-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.exp-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.exp-img-grid img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.4s;
}

.exp-img-grid img:first-child {
  grid-column: span 2;
  max-height: 260px;
}

.exp-img-grid img:last-child {
  grid-column: span 2;
  max-height: 260px;
  max-width: 100%;
}

.exp-img-grid img:not(:first-child) {
  max-height: 180px;
}

.exp-img-grid img:hover {
  transform: scale(1.03);
}

/* ===== COURSES ===== */
.courses {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.courses::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 180, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.courses .section-title {
  color: white;
}

.courses .section-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
}

.courses .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.course-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s, background 0.3s;
}

.course-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.course-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245, 180, 0, 0.35);
}

.course-title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.course-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.6;
}

/* ===== INCLUDED ===== */
.included {
  background: var(--gray-light);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.included-card {
  background: white;
  border-radius: 18px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px solid transparent;
}

.included-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--yellow);
}

.included-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-pale), #d0e8f8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
}

.included-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== SAFETY ===== */
.safety {
  background: white;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.safety-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--blue-pale);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.3s;
}

.safety-item:hover {
  transform: translateX(-6px);
}

.safety-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}

.safety-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.safety-text p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.safety-closing {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  border-radius: 20px;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-top: 24px;
  box-shadow: var(--shadow);
}

.safety-closing span {
  color: var(--yellow-light);
}

.safety-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.safety-img img {
  width: 100%;
  display: block;
}

/* ===== DAILY SCHEDULE ===== */
.schedule {
  background: var(--gray-light);
}

.schedule-table-wrap {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.schedule-table tr:nth-child(even) td {
  background: var(--blue-pale);
}

.schedule-table tr:nth-child(odd) td {
  background: var(--yellow-light);
  opacity: 0.85;
}

.schedule-table tr:nth-child(odd) td {
  background: #fffbf0;
}

.schedule-table td {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.schedule-table td:first-child {
  color: var(--blue);
  font-weight: 800;
}

.schedule-activities {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  padding: 24px 32px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  border-top: none;
}

/* ===== PRICING ===== */
.pricing {
  background: linear-gradient(160deg, #0a3d6b 0%, var(--blue-dark) 50%, var(--blue) 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 180, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.pricing .section-title {
  color: white;
}

.pricing .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  border-color: var(--yellow);
  box-shadow: 0 20px 60px rgba(245, 180, 0, 0.4);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
}

.pricing-weeks {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-weeks {
  color: rgba(30, 30, 30, 0.7);
}

.pricing-old {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-old {
  color: rgba(0, 0, 0, 0.4);
}

.pricing-price {
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-price {
  color: var(--text-dark);
}

.pricing-currency {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-currency {
  color: var(--text-dark);
  opacity: 0.7;
}

.pricing-cta {
  background: white;
  color: var(--blue);
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s;
}

.pricing-cta:hover {
  transform: scale(1.03);
}

.pricing-card.featured .pricing-cta {
  background: var(--blue);
  color: white;
}

.pricing-sub {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ===== DATES ===== */
.dates {
  background: white;
}

.dates-card {
  background: linear-gradient(135deg, var(--blue-pale), white);
  border: 2px solid rgba(30, 115, 190, 0.15);
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.dates-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.dates-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 12px;
}

.dates-desc {
  font-size: 17px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
}

.dates-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dates-option {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  color: var(--text-dark);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(245, 180, 0, 0.3);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--gray-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:first-child img {
  height: 300px;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== FAQ ===== */
.faq {
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(30, 115, 190, 0.15);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  background: white;
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
  user-select: none;
}

.faq-question:hover {
  background: var(--blue-pale);
}

.faq-question.active {
  background: var(--blue);
  color: white;
}

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px 28px;
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.7;
  background: var(--gray-light);
}

.faq-answer.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 50%, #3baee8 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5%;
}

/* Pattern Overlay for blue sections */
.courses,
.pricing,
.reels,
.cta-final {
  position: relative;
  overflow: hidden;
}

.courses::after,
.pricing::after,
.reels::after,
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 180, 0, 0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-final .section-title {
  color: white;
  text-align: center;
  font-size: clamp(32px, 5vw, 52px);
}

.cta-final .section-desc {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-contacts {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 14px 28px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: background 0.3s, transform 0.3s;
}

.contact-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.contact-pill.whatsapp {
  background: rgba(37, 211, 102, 0.3);
  border-color: rgba(37, 211, 102, 0.5);
}

.contact-pill.whatsapp:hover {
  background: rgba(37, 211, 102, 0.45);
}

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  color: var(--blue);
  border-radius: 50px;
  padding: 18px 48px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(245, 180, 0, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.cta-final-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(245, 180, 0, 0.55);
}

.urgent-note {
  margin-top: 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.urgent-note span {
  color: var(--yellow-light);
  font-weight: 800;
}

/* ===== FOOTER ===== */
footer {
  background: #0a1929;
  color: white;
  padding: 50px 5% 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--yellow);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 500;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
}

.social-btn:hover {
  background: var(--yellow);
  color: var(--text-dark);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  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.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== FONT AWESOME COLOR FIXES ===== */
.about-feature-icon i,
.course-icon i,
.safety-icon i {
  color: white;
}

.dates-icon i {
  color: #fbbf24;
  font-size: 64px;
  margin-bottom: 20px;
}

.included-icon i,
.exp-highlight-icon i {
  color: var(--blue);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.8);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}





/* ===== REELS SECTION ===== */
.reels {
  background: #fbbf24;
}

.reels .section-label {
  background: white;
  color: var(--blue);
}

.reels .section-title {
  color: var(--blue);
}

.reels .section-desc {
  color: var(--text-dark);
  opacity: 0.8;
}

.reels::after {
  background-image: radial-gradient(rgba(30, 115, 190, 0.12) 1.5px, transparent 1.5px);
}

.reels-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 40px;
}


.reels-wrapper {
  overflow: hidden;
  border-radius: 24px;
}

.reels-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.reel-card {
  flex: 0 0 calc((100% - 80px) / 5);
  aspect-ratio: 9 / 16;
  background: var(--gray-light);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.reel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.reel-card:hover .reel-overlay {
  opacity: 1;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--blue);
  border-color: var(--blue);
}

.reels-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  color: var(--blue);
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.reels-nav:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.reels-nav.prev {
  left: -10px;
}

.reels-nav.next {
  right: -10px;
}

[dir="rtl"] .reels-nav.prev {
  left: auto;
  right: -10px;
}

[dir="rtl"] .reels-nav.next {
  right: auto;
  left: -10px;
}

@media (max-width: 1100px) {
  .reel-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width: 768px) {
  .reel-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .reels-slider-container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .reel-card {
    flex: 0 0 100%;
  }
}

/* Back to Top */

.back-to-top {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 105px;
}

.back-to-top:hover {
  background: var(--yellow);
  color: var(--text-dark);
  transform: translateY(-5px);
}

/* Mobile Bottom Nav (Hidden by default) */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  border-top: 1px solid rgba(30, 115, 190, 0.1);
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray);
  font-size: 11px;
  font-weight: 600;
  gap: 5px;
  flex: 1;
  transition: all 0.3s ease;
}

.mobile-nav-item i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--blue);
}

.mobile-nav-item:hover i,
.mobile-nav-item.active i {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none !important;
  }

  .back-to-top {
    display: none !important;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .whatsapp-float {
    display: none !important;
  }

  body {
    padding-bottom: 70px;
  }

  /* Space for bottom nav */


  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    max-height: 320px;
  }

  .trust-inner {
    flex-direction: column;
  }

  .trust-item::after {
    display: none;
  }

  .about-grid,
  .exp-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .about-badge-float {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 5%;
  }
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 25, 41, 0.95);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.show .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--yellow);
  transform: rotate(90deg);
}

/* Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding: 20px;
  transition: 0.3s;
  z-index: 10002;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--yellow);
  color: var(--blue);
}

.lightbox-prev {
  right: 30px;
}

/* Swapped for RTL */
.lightbox-next {
  left: 30px;
}

/* Swapped for RTL */

@media (max-width: 768px) {
  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 0;
  }

  .lightbox-prev {
    right: 10px;
  }

  .lightbox-next {
    left: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
}


/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 450px;
  /* Vertical video width */
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: 0.3s;
}

.video-modal-close:hover {
  color: var(--yellow);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .video-modal-content {
    max-width: 90%;
  }

  .video-modal-close {
    top: 20px;
    right: 25px;
    font-size: 30px;
  }
}

/* Make clickable images show pointer only for Gallery and Experience sections */

#gallery img,
#experience img {
  cursor: zoom-in;
}