:root {
  --primary: #3d160e;
  --orange: #df5b12;
  --orange-dark: #b5440d;
  --cream: #fff8ed;
  --cream-2: #f5e7d5;
  --white: #fff;
  --text: #2f211b;
  --muted: #77665d;
  --border: rgba(61, 22, 14, 0.14);
  --shadow: 0 18px 50px rgba(61, 22, 14, 0.14);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Poppins, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}
.section {
  padding: 72px 0;
}
.section-heading {
  max-width: 730px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.section-label:before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}
.section-heading h2,
.about-content h2,
.registration-copy h2 {
  font-family: "DM Serif Display", serif;
  color: var(--primary);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}
.section-heading p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 22, 14, 0.08);
  transition: 0.25s;
}
.header.scrolled {
  padding: 7px 0;
  box-shadow: 0 8px 28px rgba(61, 22, 14, 0.12);
  background: rgba(255, 248, 237, 0.98);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--primary);
}

.logo-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
  object-position: center;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  flex-shrink: 0;
}

.logo-text strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.logo-text small {
  display: block;
  margin-top: 2px;
  color: #8a6959;
  font-size: 10px;
}

@media (max-width: 700px) {
  .logo-icon {
    width: 60px;
    height: 60px;
  }

  .logo-text strong {
    font-size: 17px;
  }

  .logo-text small {
    font-size: 8px;
  }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
}
.nav-menu a {
  transition: 0.25s;
}
.nav-menu a:hover {
  color: var(--orange);
}
.nav-menu .nav-cta {
  padding: 12px 25px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(223, 91, 18, 0.24);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: #f0ddc8;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
}
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 69px;
  background: url("./images/banner.jpg") center top/cover no-repeat;
}
.hero:before,
.hero:after {
  display: none !important;
}
.hero .container {
  width: 100%;
  max-width: none;
  padding: 0;
}
.hero-content {
  display: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.about-image {
  position: relative;
  width: 100%;
}
.about-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-content > p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 15px;
}
.about-points {
  display: grid;
  gap: 11px;
}
.about-point {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.about-point-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}
.about-point strong {
  display: block;
  color: var(--primary);
  font-size: 15px;
}
.about-point small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.route-section {
  background: var(--cream-2);
}
.route-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}
.route-image {
  padding: 10px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.route-image img {
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
}
.route-list {
  display: grid;
  gap: 10px;
}
.route-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  transition: 0.25s;
}
.route-item:hover,
.route-item.active {
  background: var(--primary);
  color: #fff;
  transform: translateX(5px);
}
.route-number {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.route-item strong {
  display: block;
  font-size: 14px;
}
.route-item small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.route-item:hover small,
.route-item.active small {
  color: rgba(255, 255, 255, 0.68);
}
.cta-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #47170f, #8d2f17);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-copy small {
  display: block;
  color: #ffc978;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.cta-copy h2 {
  max-width: 700px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.12;
}
.button {
  min-height: 48px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
.button-light {
  background: #fff;
  color: var(--primary);
}
.registration-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.registration-copy {
  position: sticky;
  top: 105px;
}
.registration-copy > p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 15px;
}
.support-list {
  display: grid;
  gap: 13px;
}
.support-item {
  display: flex;
  gap: 12px;
}
.support-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}
.support-item strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
}
.support-item small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.registration-form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.form-header small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.form-header h3 {
  color: var(--primary);
  font-size: 21px;
}
.form-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0ddc8;
  color: var(--orange);
  font-weight: 800;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field.full {
  grid-column: 1/-1;
}
.field > span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fffcf8;
  outline: none;
  font-size: 12px;
}
.field textarea {
  min-height: 100px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(223, 91, 18, 0.08);
}
.consent {
  display: flex;
  gap: 9px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 10px;
}
.submit-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 800;
}
.form-message {
  display: none;
  margin-top: 14px;
  padding: 11px;
  border-radius: 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}
.form-message.success {
  display: block;
  background: #e8f8ed;
  color: #17652a;
}
.form-message.error {
  display: block;
  background: #fdecea;
  color: #9b2419;
}
.faq-section {
  background: var(--cream-2);
}
.faq-list {
  max-width: 820px;
  margin: auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.faq-question span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0ddc8;
  transition: 0.25s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.faq-answer p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 12px;
}
.faq-item.active .faq-question span {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
}
.footer {
  padding: 45px 0 18px;
  background: #f7ead8;
  color: #5f463b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 45px;
  padding-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #3d160e;
}

.footer-logo-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.footer-logo strong {
  display: block;
  color: #3d160e;
  font-size: 18px;
  line-height: 1.2;
}

.footer-logo small {
  display: block;
  margin-top: 3px;
  color: #76594c;
  font-size: 9px;
}

.footer-brand p {
  color: #5f463b;
  font-size: 11px;
}

.footer h4 {
  margin-bottom: 12px;
  color: #3d160e;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: #5f463b;
  font-size: 11px;
}

.footer-links a {
  color: #5f463b;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #df5b12;
}

.copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(61, 22, 14, 0.15);
  color: #76594c;
  text-align: center;
  font-size: 10px;
}
.copyright {
  padding-top: 18px;
  border-top: 1px solid rgba(61, 22, 14, 0.15);
  color: #76594c;
  text-align: center;
  font-size: 10px;
}
.whatsapp-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1fb75a;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(31, 183, 90, 0.35);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    font-size: 16px;
  }
  .nav-menu.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .about-grid,
  .route-grid,
  .registration-grid {
    grid-template-columns: 1fr;
  }
  .registration-copy {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .hero {
    min-height: 65vh;
    background-position: center top;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 26px, 1200px);
  }
  .section {
    padding: 56px 0;
  }
  .logo-text strong {
    font-size: 18px;
  }
  .logo-text small {
    font-size: 9px;
  }
  .hero {
    min-height: 48vh;
    background-size: cover;
    background-position: center top;
  }
  .about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
  }
  .image-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }
  .route-image img {
    height: auto;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .registration-form {
    padding: 22px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .button {
    width: 100%;
  }
}

/* Hide the removed One Mission card completely */
.image-card {
  display: none !important;
}

/* Mobile banner and section after the form */
@media only screen and (max-width: 700px) {
  .hero {
    display: block !important;
    width: 100% !important;
    height: 39vw !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-top: 70px !important;
    padding: 0 !important;
    background-image: url("./images/banner.jpg") !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .hero .container {
    display: none !important;
  }

  .registration-grid,
  .about-grid {
    grid-template-columns: 1fr !important;
  }

  .registration-copy {
    position: static !important;
  }

  .registration-form {
    width: 100% !important;
  }

  .about-grid {
    gap: 24px !important;
  }

  .about-image,
  .about-content {
    width: 100% !important;
  }

  .about-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}

@media only screen and (max-width: 992px) {
  .hero {
    height: 39vw !important;
    min-height: 0 !important;
    background-size: 100% 100% !important;
  }
}