:root {
  --blue:        #0d2d6b;
  --blue-mid:    #1a4490;
  --blue-light:  #e8eef8;
  --orange:      #f07c1f;
  --orange-light:#fff3e8;
  --white:       #ffffff;
  --gray-bg:     #f7f9fc;
  --text:        #0d1a2e;
  --text-muted:  #6b7a99;
  --border:      #dde4f0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 6%;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(13,45,107,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--blue);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 3px 12px rgba(240,124,31,0.3);
}

.nav-cta:hover {
  background: #d96b10;
  transform: translateY(-1px);
}

.lang-switcher {
  display: flex;
  border: 1px solid rgba(13,45,107,0.15);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--blue);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background: rgba(13,45,107,0.06);
}

.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 6% 80px;
  background-color: var(--blue);
  background-image: linear-gradient(135deg, var(--blue) 0%, #1a4490 100%),
                    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 28%),
                    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.08), transparent 22%);
  background-blend-mode: normal;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-deco {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}

.hero-deco2 {
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,124,31,0.18);
  border: 1px solid rgba(240,124,31,0.4);
  color: #ffb066;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.4s ease infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-title .orange {
  color: var(--orange);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-desc strong {
  color: #ffb066;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(240,124,31,0.4);
}

.btn-orange:hover {
  background: #d96b10;
  transform: translateY(-2px);
}

.btn-white-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-white-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.hero-btns a:hover {
  transform: translateY(-2px);
}

.spots-tag {
  margin-top: 20px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
}

.spots-tag strong {
  color: #ff8f8f;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-img-main {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  object-fit: cover;
  height: 460px;
  display: block;
  animation: float 8s ease-in-out infinite;
}

.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(13,45,107,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hib-icon {
  font-size: 2rem;
}

.hib-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  display: block;
  line-height: 1;
}

.hib-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section {
  padding: 90px 6%;
}

.section-gray {
  background: var(--gray-bg);
}

.s-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.2;
}

.s-title .accent {
  color: var(--orange);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.route-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(240,124,31,0.15));
  z-index: 0;
}

.r-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.r-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(240,124,31,0.15);
}

.r-node h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}

.r-node p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.l-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.l-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.l-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13,45,107,0.1);
  border-color: transparent;
}

.l-card:hover::after {
  transform: scaleX(1);
}

.l-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.l-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}

.l-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.stats-band {
  background: var(--blue);
  padding: 60px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.stat-item .lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  display: block;
}

.photos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.pg-main {
  grid-row: 1 / 3;
}

.pg-item {
  overflow: hidden;
}

.photos-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.photos-grid img:hover {
  transform: scale(1.04);
}

.forwho-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.fw-img {
  position: relative;
}

.fw-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 440px;
  box-shadow: 0 16px 48px rgba(13,45,107,0.14);
  display: block;
}

.fw-img-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--orange);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 24px rgba(240,124,31,0.4);
}

.fw-img-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  display: block;
}

.fw-img-badge small {
  font-size: 0.72rem;
  opacity: 0.9;
}

.fw-content .s-label {
  text-align: left;
}

.fw-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 18px;
}

.fw-title .orange {
  color: var(--orange);
}

.fw-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 1.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.process-list {
  max-width: 760px;
  margin: 0 auto;
}

.p-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.p-step:last-child {
  border-bottom: none;
}

.p-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--orange-light);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}

.p-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}

.p-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.promo-band {
  background: var(--orange);
  padding: 60px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 12px;
}

.promo-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 28px;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.register-section {
  padding: 100px 6%;
  background: var(--gray-bg);
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--orange));
}

.register-inner {
  max-width: 820px;
  margin: 0 auto;
}

.register-header {
  text-align: center;
  margin-bottom: 48px;
}

.register-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.register-header h2 .orange {
  color: var(--orange);
}

.register-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(13,45,107,0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--gray-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aab4cc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: var(--white);
}

textarea {
  height: 110px;
  resize: none;
}

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--blue);
  line-height: 1.6;
  margin-top: 4px;
}

.btn-submit {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 48px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 6px 20px rgba(13,45,107,0.3);
  display: block;
  width: 100%;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-muted);
  line-height: 1.7;
}

.form-success .orange {
  color: var(--orange);
  font-weight: 700;
}

.registration-form {
  display: none;
}

.registration-form.active {
  display: block;
}

.session-section {
  padding: 40px 6%;
}

.session-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(13,45,107,0.08);
}

.session-card .session-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 18px;
  color: var(--text-muted);
}

.session-card .session-details strong {
  color: var(--blue);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  background: var(--blue);
  padding: 48px 6% 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer img {
  height: 38px;
  margin-bottom: 14px;
}

.f-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

.f-links {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.f-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.f-links a:hover {
  color: var(--orange);
}

.f-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 32px auto 0;
  }
  .hero-img-main {
    height: auto;
    max-height: 420px;
  }
  .hero-img-badge {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -18px;
  }

  .route-grid {
    grid-template-columns: 1fr 1fr;
  }

  .route-grid::before {
    display: none;
  }

  .learn-grid {
    grid-template-columns: 1fr 1fr;
  }

  .forwho-wrap {
    grid-template-columns: 1fr;
  }

  .fw-img {
    display: none;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .photos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .pg-main {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 240px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: 1;
  }

  .form-box {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .learn-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    padding: 14px 5%;
    justify-content: center;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 110px 5% 40px;
  }

  .hero::after {
    height: 40px;
  }

  .hero-deco,
  .hero-deco2 {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-orange,
  .btn-white-ghost {
    width: 100%;
    justify-content: center;
  }

  .form-notice {
    flex-direction: column;
    align-items: stretch;
  }

  .session-card {
    padding: 24px;
  }

  .session-card .session-details {
    grid-template-columns: 1fr;
  }

  .form-box {
    padding: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 22px;
  }

  footer {
    padding: 36px 5% 24px;
  }

  .f-links {
    gap: 14px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 100px;
  }

  .nav-logo-text {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-btns {
    gap: 10px;
  }

  .hero-btns a {
    padding: 14px 18px;
  }

  .session-section {
    padding: 32px 5%;
  }

  .session-card {
    padding: 20px;
  }

  .form-box {
    padding: 20px;
  }

  .form-grid {
    gap: 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
  }

  .btn-submit {
    padding: 14px 18px;
  }

  .testimonial-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-photo {
    width: 64px;
    height: 64px;
  }

  footer p {
    font-size: 0.8rem;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 32px rgba(13,45,107,0.08);
}

.testimonial-top {
  display: flex;
  gap: 18px;
  align-items: center;
}

.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-meta {
  min-width: 0;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  min-height: 110px;
}

.testimonial-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.testimonial-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.testimonial-socials a:hover {
  background: rgba(26,68,144,0.16);
}

.testimonial-socials a .social-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
}

.testimonial-socials a[href*="wa.me"] {
  color: #25d366;
  background: rgba(37,211,102,0.12);
}

.testimonial-socials a[href^="tel:"] {
  color: #0d6efd;
  background: rgba(13,110,253,0.12);
}

.testimonial-socials a[href*="facebook"] {
  color: #1877f2;
  background: rgba(24,119,242,0.12);
}

.testimonial-socials a span {
  vertical-align: middle;
}

html[lang="ar"] .testimonial-top {
  flex-direction: row-reverse;
}

html[lang="ar"] .testimonial-meta {
  text-align: right;
}

html[lang="ar"] .testimonial-socials {
  justify-content: flex-end;
}

html[lang="ar"] .testimonial-socials a {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 18px 5%;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-logo {
    justify-content: center;
  }

  .nav-cta {
    width: min(100%, 320px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 100px 5% 40px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-title,
  .hero-desc,
  .hero-pills,
  .spots-tag {
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-button,
  .btn-orange,
  .btn-white-ghost {
    width: 100%;
    max-width: 320px;
  }

  .hero-image-wrap {
    margin-top: 24px;
  }

  .hero-img-main {
    height: auto;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-meta {
    width: 100%;
  }

  .testimonial-socials {
    justify-content: center;
  }

  .session-card {
    padding: 20px;
  }

  .session-card .session-details {
    grid-template-columns: 1fr;
  }

  .form-box {
    padding: 20px;
  }

  .form-grid {
    gap: 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
  }

  .btn-submit {
    padding: 14px 18px;
  }

  footer {
    padding: 36px 5% 24px;
  }

  .f-links {
    gap: 14px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

html[lang="ar"] {
  direction: rtl;
}

html[lang="ar"] body {
  text-align: right;
}

html[lang="ar"] nav {
  flex-direction: row-reverse;
}

html[lang="ar"] .hero-title,
html[lang="ar"] .hero-desc,
html[lang="ar"] .hero-pills,
html[lang="ar"] .spots-tag,
html[lang="ar"] .s-label,
html[lang="ar"] .s-title,
html[lang="ar"] .r-node,
html[lang="ar"] .l-card,
html[lang="ar"] .fw-content,
html[lang="ar"] .process-list,
html[lang="ar"] .promo-band,
html[lang="ar"] .register-header,
html[lang="ar"] .form-box,
html[lang="ar"] footer {
  text-align: right;
}

html[lang="ar"] .hero-btns,
html[lang="ar"] .f-links,
html[lang="ar"] .nav-actions {
  justify-content: flex-end;
}

html[lang="ar"] .fw-img-badge {
  right: auto;
  left: -16px;
}

html[lang="ar"] .hero-img-badge {
  left: auto;
  right: -20px;
}

html[lang="ar"] .form-notice {
  border-left: none;
  border-right: 3px solid var(--blue);
  border-radius: 8px 0 0 8px;
}
