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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Countdown Banner */
.countdown-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #596E30;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  z-index: 1001;
  font-size: 12px;
  font-weight: 500;
}

.countdown-banner-text {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.countdown-banner-timer {
  display: flex;
  gap: 10px;
}

.countdown-banner-timer>span {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown-banner-timer>span>span:first-child {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.countdown-banner-timer>span>span:last-child {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 80px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  min-width: 220px;
}

.logo {
  height: 48px;
  width: auto;
}

.mindstretcher-logo {
  height: 38px;
}

.navbar-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.navbar-links a {
  text-decoration: none;
  color: #596E30;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.navbar-links a:hover {
  opacity: 0.7;
}

.navbar-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
  min-width: 380px;
  justify-content: flex-end;
}

.navbar-btn {
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #596E30;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background-color: white;
  flex-direction: column;
  padding: 24px;
  padding-bottom: 32px;
  gap: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu > a:not(.mobile-menu-btn) {
  text-decoration: none;
  color: #596E30;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu > a:nth-last-child(3) {
  border-bottom: none;
  margin-bottom: 24px;
}

.mobile-menu-btn {
  padding: 16px 24px !important;
  width: 100%;
  justify-content: center;
  margin: 0 !important;
  font-size: 16px !important;
  min-height: 54px;
  height: auto;
  line-height: 1.5;
  display: flex !important;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  border-width: 2px !important;
  border-style: solid !important;
  flex-shrink: 0;
}

.mobile-menu-btn + .mobile-menu-btn {
  margin-top: 12px !important;
}

.mobile-menu-btn.btn-secondary {
  background-color: #FFFFFF;
  color: #596E30;
  border-color: #596E30;
}

.mobile-menu-btn.btn-primary {
  background-color: #596E30;
  color: white;
  border-color: #596E30;
}

.mobile-menu-btn .whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('static/img/new2_hero_background.png');
  background-size: 100% auto;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  padding: 180px 80px 0 80px;
}

.hero-content {
  max-width: 700px;
  z-index: 2;
}

.hero-image {
  display: none;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #596E30;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 20px;
  font-weight: 500;
  color: #8B8B8B;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Buttons */
.btn {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #596E30;
  color: white;
}

.btn-primary:hover {
  background-color: #4a5c27;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #596E30;
  border: 2px solid #596E30;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp .whatsapp-icon {
  width: 32px;
  height: 32px;
}

/* Collaborators Section */
.collaborators {
  padding: 24px 0;
  background-color: white;
}

.collaborators-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.collaborators-label {
  font-size: 12px;
  font-weight: 600;
  color: #8B8B8B;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.collaborators-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.collaborator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.collaborator-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.collaborator-name {
  font-size: 13px;
  font-weight: 400;
  color: #8B8B8B;
  margin: 0;
  text-align: center;
}

/* Collaborators - Tablet & Desktop */
@media (min-width: 768px) {
  .collaborators {
    padding: 32px 0;
  }

  .collaborators-container {
    padding: 0 40px;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .collaborators-label {
    font-size: 12px;
  }

  .collaborators-logos {
    gap: 40px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .collaborator-logo {
    height: 48px;
  }

  .collaborator-name {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .collaborators {
    padding: 32px 0;
  }

  .collaborators-container {
    padding: 0 80px;
  }

  .collaborators-label {
    font-size: 12px;
  }

  .collaborators-logos {
    gap: 56px;
  }

  .collaborator-logo {
    height: 52px;
  }

  .collaborator-name {
    font-size: 15px;
  }
}

/* Pricing Section */
.pricing {
  padding: 20px 80px 20px 80px;
  background-color: white;
}

.pricing-container {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  flex: 1;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.price-card.standard {
  background-color: #FAFAFA;
  justify-content: center;
  align-items: center;
}

.price-label {
  font-size: 14px;
  font-weight: 500;
  color: #939393;
  margin-bottom: 12px;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #717171;
  text-align: center;
  line-height: 1.1;
  margin: 0;
}

.price-gst {
  font-size: 11px;
  font-weight: 400;
  color: #939393;
  text-align: center;
  margin: 0;
}

.price-card.early-bird {
  background-color: #596E30;
  color: white;
  padding: 24px 32px;
}

.early-bird-label {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.early-bird-amount {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.1;
  margin: 0;
}

.price-card.early-bird .price-gst {
  color: rgba(255, 255, 255, 0.6);
}

.price-card.early-bird .price-wrapper {
  margin-bottom: 4px;
}

.early-bird-deadline {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.countdown-item {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.countdown-number {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.countdown-label {
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 4px;
}

.btn-reserve {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 100%;
  justify-content: center;
}

.btn-reserve:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.fire-icon {
  width: 20px;
  height: 20px;
}

.price-card.cta {
  background-color: #FEF9D8;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price-tag-icon {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #596E30;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #8B8B8B;
  margin-bottom: 20px;
}

.btn-cta {
  background-color: #596E30;
  color: white;
}

.btn-cta:hover {
  background-color: #4a5c27;
}

/* Unique Section */
.unique-section {
  padding: 60px 80px;
  background-color: white;
  text-align: center;
}

.unique-header {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.unique-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #596E30;
  line-height: 1.2;
  margin: 0;
  position: relative;
}

.unique-word {
  position: relative;
  display: inline-block;
}

.underline-img {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
}

.sparkle-img {
  position: relative;
  top: -15px;
  left: -5px;
  width: 45px;
  height: auto;
  pointer-events: none;
  display: inline-block;
  vertical-align: top;
}

.unique-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #8B8B8B;
  max-width: 800px;
  margin: 0.8em auto 50px;
}

.unique-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background-color: #FEF9D8;
  border-radius: 20px;
  border: 2px dashed #F0D580;
  padding: 70px 35px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  min-height: 280px;
}

.feature-icon {
  width: 90px;
  height: 90px;
  background-color: #596E30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #596E30;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.4;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card p {
  font-size: 16px;
  font-weight: 400;
  color: #596E30;
  line-height: 1.6;
  margin: 0;
}

/* Activities Carousel Section */
.activities-carousel {
  padding: 40px 0;
  background-color: white;
  overflow: hidden;
}

.activities-carousel-container {
  max-width: 100%;
  margin: 0 auto;
}

.activities-row {
  overflow: hidden;
  margin-bottom: 16px;
  width: 100%;
}

.activities-row:last-child {
  margin-bottom: 0;
}

.activities-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.activities-row-left .activities-track {
  animation-name: scroll-left;
  animation-duration: 40s;
}

.activities-row-right .activities-track {
  animation-name: scroll-right;
  animation-duration: 40s;
}

.activity-item {
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  width: 240px;
  height: 240px;
}

.activity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Activities Carousel - Tablet */
@media (max-width: 1200px) {
  .activities-carousel {
    padding: 32px 0;
  }

  .activities-row {
    margin-bottom: 12px;
  }

  .activities-track {
    gap: 12px;
  }

  .activity-item {
    width: 200px;
    height: 200px;
    border-radius: 16px;
  }
}

/* Activities Carousel - Mobile */
@media (max-width: 768px) {
  .activities-carousel {
    padding: 24px 0;
  }

  .activities-row {
    margin-bottom: 12px;
  }

  .activities-track {
    gap: 12px;
  }

  .activities-row-left .activities-track {
    animation-duration: 30s;
  }

  .activities-row-right .activities-track {
    animation-duration: 30s;
  }

  .activity-item {
    width: 160px;
    height: 160px;
    border-radius: 16px;
  }
}

/* Desktop Small Screens (1025px - 1280px) */
@media (max-width: 1280px) {
  .navbar-links {
    display: none;
  }

  .navbar-buttons {
    display: none;
  }

  .floating-whatsapp {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 40px;
  }

  .hero {
    height: auto;
    background-image: none;
    flex-direction: column;
    padding: 140px 40px 40px 40px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hero-image {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  .pricing {
    padding: 0 40px 50px 40px;
  }

  .pricing-container {
    flex-direction: column;
  }

  .countdown {
    justify-content: center;
  }

  .price-card.early-bird {
    align-items: center;
  }

  .unique-section {
    padding: 60px 40px;
  }

  .unique-header h2 {
    font-size: 40px;
    padding: 30px 50px 30px 30px;
  }

  .sparkle-img {
    width: 40px;
    right: -25px;
  }

  .unique-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 32px;
  }

  .feature-card h3 {
    font-size: 22px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .countdown-banner {
    font-size: 10px;
    padding: 6px 12px;
    gap: 8px;
  }

  .countdown-banner-timer {
    gap: 6px;
  }

  .countdown-banner-timer>span {
    padding: 3px 7px;
    gap: 3px;
  }

  .countdown-banner-timer>span>span:first-child {
    font-size: 13px;
  }

  .countdown-banner-timer>span>span:last-child {
    font-size: 9px;
  }

  .navbar {
    padding: 12px 24px;
    top: 32px;
  }

  .mobile-menu {
    top: 98px;
    max-height: calc(100vh - 98px);
    padding-bottom: 40px;
  }

  .logo {
    height: 42px;
  }

  .mindstretcher-logo {
    height: 34px;
  }

  .navbar-btn-desktop {
    display: none;
  }

  .floating-whatsapp {
    display: flex;
  }

  .hero {
    padding: 155px 24px 24px 24px;
    background-image: none;
  }

  .hero-content {
    margin-bottom: 24px;
  }

  .hero-image {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  .hero-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
  }

  .pricing {
    padding: 24px 24px 40px 24px;
  }

  .price-amount {
    font-size: 40px;
  }

  .price-gst {
    font-size: 10px;
  }

  .early-bird-amount {
    font-size: 40px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-item {
    min-width: 50px;
    flex: 1;
    padding: 8px;
  }

  .countdown-number {
    font-size: 24px;
  }

  .countdown-label {
    font-size: 11px;
  }

  .unique-section {
    padding: 50px 24px;
  }

  .unique-header h2 {
    font-size: 28px;
    padding: 20px 40px 20px 20px;
    background-size: cover;
  }

  .sparkle-img {
    width: 30px;
    right: -20px;
    top: -8px;
  }

  .unique-subtitle {
    font-size: 18px;
    margin-bottom: 4em;
    margin-top: 0em;
  }

  .feature-card {
    padding: 50px 24px 28px;
    min-height: 200px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon img {
    width: 35px;
    height: 35px;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 17px;
  }
}

/* Adventure Section */
.adventure-section {
  padding: 80px 80px;
  background-color: white;
}

.adventure-header {
  text-align: center;
  margin-bottom: 60px;
}

.adventure-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #596E30;
  margin-bottom: 16px;
}

.adventure-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #8B8B8B;
  max-width: 800px;
  margin: 0 auto;
}

.adventure-content {
  display: flex;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

.adventure-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.adventure-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.adventure-img.campground {
  max-height: 400px;
}

.adventure-img.photos {
  height: 800px;
  object-fit: contain;
}

.adventure-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.day-card {
  background-color: #FAFAFA;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.day-badge {
  background-color: #596E30;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}

.day-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.day-text {
  flex: 1;
}

.day-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #596E30;
  margin-bottom: 12px;
  margin-top: 0;
}

.day-text p {
  font-size: 16px;
  font-weight: 400;
  color: #8B8B8B;
  line-height: 1.6;
  margin: 0;
}

.day-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Adventure Section - Tablet */
@media (max-width: 1200px) {
  .adventure-section {
    padding: 60px 40px;
  }

  .adventure-header h2 {
    font-size: 40px;
  }

  .adventure-content {
    flex-direction: column;
    gap: 40px;
  }

  .adventure-left {
    position: static;
    flex-direction: row;
    width: 100%;
  }

  .adventure-img.campground,
  .adventure-img.photos {
    max-height: none;
    height: 300px;
  }

  .day-icon {
    width: 120px;
    height: 120px;
  }
}

/* Adventure Section - Mobile */
@media (max-width: 768px) {
  .adventure-section {
    padding: 50px 24px;
  }

  .adventure-header h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .adventure-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .adventure-header {
    margin-bottom: 40px;
  }

  .adventure-content {
    gap: 32px;
  }

  .adventure-left {
    flex-direction: column;
    gap: 16px;
  }

  .adventure-img.campground,
  .adventure-img.photos {
    height: auto;
    border-radius: 16px;
  }

  .adventure-right {
    gap: 16px;
  }

  .day-card {
    padding: 20px;
    gap: 16px;
  }

  .day-badge {
    font-size: 13px;
    padding: 6px 16px;
  }

  .day-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .day-icon {
    width: 120px;
    height: 120px;
    order: -1;
  }

  .day-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .day-text p {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* Video Section */
.video-section {
  padding: 80px;
  background-color: white;
}

.video-container {
  max-width: 1400px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.camp-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 32px;
}

/* Video Section - Tablet */
@media (max-width: 1200px) {
  .video-section {
    padding: 60px 40px;
  }

  .video-wrapper {
    border-radius: 24px;
  }

  .camp-video {
    border-radius: 24px;
  }
}

/* Video Section - Mobile */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 24px;
  }

  .video-wrapper {
    border-radius: 20px;
  }

  .camp-video {
    border-radius: 20px;
  }
}

/* Journey CTA Section */
.journey-cta {
  padding: 80px;
  background-color: white;
}

.journey-content {
  position: relative;
  height: 600px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('static/img/journey.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  text-align: center;
}

.journey-content h2 {
  font-size: 56px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
  line-height: 1.2;
}

.journey-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-journey-primary {
  background-color: white;
  color: #4A5D3F;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
}

.btn-journey-primary:hover {
  background-color: #f5f5f5;
}

.btn-journey-primary .whatsapp-icon {
  width: 24px;
  height: 24px;
}

.btn-journey-secondary {
  background-color: #7A9B57;
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
}

.btn-journey-secondary:hover {
  background-color: #6a8a4a;
}

/* Journey CTA - Tablet */
@media (max-width: 1200px) {
  .journey-cta {
    padding: 40px;
  }

  .journey-content {
    height: 400px;
  }

  .journey-content h2 {
    font-size: 44px;
  }
}

/* Journey CTA - Mobile */
@media (max-width: 768px) {
  .journey-cta {
    padding: 24px;
  }

  .journey-content {
    height: 350px;
    padding: 20px;
  }

  .journey-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .journey-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-journey-primary,
  .btn-journey-secondary {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    justify-content: center;
  }
}

/* Tribe Section */
.tribe-section {
  padding: 60px 80px;
  background-color: white;
}

.tribe-header {
  text-align: center;
  margin-bottom: 32px;
}

.tribe-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #596E30;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.tribe-experience-word {
  position: relative;
  display: inline-block;
}

.tribe-experience-word .underline-img {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
}

.tribe-header .sparkle-img {
  position: relative;
  top: -15px;
  left: -5px;
  width: 50px;
  height: auto;
  pointer-events: none;
  display: inline-block;
  vertical-align: top;
}

.tribe-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #FAFAFA;
  border-radius: 32px;
  padding: 48px;
}

.tribe-intro {
  text-align: center;
  margin-bottom: 32px;
}

.tribe-intro h3 {
  font-size: 28px;
  font-weight: 600;
  color: #8B8B8B;
  margin-bottom: 12px;
}

.tribe-intro p {
  font-size: 18px;
  font-weight: 400;
  color: #8B8B8B;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.tribe-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tribe-card {
  background-color: white;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tribe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tribe-icon {
  width: 100%;
  max-width: 200px;
  height: 200px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tribe-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tribe-card:nth-child(2) .tribe-icon img,
.tribe-card:nth-child(3) .tribe-icon img {
  transform: scale(1.4);
}

.tribe-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #596E30;
  margin-bottom: 8px;
  margin-top: 0;
}

.tribe-card p {
  font-size: 15px;
  font-weight: 400;
  color: #8B8B8B;
  line-height: 1.6;
  margin: 0;
}

.tribe-text-mobile {
  display: none;
}

/* Tribe Section - Tablet */
@media (max-width: 1200px) {
  .tribe-section {
    padding: 50px 40px;
  }

  .tribe-header {
    margin-bottom: 28px;
  }

  .tribe-header h2 {
    font-size: 40px;
  }

  .tribe-header .sparkle-img {
    width: 40px;
    right: -25px;
  }

  .tribe-container {
    padding: 36px;
  }

  .tribe-intro {
    margin-bottom: 28px;
  }

  .tribe-intro h3 {
    font-size: 24px;
  }

  .tribe-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tribe-icon {
    max-width: 180px;
    height: 180px;
  }

  .tribe-card {
    padding: 24px 20px;
  }
}

/* Tribe Section - Mobile */
@media (max-width: 768px) {
  .tribe-section {
    padding: 40px 24px;
  }

  .tribe-header {
    margin-bottom: 20px;
  }

  .tribe-header h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .tribe-header .sparkle-img {
    width: 22px;
    right: -12px;
    top: -6px;
  }

  .tribe-container {
    padding: 28px 20px;
  }

  .tribe-intro {
    margin-bottom: 20px;
  }

  .tribe-intro h3 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .tribe-intro p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .tribe-features {
    gap: 12px;
  }

  .tribe-card {
    padding: 18px 14px;
    min-height: auto;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
  }

  .tribe-icon {
    max-width: 85px;
    min-width: 85px;
    height: 85px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .tribe-card:nth-child(2) .tribe-icon img,
  .tribe-card:nth-child(3) .tribe-icon img {
    transform: scale(1.3);
  }

  .tribe-text {
    flex: 1;
    min-width: 0;
  }

  .tribe-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .tribe-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .tribe-text-desktop {
    display: none;
  }

  .tribe-text-mobile {
    display: block;
  }
}

/* Camp Details Section */
.camp-details-section {
  padding: 50px 80px;
  background-color: white;
}

.camp-details-header {
  text-align: center;
  margin-bottom: 32px;
}

.camp-details-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #596E30;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.age-group-instruction {
  font-size: 14px;
  font-weight: 500;
  color: #8B8B8B;
  margin-bottom: 12px;
}

/* Age Group Pills */
.age-group-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.age-pill {
  background-color: rgba(89, 110, 48, 0.08);
  border: 2px solid rgba(89, 110, 48, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #596E30;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-pill:hover {
  background-color: rgba(89, 110, 48, 0.12);
  border-color: #596E30;
  transform: translateY(-1px);
}

.age-pill.active {
  background-color: #596E30;
  border-color: #596E30;
  color: white;
  box-shadow: 0 2px 8px rgba(89, 110, 48, 0.3);
}

.camp-details-content {
  max-width: 1200px;
  margin: 0 auto;
}

.details-row {
  margin-bottom: 24px;
}

.details-row:last-of-type {
  margin-bottom: 24px;
}

.details-label {
  font-size: 12px;
  font-weight: 600;
  color: #8B8B8B;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

/* Dates Section */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}

.date-card {
  border-radius: 16px;
  padding: 16px 16px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-bottom: 34px;
  min-height: 70px;
}

.date-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.date-card.red {
  background-color: #B22A2E;
}

.date-card.blue {
  background-color: #1B3A5F;
}

.date-card.dimmed {
  opacity: 0.3;
  pointer-events: none;
}

.date-range {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-group {
  background-color: white;
  color: #596E30;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-card.red .date-group {
  border: 2px solid #B22A2E;
}

.date-card.blue .date-group {
  border: 2px solid #1B3A5F;
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.location-card {
  background-color: #FBF8E8;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(89, 110, 48, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.location-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.location-details {
  flex: 1;
}

.location-name {
  font-size: 17px;
  font-weight: 700;
  color: #596E30;
  margin-bottom: 4px;
}

.location-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #8B8B8B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.location-address {
  font-size: 14px;
  font-weight: 400;
  color: #8B8B8B;
  line-height: 1.6;
}

/* Age Groups Section */
.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.age-group-card {
  background-color: #FBF8E8;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(89, 110, 48, 0.08);
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.age-group-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.age-group-grade {
  font-size: 28px;
  font-weight: 700;
  color: #596E30;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.age-group-age {
  font-size: 16px;
  font-weight: 500;
  color: #8B8B8B;
}

/* Format Section */
.format-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.format-info-item {
  background-color: #FBF8E8;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(89, 110, 48, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.format-info-label {
  font-size: 12px;
  font-weight: 600;
  color: #8B8B8B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.format-info-value {
  font-size: 17px;
  font-weight: 700;
  color: #596E30;
}

/* Pricing Section */
.pricing-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-item {
  background-color: #FBF8E8;
  border-radius: 16px;
  padding: 14px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(89, 110, 48, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.price-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.price-label-text {
  font-size: 10px;
  font-weight: 600;
  color: #8B8B8B;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.price-value {
  font-size: 32px;
  font-weight: 800;
  color: #596E30;
  text-align: center;
  line-height: 1.1;
}

.price-gst-small {
  font-size: 9px;
  font-weight: 400;
  color: #8B8B8B;
  display: block;
  text-align: center;
}

.earlybird-price {
  background-color: #596E30;
  border-color: #596E30;
}

.earlybird-price:hover {
  box-shadow: 0 8px 24px rgba(89, 110, 48, 0.2);
}

.earlybird-price .price-label-text {
  color: rgba(255, 255, 255, 0.7);
}

.earlybird-price .price-value {
  color: white;
  font-weight: 800;
}

.earlybird-price .price-gst-small {
  color: rgba(255, 255, 255, 0.6);
}

/* Notes Section */
.details-notes {
  font-size: 13px;
  font-weight: 400;
  color: #8B8B8B;
  margin-bottom: 24px;
  text-align: center;
}

/* CTA Button */
.details-cta {
  text-align: center;
}

.btn-camp-reserve {
  background-color: #596E30;
  color: white;
  padding: 16px 52px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(89, 110, 48, 0.2);
}

.btn-camp-reserve:hover {
  background-color: #4a5c27;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(89, 110, 48, 0.3);
}

/* Camp Details - Tablet */
@media (max-width: 1200px) {
  .camp-details-section {
    padding: 60px 40px;
  }

  .camp-details-header h2 {
    font-size: 40px;
  }

  .age-group-pills {
    flex-direction: column;
    gap: 12px;
  }

  .age-pill {
    width: 100%;
    max-width: 400px;
  }

  .details-row {
    margin-bottom: 40px;
  }

  .dates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .age-groups-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Camp Details - Mobile */
@media (max-width: 768px) {
  .camp-details-section {
    padding: 40px 24px;
  }

  .camp-details-header {
    margin-bottom: 32px;
  }

  .camp-details-header h2 {
    font-size: 28px;
  }

  .age-pill {
    padding: 8px 18px;
    font-size: 13px;
  }

  .format-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .details-row {
    margin-bottom: 32px;
  }

  .details-label {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .dates-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .date-card {
    padding: 24px 20px;
    padding-bottom: 48px;
  }

  .date-range {
    font-size: 16px;
    text-align: center;
  }

  .date-group {
    font-size: 12px;
    padding: 8px 16px;
    white-space: nowrap;
    bottom: -14px;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .location-card {
    padding: 24px;
    gap: 20px;
  }

  .location-icon {
    width: 48px;
    height: 48px;
  }

  .location-icon img {
    width: 48px;
    height: 48px;
  }

  .location-name {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .location-subtitle {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .location-address {
    font-size: 14px;
  }

  .age-groups-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .age-group-card {
    padding: 32px 24px;
  }

  .age-group-grade {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .age-group-age {
    font-size: 15px;
  }

  .format-content {
    padding: 32px 24px;
  }

  .format-highlight {
    font-size: 20px;
  }

  .format-schedule,
  .format-time {
    font-size: 16px;
  }

  .pricing-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-item {
    padding: 14px 18px;
  }

  .price-label-text {
    font-size: 10px;
  }

  .price-value {
    font-size: 30px;
  }

  .price-gst-small {
    font-size: 8px;
  }

  .age-group-instruction {
    font-size: 13px;
  }

  .details-notes {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .btn-camp-reserve {
    width: 100%;
    padding: 18px 48px;
    font-size: 16px;
  }
}

/* Why Parents Love It Section */
.parents-love-section {
  padding: 60px 80px;
  background-color: white;
}

.parents-love-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #FAFAFA;
  border-radius: 32px;
  padding: 48px;
}

.parents-love-container h2 {
  font-size: 48px;
  font-weight: 700;
  color: #596E30;
  text-align: left;
  margin-bottom: 32px;
}

.parents-love-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.parents-card {
  background-color: white;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parents-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.parents-card.large {
  grid-column: span 3;
  flex-direction: row;
  text-align: left;
  gap: 24px;
}

.parents-card.small {
  grid-column: span 2;
}

.parents-card-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.parents-card.large .parents-card-image {
  max-width: 200px;
  order: 2;
}

.parents-card.large p {
  order: 1;
  flex: 1;
}

.parents-card p {
  font-size: 18px;
  font-weight: 500;
  color: #8B8B8B;
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
}

/* Parents Love It - Tablet */
@media (max-width: 1200px) {
  .parents-love-section {
    padding: 50px 40px;
  }

  .parents-love-container {
    padding: 36px;
  }

  .parents-love-container h2 {
    font-size: 40px;
    margin-bottom: 28px;
  }

  .parents-love-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .parents-card.large {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .parents-card.small {
    grid-column: span 1;
  }

  .parents-card {
    padding: 28px;
  }

  .parents-card-image {
    max-width: 240px;
  }

  .parents-card.large .parents-card-image {
    max-width: 240px;
    order: 0;
  }

  .parents-card.large p {
    order: 0;
  }
}

/* Parents Love It - Mobile */
@media (max-width: 768px) {
  .parents-love-section {
    padding: 40px 24px;
  }

  .parents-love-container {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .parents-love-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .parents-love-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .parents-card.large,
  .parents-card.small {
    grid-column: span 1;
  }

  .parents-card {
    padding: 24px 18px;
    gap: 16px;
    border-radius: 20px;
  }

  .parents-card-image {
    max-width: 200px;
  }

  .parents-card.large .parents-card-image {
    max-width: 220px;
  }

  .parents-card p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background-color: white;
  overflow: hidden;
}

.testimonials-container {
  max-width: 100%;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-size: 48px;
  font-weight: 700;
  color: #596E30;
  text-align: center;
  margin-bottom: 48px;
  padding: 0 80px;
}

.testimonials-row {
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
}

.testimonials-row:last-child {
  margin-bottom: 0;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.testimonials-row-left .testimonials-track {
  animation-name: scroll-left;
  animation-duration: 30s;
}

.testimonials-row-right .testimonials-track {
  animation-name: scroll-right;
  animation-duration: 30s;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.testimonial-item {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.testimonial-item:hover {
  transform: translateY(-4px);
}

.testimonial-image {
  width: 164px;
  height: 164px;
  background-color: transparent;
  box-shadow: none;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.testimonial-text {
  width: 300px;
  height: 164px;
  background-color: #FAFAFA;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-text:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #8B8B8B;
  margin: 0;
}

.testimonial-text p {
  font-size: 14px;
  font-weight: 300;
  color: #8B8B8B;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials - Tablet */
@media (max-width: 1200px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-container h2 {
    font-size: 40px;
    margin-bottom: 36px;
    padding: 0 40px;
  }

  .testimonials-row {
    margin-bottom: 16px;
  }

  .testimonials-track {
    gap: 12px;
  }

  .testimonial-image {
    width: 140px;
    height: 140px;
  }

  .testimonial-text {
    width: 260px;
    height: 140px;
    padding: 20px;
  }

  .testimonial-text h3 {
    font-size: 15px;
  }

  .testimonial-text p {
    font-size: 13px;
  }
}

/* Testimonials - Mobile */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-container h2 {
    font-size: 28px;
    margin-bottom: 28px;
    padding: 0 24px;
  }

  .testimonials-row {
    margin-bottom: 12px;
  }

  .testimonials-track {
    gap: 12px;
  }

  .testimonials-row-left .testimonials-track {
    animation-duration: 20s;
  }

  .testimonials-row-right .testimonials-track {
    animation-duration: 20s;
  }

  .testimonial-item {
    border-radius: 20px;
  }

  .testimonial-image {
    width: 120px;
    height: 120px;
  }

  .testimonial-image img {
    border-radius: 20px;
  }

  .testimonial-text {
    width: 240px;
    height: 120px;
    padding: 16px;
  }

  .testimonial-text h3 {
    font-size: 14px;
  }

  .testimonial-text p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* About Us Section */
.about-section {
  padding: 60px 80px;
  background-color: white;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #FAFAFA;
  border-radius: 32px;
  padding: 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.about-image {
  flex: 1;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #596E30;
  margin: 0;
  line-height: 1.2;
}

.about-content p {
  font-size: 18px;
  font-weight: 400;
  color: #8B8B8B;
  line-height: 1.8;
  margin: 0;
}

.btn-reserve-spot {
  background-color: #596E30;
  color: white;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(89, 110, 48, 0.2);
  width: fit-content;
}

.btn-reserve-spot:hover {
  background-color: #4a5c27;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(89, 110, 48, 0.3);
}

/* About Us - Tablet */
@media (max-width: 1200px) {
  .about-section {
    padding: 50px 40px;
  }

  .about-container {
    padding: 0;
    gap: 0;
  }

  .about-content {
    padding: 36px;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .about-content p {
    font-size: 17px;
  }
}

/* About Us - Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 24px;
  }

  .about-container {
    padding: 0;
    border-radius: 24px;
    flex-direction: column;
    gap: 0;
  }

  .about-image {
    min-height: 250px;
  }

  .about-content {
    padding: 28px 20px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .btn-reserve-spot {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* Promo Section */
.promo-section {
  padding: 60px 80px 20px;
  background-color: white;
}

.promo-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-card {
  border-radius: 32px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 280px;
  transition: transform 0.3s ease;
}

.promo-card:hover {
  animation: jiggle 0.6s ease-in-out;
}

@keyframes jiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-1deg);
  }

  50% {
    transform: rotate(1deg);
  }

  75% {
    transform: rotate(-0.5deg);
  }
}

.promo-card.promo-gift {
  background-color: #596E30;
  color: white;
}

.promo-card.promo-group {
  background-image: url('static/img/group_signup.png');
  background-size: cover;
  background-position: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 48px;
}

.promo-group-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.promo-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-card h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.promo-card.promo-gift h3 {
  color: white;
}

.promo-card.promo-group h3 {
  color: #596E30;
  font-size: 36px;
}

.promo-discount {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.promo-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-image img {
  width: 280px;
  height: auto;
  object-fit: contain;
}

.btn-chat {
  background-color: white;
  color: #596E30;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-chat:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Promo Section - Tablet */
@media (max-width: 1200px) {
  .promo-section {
    padding: 50px 40px 20px;
  }

  .promo-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promo-card {
    padding: 40px;
    min-height: 240px;
  }

  .promo-card h3 {
    font-size: 28px;
  }

  .promo-card.promo-group h3 {
    font-size: 32px;
  }

  .promo-discount {
    font-size: 22px;
  }

  .promo-image img {
    width: 240px;
  }
}

/* Promo Section - Mobile */
@media (max-width: 768px) {
  .promo-section {
    padding: 40px 24px 20px;
  }

  .promo-container {
    gap: 16px;
  }

  .promo-card {
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }

  .promo-card.promo-gift {
    text-align: center;
    padding: 28px 24px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .promo-content {
    flex: 1;
    text-align: left;
  }

  .promo-card.promo-group {
    padding: 48px 32px;
  }

  .promo-card h3 {
    font-size: 24px;
  }

  .promo-card.promo-gift h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .promo-card.promo-group h3 {
    font-size: 28px;
  }

  .promo-discount {
    font-size: 18px;
  }

  .promo-image {
    flex-shrink: 0;
  }

  .promo-image img {
    width: 120px;
  }

  .btn-chat {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 60px 80px;
  background-color: white;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-container h2 {
  font-size: 48px;
  font-weight: 700;
  color: #596E30;
  text-align: center;
  margin-bottom: 40px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #FAFAFA;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background-color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #596E30;
  transition: all 0.3s ease;
  gap: 20px;
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-question span {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #8B8B8B;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #596E30;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 400;
  color: #8B8B8B;
  line-height: 1.7;
  margin: 0;
}

/* FAQ - Tablet */
@media (max-width: 1200px) {
  .faq-section {
    padding: 50px 40px;
  }

  .faq-container h2 {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .faq-question {
    font-size: 17px;
    padding: 22px 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 22px 24px;
  }
}

/* FAQ - Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 24px;
  }

  .faq-container h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .faq-items {
    gap: 10px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
    gap: 12px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Footer */
.footer {
  background-color: #FAFAFA;
  padding: 32px 80px;
  border-top: 1px solid #E5E5E5;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 400;
  color: #8B8B8B;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 400;
  color: #8B8B8B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #596E30;
  text-decoration: underline;
}

.footer-separator {
  font-size: 12px;
  color: #CCCCCC;
}

/* Footer - Tablet */
@media (max-width: 1200px) {
  .footer {
    padding: 28px 40px;
  }

  .footer-logo {
    height: 28px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-separator {
    font-size: 11px;
  }
}

/* Footer - Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 24px;
  }

  .footer-logos {
    gap: 16px;
  }

  .footer-logo {
    height: 24px;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .footer-separator {
    display: none;
  }
}