@charset "UTF-8";
.hero-section {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}
.hero-section .early-reg-container {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1200px;
  padding: 0 24px;
}
.hero-section .early-reg-container .early-reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: rgba(249, 249, 249, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(249, 249, 249, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.hero-section .early-reg-container .reg-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
}
.hero-section .early-reg-container .reg-info-item:not(:last-child) {
  border-right: 1px solid rgba(249, 249, 249, 0.15);
}
.hero-section .early-reg-container .reg-info-item .info-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #f9f9f9;
  opacity: 0.85;
  letter-spacing: 1px;
}
.hero-section .early-reg-container .reg-info-item .info-value {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 180, 216, 0.3);
}
.hero-section .early-reg-container .reg-info-item .info-value .time-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9f9f9;
  opacity: 0.9;
  text-shadow: none;
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  color: #f9f9f9;
  text-align: center;
}
.hero-section .hero-content .hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: clamp(16px, 3vw, 24px);
  padding: clamp(6px, 1.5vw, 8px) clamp(16px, 3vw, 24px);
  border-radius: 50px;
  opacity: 1;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-content h1 {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 16px;
  word-wrap: break-word;
  hyphens: auto;
}
.hero-section .hero-content p:not(.hero-badge) {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 850px) {
  .hero-section .hero-content .hero-buttons {
    flex-direction: column-reverse;
    gap: 12px;
  }
}
.hero-section .hero-content .btn-primary {
  background-color: #ff5c00;
  color: #f9f9f9;
  transition: all 0.3s ease-in-out;
  padding: 14px 20px;
  display: block;
  font-size: 18px;
}
.hero-section .hero-content .btn-primary:hover {
  background-color: #f9f9f9;
  color: #1c4425;
}
@media screen and (max-width: 992px) {
  .hero-section .early-reg-container .early-reg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-section .early-reg-container .reg-info-item:nth-child(2) {
    border-right: none;
  }
  .hero-section .early-reg-container .reg-info-item:nth-child(1),
  .hero-section .early-reg-container .reg-info-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}
@media screen and (max-width: 850px) {
  .hero-section {
    height: 75vh;
    padding-bottom: 50px;
  }
  .hero-section .early-reg-container {
    display: none !important;
  }
  .hero-section .hero-content {
    margin-bottom: -100px;
    margin-top: 0;
  }
  .hero-section .hero-content p:not(.hero-badge) {
    margin-bottom: 24px;
    max-width: 600px;
  }
  .hero-section .hero-content .btn-primary {
    background-color: #ff5c00;
    color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    padding: 10px;
    display: block;
    font-size: 15px;
  }
  .hero-section .hero-content .btn-primary:hover {
    background-color: #f9f9f9;
    color: #1c4425;
  }
}
@media screen and (max-height: 870px) {
  .hero-section .early-reg-container {
    display: none !important;
  }
}

.intro-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
  overflow: hidden;
}
.intro-section .intro-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.intro-section .intro-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  padding: 20px;
}
.intro-section .intro-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1c4425;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.intro-section .intro-content p {
  font-size: 1.15rem;
  color: #46664e;
  line-height: 1.6;
  margin-bottom: 35px;
}
.intro-section .intro-content .btn-primary {
  padding: 14px 36px;
  font-size: 1.1rem;
  background-color: #ff5c00;
  color: #f9f9f9;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.intro-section .intro-content .btn-primary:hover {
  background-color: #1c4425;
  color: #f9f9f9;
}
.intro-section .intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  width: 100%;
  max-width: 1100px;
  z-index: 2;
}
.intro-section .intro-cards .card {
  background-color: #1c4425;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}
.intro-section .intro-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.intro-section .intro-cards .card:hover .card-image img {
  transform: scale(1.1);
}
.intro-section .intro-cards .card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.intro-section .intro-cards .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.intro-section .intro-cards .card .card-body {
  padding: 30px 25px;
}
.intro-section .intro-cards .card .card-body h3 {
  font-size: 1.3rem;
  color: #f1f8e7;
  margin-bottom: 15px;
  font-weight: 700;
}
.intro-section .intro-cards .card .card-body p {
  font-size: 1rem;
  color: #f1f8e7;
  line-height: 1.5;
  margin-bottom: 0;
  opacity: 0.9;
}
@media screen and (max-width: 850px) {
  .intro-section {
    padding: 60px 20px;
  }
  .intro-section .intro-container {
    min-height: auto;
  }
  .intro-section .intro-content h2 {
    font-size: 2rem;
  }
  .intro-section .intro-content p {
    font-size: 1rem;
  }
  .intro-section .intro-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  .intro-section .intro-cards .card .card-image {
    height: 220px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  max-width: 90%;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease-out;
}
.modal .close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 45px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2;
}
.modal .close-btn:hover, .modal .close-btn:focus {
  color: #ff6b6b;
  text-decoration: none;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .modal .close-btn {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }
}
.about-section {
  width: 100%;
  background-color: #1c4425;
  padding: 100px 20px;
}
.about-section .about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-section .about-content {
  flex: 1.5;
}
.about-section .about-content .section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f9f9f9;
  margin-bottom: 12px;
}
.about-section .about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.about-section .about-content .main-desc {
  font-size: 1.15rem;
  color: #f1f8e7;
  line-height: 1.6;
  margin-bottom: 40px;
}
.about-section .about-content .about-steps {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.about-section .about-content .about-steps .step-box {
  flex: 1;
  background-color: #f1f8e7;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-section .about-content .about-steps .step-box:hover {
  transform: translateY(-5px);
}
.about-section .about-content .about-steps .step-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1c4425;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(28, 68, 37, 0.2);
  padding-bottom: 8px;
}
.about-section .about-content .about-steps .step-box p {
  font-size: 0.95rem;
  color: #1c4425;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .about-section {
    padding: 60px 20px;
  }
  .about-section .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-section .about-content {
    order: 1;
    margin-bottom: 0;
    width: 100%;
  }
  .about-section .about-content h2 {
    font-size: 2.2rem;
  }
  .about-section .about-content .about-steps {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
}

.process-section {
  width: 100%;
  background-color: #1c4425;
  padding: 0;
}
.process-section .process-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.process-section .scroll-wrapper {
  height: 400vh;
  position: relative;
}
.process-section .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.process-section .process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(20px, 5vh, 80px) auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}
.process-section .process-header .section-subtitle {
  display: inline-block;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9f9f9;
  margin-bottom: clamp(10px, 2vh, 20px);
}
.process-section .process-header h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f9f9f9;
  line-height: 1.1;
  letter-spacing: -1px;
  word-wrap: break-word;
}
.process-section .timeline-container {
  width: 100%;
  position: relative;
  padding: 0;
  box-sizing: border-box;
}
.process-section .line-bg {
  position: absolute;
  top: 16px;
  left: 31px;
  right: 31px;
  height: 4px;
  background-color: #46664e;
  z-index: 1;
}
.process-section .line-fill {
  position: absolute;
  top: 16px;
  left: 31px;
  right: 31px;
  height: 4px;
  background-color: #93d35c;
  z-index: 2;
  transform-origin: left center;
  transform: scaleX(var(--line-progress, 0));
  transition: transform 0.1s ease-out;
}
.process-section .steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  width: 100%;
}
.process-section .step-item {
  flex: 1;
  text-align: left;
  min-width: 0;
  padding: 0 15px;
  margin-right: 30px;
}
.process-section .step-item:last-child {
  margin-right: 0;
}
.process-section .step-item .station-dot {
  width: 32px;
  height: 32px;
  background-color: #46664e;
  border: 4px solid #46664e;
  border-radius: 50%;
  margin: 0 0 clamp(15px, 3vh, 30px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.process-section .step-item .station-dot .check-icon {
  width: 18px;
  height: 18px;
  fill: #f9f9f9;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.process-section .step-item .station-dot.is-reached {
  border-color: #93d35c;
  background-color: #93d35c;
}
.process-section .step-item .station-dot.is-reached .check-icon {
  opacity: 1;
  transform: scale(1);
}
.process-section .step-item h4 {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #f9f9f9;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.process-section .step-item h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #f9f9f9;
  margin-bottom: clamp(6px, 1.5vh, 12px);
  line-height: 1.2;
  word-wrap: break-word;
}
.process-section .step-item p {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: #f1f8e7;
  line-height: 1.4;
  padding-right: 15px;
}
@media screen and (max-width: 850px) {
  .process-section .timeline-container {
    padding: 0 15px 15px 62px;
  }
  .process-section .line-bg {
    top: 16px;
    bottom: 15px;
    left: 28px;
    right: auto;
    width: 4px;
    height: auto;
  }
  .process-section .line-fill {
    transform: none;
    top: 16px;
    left: 28px;
    right: auto;
    width: 4px;
    height: 0;
    transition: height 0.1s ease-out;
  }
  .process-section .steps-row {
    flex-direction: column;
    gap: clamp(15px, 3vh, 25px);
    text-align: left !important;
  }
  .process-section .step-item {
    position: relative;
    text-align: left !important;
    margin-right: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .process-section .step-item .station-dot {
    position: absolute;
    left: -48px;
    top: 0;
    margin: 0 !important;
  }
  .process-section .step-item p {
    padding-right: 0;
  }
}

.facility-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
}
.facility-section .facility-container {
  max-width: 1200px;
  margin: 0 auto;
}
.facility-section .facility-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.facility-section .facility-header .header-left {
  flex: 1.2;
}
.facility-section .facility-header .header-left .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 15px;
}
.facility-section .facility-header .header-left h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #1c4425;
}
.facility-section .facility-header .header-right {
  flex: 1;
}
.facility-section .facility-header .header-right p {
  font-size: 1.15rem;
  color: #1c4425;
  line-height: 1.6;
  max-width: 500px;
}
.facility-section .facility-gallery {
  display: flex;
  gap: 25px;
}
.facility-section .facility-slider {
  display: flex;
  gap: 25px;
  width: 100%;
}
.facility-section .facility-card {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.facility-section .facility-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.facility-section .facility-card:hover {
  transform: translateY(-5px);
}
.facility-section .facility-card:hover img {
  transform: scale(1.08);
}
.facility-section .slider-dots {
  display: none;
}
@media screen and (max-width: 992px) {
  .facility-section {
    padding: 60px 20px;
  }
  .facility-section .facility-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .facility-section .facility-header h2 {
    font-size: 2.2rem !important;
  }
  .facility-section .facility-header .header-right p {
    font-size: 1.1rem;
  }
  .facility-section .facility-gallery {
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
  }
  .facility-section .facility-slider {
    display: flex;
    gap: 25px;
    width: 100%;
  }
  .facility-section .facility-slider {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
  }
  .facility-section .facility-card {
    flex: 0 0 100%;
    aspect-ratio: 1/1;
  }
  .facility-section .facility-card:hover {
    transform: none;
  }
  .facility-section .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .facility-section .slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1c4425;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .facility-section .slider-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: #ff5c00;
  }
}

.sailing-package {
  background-color: #f1f8e7;
  color: #1c4425;
  padding: 5rem 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media (max-width: 768px) {
  .sailing-package {
    padding: 3.5rem 1rem;
  }
}
.sailing-package__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media (max-width: 768px) {
  .sailing-package__container {
    gap: 2.5rem;
  }
}
.sailing-package__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.sailing-package__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.sailing-package__intro {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.sailing-package__sub-intro {
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.8;
}
.sailing-package__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  width: 100%;
}
.sailing-package__card {
  background-color: rgba(28, 68, 37, 0.04);
  border: 1px solid rgba(28, 68, 37, 0.08);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sailing-package__card:hover {
  background-color: rgba(28, 68, 37, 0.07);
  transform: translateY(-3px);
  border-color: rgba(28, 68, 37, 0.2);
}
.sailing-package__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.sailing-package__icon svg {
  width: 100%;
  height: 100%;
  stroke: #1c4425;
}
.sailing-package__text {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}
.sailing-package__note {
  background-color: transparent;
  border: 1px dashed rgba(28, 68, 37, 0.3);
  padding: 1.75rem;
  border-radius: 14px;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.sailing-package__note-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.sailing-package__note-desc {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 576px) {
  .sailing-package__note {
    text-align: left;
    padding: 1.25rem;
  }
}

.packages-section {
  width: 100%;
  background-color: #f1f8e7;
  padding: 100px 20px;
}
.packages-section .packages-container {
  max-width: 1200px;
  margin: 0 auto;
}
.packages-section .packages-header {
  text-align: center;
  margin-bottom: 60px;
}
.packages-section .packages-header .section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c4425;
  margin-bottom: 15px;
}
.packages-section .packages-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #1c4425;
}
.packages-section .packages-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}
.packages-section .package-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #1c4425;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}
.packages-section .package-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.packages-section .package-card .card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.packages-section .package-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.packages-section .package-card:hover .card-image img {
  transform: scale(1.05);
}
.packages-section .package-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 40px;
}
.packages-section .package-card .card-body h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f1f8e7;
  margin-bottom: 15px;
  line-height: 1.2;
}
.packages-section .package-card .card-body p {
  font-size: 1.05rem;
  color: #f1f8e7;
  line-height: 1.6;
  margin-bottom: 30px;
}
.packages-section .package-card .card-body .faq-accordion {
  margin-bottom: 30px;
  background-color: rgba(241, 248, 231, 0.05);
  border: 1px solid rgba(241, 248, 231, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.packages-section .package-card .card-body .faq-accordion .faq-summary {
  padding: 15px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f8e7;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.3s ease;
}
.packages-section .package-card .card-body .faq-accordion .faq-summary:hover {
  background-color: rgba(241, 248, 231, 0.1);
}
.packages-section .package-card .card-body .faq-accordion .faq-summary .icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.4s ease-in-out;
}
.packages-section .package-card .card-body .faq-accordion .faq-content-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.packages-section .package-card .card-body .faq-accordion .faq-content {
  padding: 0 20px 20px 20px;
  border-top: 1px solid rgba(241, 248, 231, 0.1);
}
.packages-section .package-card .card-body .faq-accordion .faq-content .faq-desc {
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding-top: 15px;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .scroll-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.8rem;
  color: rgba(241, 248, 231, 0.6);
  font-style: italic;
  margin-bottom: 8px;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .scroll-hint .arrow {
  margin-left: 6px;
  font-size: 1.1rem;
  font-style: normal;
  animation: swipeHint 1.5s infinite ease-in-out;
}
@keyframes swipeHint {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table.two-cols .calendar-header,
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table.two-cols .calendar-row {
  grid-template-columns: 2fr 1fr;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  font-weight: 700;
  color: rgba(241, 248, 231, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(241, 248, 231, 0.2);
  padding-bottom: 8px;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  font-size: 0.95rem;
  color: #f1f8e7;
  align-items: center;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-row .status-warning {
  color: #ffb74d;
  font-weight: 700;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-row .status-available {
  color: #81c784;
  font-weight: 700;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-row .status-option {
  color: #ffa726;
  font-weight: 700;
}
.packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-row .status-reserved {
  color: #ef5350;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .packages-section .package-card .card-body .faq-accordion .faq-content .scroll-hint {
    display: flex;
  }
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
  }
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table::-webkit-scrollbar {
    height: 6px;
  }
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table::-webkit-scrollbar-track {
    background: rgba(241, 248, 231, 0.1);
    border-radius: 10px;
  }
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table::-webkit-scrollbar-thumb {
    background: rgba(241, 248, 231, 0.5);
    border-radius: 10px;
  }
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table::-webkit-scrollbar-thumb:hover {
    background: rgba(241, 248, 231, 0.8);
  }
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-header,
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table .calendar-row {
    min-width: 480px;
    margin-bottom: 8px;
  }
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table.two-cols .calendar-header,
  .packages-section .package-card .card-body .faq-accordion .faq-content .calendar-table.two-cols .calendar-row {
    min-width: 350px;
  }
}
.packages-section .package-card .card-body .faq-accordion.is-open .faq-summary .icon {
  transform: rotate(135deg);
}
.packages-section .package-card .card-body .btn-outline {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 28px;
  border: 2px solid #f1f8e7;
  color: #f1f8e7;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.packages-section .package-card .card-body .btn-outline:hover {
  background-color: #f1f8e7;
  color: #1c4425;
}
@media screen and (max-width: 992px) {
  .packages-section .packages-grid {
    flex-direction: column;
    gap: 30px;
  }
  .packages-section .package-card {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .packages-section .packages-header h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .packages-section {
    padding: 60px 20px;
  }
  .packages-section .card-body {
    padding: 30px;
  }
  .packages-section .card-body h3 {
    font-size: 1.5rem;
  }
}

.pricing-section {
  padding: 100px 20px;
  background-color: #f1f8e7;
  display: flex;
  justify-content: center;
}
.pricing-section .pricing-container {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .pricing-section .pricing-container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
}
.pricing-section .value-props {
  background: #f9f9f9;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(28, 68, 37, 0.05);
}
@media (max-width: 768px) {
  .pricing-section .value-props {
    order: 2;
  }
}
.pricing-section .value-props .section-title {
  color: #1c4425;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.pricing-section .value-props .included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.pricing-section .value-props .included-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #46664e;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
}
.pricing-section .value-props .included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00b4d8;
  font-weight: bold;
  font-size: 1.2rem;
}
.pricing-section .value-props .excluded-info {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(70, 102, 78, 0.2);
}
.pricing-section .value-props .excluded-info h4 {
  color: #ff5c00;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.pricing-section .value-props .excluded-info p {
  color: #46664e;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.pricing-section .price-card {
  background: #1c4425;
  color: #f9f9f9;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(28, 68, 37, 0.25);
}
@media (max-width: 768px) {
  .pricing-section .price-card {
    order: 1;
  }
}
.pricing-section .price-card .price-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
  margin-bottom: 1rem;
  display: block;
}
.pricing-section .price-card .amount {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  color: #f9f9f9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.pricing-section .price-card .amount .tax-info {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 0.5rem;
}
.pricing-section .price-card .cta-button {
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  background-color: #f9f9f9;
  color: #1c4425;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pricing-section .price-card .cta-button:hover {
  color: #f9f9f9;
  background-color: #ff5c00;
}

@keyframes warningPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 92, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 0, 0);
  }
}
@keyframes swipeAnim {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.schedule-section {
  background-color: #1c4425;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 20px;
}
.schedule-section .schedule-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.schedule-section h1 {
  color: #f1f8e7;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.schedule-section .schedule-desc {
  color: #f1f8e7;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}
.schedule-section .table-scroll-hint {
  display: none;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: #f1f8e7;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.schedule-section .table-scroll-hint svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  animation: swipeAnim 1.5s infinite ease-in-out;
}
.schedule-section .table-wrapper {
  width: 100%;
  overflow-x: auto;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 1px;
}
.schedule-section .table-wrapper::-webkit-scrollbar {
  height: 5px;
}
.schedule-section .table-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(70, 102, 78, 0.3);
  border-radius: 10px;
}
.schedule-section .schedule-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: center;
}
.schedule-section .schedule-table th,
.schedule-section .schedule-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(70, 102, 78, 0.15);
}
.schedule-section .schedule-table th {
  background-color: #f1f8e7;
  color: #1c4425;
  font-size: 1.1rem;
  font-weight: 600;
}
.schedule-section .schedule-table th:first-child {
  border-top-left-radius: 12px;
}
.schedule-section .schedule-table th:last-child {
  border-top-right-radius: 12px;
}
.schedule-section .schedule-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.schedule-section .schedule-table tbody tr:hover {
  background-color: rgba(241, 248, 231, 0.5);
}
.schedule-section .schedule-table tbody tr:last-child td {
  border-bottom: none;
}
.schedule-section .schedule-table td {
  color: #1c4425;
  font-size: 1.05rem;
  font-weight: 500;
}
.schedule-section .schedule-table .badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}
.schedule-section .schedule-table .badge.available {
  background: linear-gradient(135deg, #11d979 0%, #04974d 100%);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(17, 217, 121, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.schedule-section .schedule-table .badge.available:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 18px rgba(17, 217, 121, 0.5);
  filter: brightness(1.1);
}
.schedule-section .schedule-table .badge.available:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 5px rgba(17, 217, 121, 0.3);
  transition: all 0.1s ease;
}
.schedule-section .schedule-table .badge.warning {
  background: linear-gradient(135deg, rgb(255, 108.3, 25.5) 0%, #ff5c00 100%);
  color: #f9f9f9;
  border: 1px solid rgba(249, 249, 249, 0.2);
  animation: warningPulse 2s infinite;
}
.schedule-section .schedule-table .badge.warning:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 18px rgba(255, 92, 0, 0.5);
  filter: brightness(1.1);
}
.schedule-section .schedule-table .badge.optional {
  background-color: rgba(255, 92, 0, 0.15);
  color: #ff5c00;
  pointer-events: none;
}
.schedule-section .schedule-table .badge.reserved {
  background-color: #fce4e4;
  color: #d93025;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .schedule-section {
    padding: 100px 15px 50px;
  }
  .schedule-section h1 {
    font-size: 2rem;
  }
  .schedule-section .schedule-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .schedule-section .table-scroll-hint {
    display: flex;
  }
  .schedule-section .schedule-table th,
  .schedule-section .schedule-table td {
    padding: 1rem 0.5rem;
  }
}

.faq-section {
  background-color: #f1f8e7;
  padding: 80px 20px;
  font-family: system-ui, -apple-system, sans-serif;
}
.faq-section .faq-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.faq-section .faq-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1c4425;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}
.faq-section .faq-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #46664e;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.5;
}
.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-section .faq-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  border: 1px solid rgba(70, 102, 78, 0.1);
  box-shadow: 0 2px 8px rgba(28, 68, 37, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-item:hover {
  border-color: rgba(255, 92, 0, 0.3);
  box-shadow: 0 4px 12px rgba(28, 68, 37, 0.08);
  transform: translateY(-2px);
}
.faq-section .faq-item.active {
  border-color: #00b4d8;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.1);
}
.faq-section .faq-item.active .faq-question {
  color: #ff5c00;
}
.faq-section .faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
  color: #ff5c00;
}
.faq-section .faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.faq-section .faq-item.active .faq-answer-content {
  opacity: 1;
  padding: 0 24px 24px 24px;
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c4425;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-section .faq-question span {
  padding-right: 20px;
  line-height: 1.4;
}
.faq-section .faq-question .faq-icon {
  width: 24px;
  height: 24px;
  color: #46664e;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-section .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-in-out;
}
.faq-section .faq-answer-content {
  overflow: hidden;
  opacity: 0;
  padding: 0 24px 0 24px;
  transition: opacity 0.35s ease-in-out, padding 0.35s ease-in-out;
  color: #46664e;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-section .faq-answer-content p {
  margin: 0 0 12px 0;
}
.faq-section .faq-answer-content p:last-child {
  margin-bottom: 0;
}
.faq-section .faq-answer-content strong {
  color: #1c4425;
  font-weight: 600;
}
.faq-section .faq-answer-content ul {
  margin: 8px 0;
  padding-left: 20px;
}
.faq-section .faq-answer-content ul li {
  margin-bottom: 8px;
}
.faq-section .faq-answer-content ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }
  .faq-section .faq-item {
    border-radius: 8px;
  }
  .faq-section .faq-question {
    padding: 18px;
    font-size: 1rem;
  }
  .faq-section .faq-question .faq-icon {
    width: 20px;
    height: 20px;
  }
  .faq-section .faq-item.active .faq-answer-content {
    padding: 0 18px 18px 18px;
  }
}/*# sourceMappingURL=inter-company-sailing-cup.css.map */