/* Dive Sites Hero Section */
.dive-sites-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 180px;
}

.dive-sites-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dive-sites-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.dive-sites-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.55) 0%,
    rgba(85, 144, 181, 0.45) 100%
  );
  z-index: 2;
}

.dive-sites-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.dive-sites-hero__bubbles span {
  position: absolute;
  background: rgba(190, 233, 232, 0.3);
  border-radius: 50%;
  animation: bubbleUp 12s infinite linear;
  box-shadow: 0 0 10px rgba(190, 233, 232, 0.4);
}

.dive-sites-hero__bubbles span:nth-child(1) {
  left: 10%;
  bottom: -20px;
  animation-duration: 10s;
  animation-delay: 0s;
  width: 12px;
  height: 12px;
}

.dive-sites-hero__bubbles span:nth-child(2) {
  left: 30%;
  bottom: -30px;
  animation-duration: 14s;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
}

.dive-sites-hero__bubbles span:nth-child(3) {
  left: 50%;
  bottom: -25px;
  animation-duration: 12s;
  animation-delay: 4s;
  width: 10px;
  height: 10px;
}

.dive-sites-hero__bubbles span:nth-child(4) {
  left: 70%;
  bottom: -20px;
  animation-duration: 13s;
  animation-delay: 1s;
  width: 9px;
  height: 9px;
}

.dive-sites-hero__bubbles span:nth-child(5) {
  left: 85%;
  bottom: -30px;
  animation-duration: 11s;
  animation-delay: 3s;
  width: 11px;
  height: 11px;
}

.dive-sites-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease both;
}

.dive-sites-hero__title {
  font-size: 4.5rem;
  color: #bee9e8;
  margin: 0 0 25px 0;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease 0.2s both;
}

.dive-sites-hero__subtitle {
  font-size: 1.4rem;
  color: rgba(190, 233, 232, 0.95);
  margin: 0 0 40px 0;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
  font-weight: 400;
}

.dive-sites-hero__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Dive Sites Introduction Section */
.dive-sites-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #5590b5 0%, #1b4965 100%);
  position: relative;
  overflow: hidden;
}

.dive-sites-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 1;
}

.dive-sites-intro__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.dive-sites-intro__left {
  flex: 1;
  text-align: left;
}

.dive-sites-intro__right {
  flex: 1;
  text-align: right;
}

.dive-sites-intro__title {
  font-size: 3.5rem;
  color: #bee9e8;
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  position: relative;
  animation: slideInLeft 0.8s ease 0.2s both;
  letter-spacing: -0.02em;
}

.dive-sites-intro__title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #1ee9e8);
  border-radius: 2px;
  animation: expandLine 1s ease 0.8s both;
}

.dive-sites-intro__highlight {
  color: #bee9e8;
  line-height: 1.6;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  animation: slideInRight 0.8s ease 0.4s both;
  position: relative;
  padding-left: 30px;
}

.dive-sites-intro__highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, #0ea5e9, #1ee9e8);
  border-radius: 2px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

/* Responsive Design for Dive Sites Hero */
@media (max-width: 1024px) {
  .dive-sites-hero {
    margin-top: -80px;
    padding-top: 190px;
  }
}

@media (max-width: 1024px) {
  .dive-sites-hero {
    min-height: 55vh;
  }

  .dive-sites-hero__title {
    font-size: 3.5rem;
  }

  .dive-sites-hero__subtitle {
    font-size: 1.2rem;
  }

  .dive-sites-hero__features {
    gap: 25px;
  }

  .hero-feature {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .dive-sites-hero {
    min-height: 50vh;
    margin-top: -70px;
    padding-top: 170px;
  }

  .dive-sites-hero__content {
    padding: 30px 20px;
  }

  .dive-sites-hero__title {
    font-size: 2.8rem;
  }

  .dive-sites-hero__subtitle {
    font-size: 1.1rem;
  }

  .dive-sites-hero__features {
    gap: 20px;
    margin-top: 30px;
  }

  .hero-feature {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .hero-feature i {
    font-size: 0.9rem;
  }

  .dive-sites-intro {
    padding: 60px 0;
  }

  .dive-sites-intro__content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .dive-sites-intro__left,
  .dive-sites-intro__right {
    text-align: center;
  }

  .dive-sites-intro__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .dive-sites-intro__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .dive-sites-intro__highlight {
    font-size: 1.1rem;
    padding-left: 0;
    text-align: center;
  }

  .dive-sites-intro__highlight::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .dive-sites-hero {
    min-height: 45vh;
    margin-top: -70px;
    padding-top: 160px;
  }
  
  .dive-sites-hero__title {
    font-size: 2.2rem;
  }
  
  .dive-sites-hero__subtitle {
    font-size: 1rem;
  }
  
  .dive-sites-hero__features {
    gap: 15px;
  }

  .hero-feature {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .hero-feature i {
    font-size: 0.85rem;
  }
}

/* Dive Map Section */
.dive-map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.dive-map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f4f8ff;
  opacity: 0.3;
  z-index: 1;
}

.dive-map-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.dive-map-title {
  font-size: 2.5rem;
  color: #1b4965;
  margin-bottom: 50px;
  font-family: "Alan Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.dive-map-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #1b4965);
  border-radius: 2px;
  animation: expandLine 1s ease 0.8s both;
}

.dive-map-image {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(27, 73, 101, 0.15);
  animation: fadeInUp 0.8s ease 0.4s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dive-map-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.2);
}

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

/* Responsive Design for Dive Map */
@media (max-width: 768px) {
  .dive-map-section {
    padding: 60px 0;
  }

  .dive-map-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .dive-map-image {
    border-radius: 15px;
  }

  .dive-map-image img {
    border-radius: 15px;
  }
}

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

/* Add subtle pulse animation */
@keyframes cardPulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(27, 73, 101, 0.12);
  }
  50% {
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.18);
  }
}

/* Add ripple effect on hover */
@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Marine Life Highlights Section */
.marine-life-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

.marine-life-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: 1;
}

.marine-life-content {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.marine-life-title {
  font-size: 3.2rem;
  color: #1b4965;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -0.5px;
}

.marine-life-subtitle {
  text-align: center;
  color: #5590b5;
  font-size: 1.25rem;
  margin-bottom: 70px;
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.marine-life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.marine-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 73, 101, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid rgba(27, 73, 101, 0.08);
  animation: fadeInUp 0.8s ease both;
}

.marine-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1b4965, #5590b5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.marine-card:nth-child(1) {
  animation-delay: 0.1s;
}
.marine-card:nth-child(2) {
  animation-delay: 0.2s;
}
.marine-card:nth-child(3) {
  animation-delay: 0.3s;
}
.marine-card:nth-child(4) {
  animation-delay: 0.4s;
}
.marine-card:nth-child(5) {
  animation-delay: 0.5s;
}
.marine-card:nth-child(6) {
  animation-delay: 0.6s;
}

.marine-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(27, 73, 101, 0.25);
  border-color: rgba(27, 73, 101, 0.25);
}

.marine-card:hover::after {
  transform: scaleX(1);
}

.marine-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-bottom: 3px solid rgba(27, 73, 101, 0.08);
}

.marine-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.05) 0%,
    transparent 50%,
    rgba(85, 144, 181, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.marine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.95) contrast(1.05);
}

.marine-card:hover .marine-image img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

.marine-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(27, 73, 101, 0) 0%,
    rgba(27, 73, 101, 0.15) 100%
  );
  z-index: 2;
  transition: all 0.4s ease;
}

.marine-card:hover .marine-overlay {
  background: linear-gradient(
    180deg,
    rgba(27, 73, 101, 0) 0%,
    rgba(27, 73, 101, 0.3) 100%
  );
}

.marine-card-content {
  padding: 28px 25px 25px;
  text-align: center;
  position: relative;
}

.marine-card-season {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(27, 73, 101, 0.06);
  border-left: 3px solid #1b4965;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: #1b4965;
  font-weight: 600;
  transition: all 0.3s ease;
}

.marine-card-season i {
  color: #5590b5;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.marine-card:hover .marine-card-season {
  background: rgba(27, 73, 101, 0.1);
  border-left-color: #5590b5;
  transform: translateX(2px);
}

.marine-card:hover .marine-card-season i {
  transform: scale(1.1);
  color: #1b4965;
}

.marine-card-title {
  font-size: 1.5rem;
  color: #1b4965;
  margin: 0 0 16px 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.marine-card:hover .marine-card-title {
  color: #5590b5;
}

.marine-card-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.96rem;
}

/* Responsive Design for Marine Life Section */
@media (max-width: 1200px) {
  .marine-life-content {
    padding: 0 30px;
  }

  .marine-life-grid {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .marine-life-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .marine-life-section {
    padding: 70px 0;
  }

  .marine-life-content {
    padding: 0 20px;
  }

  .marine-life-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .marine-life-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .marine-life-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
  }

  .marine-card-content {
    padding: 20px;
  }

  .marine-image {
    height: 220px;
  }

  .marine-card-season {
    padding: 8px 12px;
    font-size: 0.8rem;
    margin-bottom: 14px;
    gap: 6px;
  }

  .marine-card-season i {
    font-size: 0.85rem;
  }

  .marine-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .marine-card-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Dive Site Details Section */
.dive-site-details-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1b4965 50%, #2c5f7c 100%);
  position: relative;
  overflow: hidden;
}

.dive-site-details-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(190, 233, 232, 0.1) 0%, transparent 50%);
  opacity: 1;
  z-index: 1;
}

.dive-site-details-wrapper {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dive-site-details-content {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.dive-sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding: 10px;
}

.dive-site-details-title {
  font-size: 3.2rem;
  color: #bee9e8;
  text-align: center;
  margin-bottom: 70px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.dive-site-details-title::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
  border-radius: 2px;
  animation: expandLine 1s ease 0.6s both;
}

.dive-site-details-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #0ea5e9);
  border-radius: 2px;
  animation: expandLine 1s ease 0.8s both;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.5);
}

.dive-site-details-subtitle {
  text-align: center;
  color: #bee9e8;
  font-size: 1.1rem;
  margin-top: -35px;
  margin-bottom: 30px;
  font-weight: 500;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.4s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Filter Buttons */
.dive-site-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 40px 0 50px 0;
  flex-wrap: nowrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid rgba(190, 233, 232, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #bee9e8;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.filter-btn span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  background: rgba(190, 233, 232, 0.2);
  border-color: rgba(190, 233, 232, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-color: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

.dive-site-detail-card.hidden {
  display: none;
  animation: fadeOut 0.3s ease;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

.dive-site-details-subtitle i {
  font-size: 1rem;
  color: #0ea5e9;
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.dive-site-detail-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease both;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

.dive-site-detail-card::before {
  display: none;
}

.dive-site-detail-card:nth-child(1) {
  animation-delay: 0.1s;
}
.dive-site-detail-card:nth-child(2) {
  animation-delay: 0.2s;
}
.dive-site-detail-card:nth-child(3) {
  animation-delay: 0.3s;
}
.dive-site-detail-card:nth-child(4) {
  animation-delay: 0.4s;
}
.dive-site-detail-card:nth-child(5) {
  animation-delay: 0.5s;
}
.dive-site-detail-card:nth-child(6) {
  animation-delay: 0.6s;
}
.dive-site-detail-card:nth-child(7) {
  animation-delay: 0.7s;
}
.dive-site-detail-card:nth-child(8) {
  animation-delay: 0.8s;
}
.dive-site-detail-card:nth-child(9) {
  animation-delay: 0.9s;
}
.dive-site-detail-card:nth-child(10) {
  animation-delay: 1s;
}
.dive-site-detail-card:nth-child(11) {
  animation-delay: 1.1s;
}
.dive-site-detail-card:nth-child(12) {
  animation-delay: 1.2s;
}
.dive-site-detail-card:nth-child(13) {
  animation-delay: 1.3s;
}
.dive-site-detail-card:nth-child(14) {
  animation-delay: 1.4s;
}
.dive-site-detail-card:nth-child(15) {
  animation-delay: 1.5s;
}
.dive-site-detail-card:nth-child(16) {
  animation-delay: 1.6s;
}
.dive-site-detail-card:nth-child(17) {
  animation-delay: 1.7s;
}
.dive-site-detail-card:nth-child(18) {
  animation-delay: 1.8s;
}

.dive-site-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}


.dive-site-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 40px;
  height: 40px;
  background: #0ea5e9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

.dive-site-detail-card:hover .dive-site-number {
  transform: scale(1.05);
  background: #0284c7;
}

.dive-site-difficulty-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.dive-site-difficulty-badge.beginner {
  background: #10b981;
  color: #fff;
}

.dive-site-difficulty-badge.intermediate {
  background: #0ea5e9;
  color: #fff;
}

.dive-site-difficulty-badge.advanced {
  background: #f59e0b;
  color: #fff;
}

.dive-site-detail-card:hover .dive-site-difficulty-badge {
  transform: scale(1.02);
}

.dive-site-detail-info {
  padding: 24px 20px 20px;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  background: #ffffff;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}

.dive-site-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-shrink: 0;
  gap: 14px;
}

.dive-site-detail-name {
  flex: 1;
  font-size: 1.55rem;
  color: #1b4965;
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: all 0.3s ease;
  letter-spacing: -0.2px;
}

.dive-site-detail-card:hover .dive-site-detail-name {
  color: #0ea5e9;
}

.dive-site-click-indicator {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #0ea5e9;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-shrink: 0;
}

.dive-site-click-indicator::before {
  display: none;
}

.dive-site-detail-card:hover .dive-site-click-indicator {
  transform: scale(1.05);
  background: #0284c7;
}

.dive-site-click-indicator i {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dive-site-detail-card:hover .dive-site-click-indicator i {
  transform: translateX(2px);
}


.dive-site-detail-description {
  color: #64748b;
  line-height: 1.6;
  margin: 12px 0 18px 0;
  font-size: 0.95rem;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.dive-site-detail-card:hover .dive-site-detail-description {
  color: #475569;
}

.dive-site-detail-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  margin-top: auto;
}

.dive-site-detail-spec {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.dive-site-detail-card:hover .dive-site-detail-spec {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.dive-site-detail-spec i {
  color: #0ea5e9;
  margin-right: 10px;
  width: 18px;
  text-align: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.dive-site-detail-card:hover .dive-site-detail-spec i {
  color: #0284c7;
}

/* Dive Site Attributes Section - Icon Only Design */
.dive-site-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.dive-site-attribute-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f8fafc;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  cursor: help;
  position: relative;
}

.dive-site-detail-card:hover .dive-site-attribute-item {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.dive-site-attribute-item i {
  color: #0ea5e9;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.dive-site-detail-card:hover .dive-site-attribute-item i {
  color: #0284c7;
  transform: scale(1.1);
}

/* Responsive Design for Dive Site Details */
@media (max-width: 1200px) {
  .dive-site-details-wrapper {
    max-width: 95%;
  }
  
  .dive-sites-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .dive-site-details-wrapper {
    max-width: 95%;
  }
  
  .dive-sites-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
}

@media (max-width: 768px) {
  .dive-site-details-section {
    padding: 70px 0;
  }
  
  .dive-site-details-wrapper {
    max-width: 95%;
  }

  .dive-site-details-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .dive-site-details-subtitle {
    font-size: 0.95rem;
    margin-top: -25px;
    margin-bottom: 20px;
    padding: 0 10px 10px 10px;
  }

  .dive-site-details-subtitle i {
    font-size: 0.9rem;
  }
  
  .dive-site-filters {
    gap: 6px;
    margin: 30px 0 40px 0;
    flex-wrap: nowrap;
  }
  
  .filter-btn {
    padding: 10px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }
  
  .filter-btn span {
    font-size: 0.75rem;
  }

  .dive-sites-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .dive-site-detail-info {
    padding: 20px 18px 18px;
    padding-top: 80px;
    min-height: auto;
  }

  .dive-site-detail-name {
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .dive-site-click-indicator {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .dive-site-detail-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    margin: 10px 0 15px 0;
    line-height: 1.5;
  }

  .dive-site-detail-specs {
    gap: 10px;
    margin-top: 10px;
  }

  .dive-site-detail-spec {
    font-size: 0.87rem;
    padding: 10px 14px;
  }

  .dive-site-detail-spec i {
    width: 18px;
    font-size: 1.05rem;
    margin-right: 10px;
  }

  .dive-site-attributes {
    gap: 8px;
    margin-top: 8px;
    justify-content: flex-start;
  }

  .dive-site-attribute-item {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .dive-site-attribute-item i {
    font-size: 1rem;
  }

  .dive-site-number {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    top: 18px;
    left: 16px;
  }
  
  .dive-site-difficulty-badge {
    top: 18px;
    right: 16px;
    padding: 7px 14px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .dive-site-details-wrapper {
    max-width: 98%;
  }
  
  .dive-site-details-content {
    padding: 0 15px;
  }

  .dive-site-details-subtitle {
    padding-bottom: 12px;
  }
  
  .dive-site-filters {
    gap: 4px;
    margin: 25px 0 35px 0;
    flex-wrap: nowrap;
  }
  
  .filter-btn {
    padding: 8px 6px;
    font-size: 0.65rem;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }
  
  .filter-btn span {
    font-size: 0.65rem;
  }
  
  .dive-site-detail-info {
    padding: 18px;
    padding-top: 70px;
  }
  
  .dive-site-detail-name {
    font-size: 1.2rem;
  }
  
  .dive-site-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .dive-site-attributes {
    gap: 6px;
    margin-top: 8px;
  }

  .dive-site-attribute-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .dive-site-attribute-item i {
    font-size: 0.95rem;
  }
}

/* Dive Site Modal Styles */
.dive-site-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.dive-site-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.dive-site-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #1b4965;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #1b4965;
  color: white;
  transform: scale(1.1);
}

.modal-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modal-image-container:hover img {
  transform: scale(1.05);
}

.modal-info {
  padding: 30px;
}

.modal-info h3 {
  font-size: 2rem;
  color: #1b4965;
  margin: 0 0 15px 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

.modal-difficulty {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.modal-difficulty.beginner {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.modal-difficulty.intermediate {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
}

.modal-difficulty.advanced {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

.modal-info p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-spec {
  display: flex;
  align-items: center;
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
}

.modal-spec i {
  color: #0ea5e9;
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95vw;
    max-height: 95vh;
  }

  .modal-image-container {
    height: 200px;
  }

  .modal-info {
    padding: 20px;
  }

  .modal-info h3 {
    font-size: 1.5rem;
  }

  .modal-info p {
    font-size: 1rem;
  }

  .modal-spec {
    font-size: 0.9rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(27, 73, 101, 0.03) 0%,
    transparent 50%
  );
  z-index: 1;
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.faq-title {
  font-size: 3.2rem;
  color: #1b4965;
  margin-bottom: 15px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #1b4965);
  border-radius: 2px;
  animation: expandLine 1s ease 0.8s both;
}

.faq-subtitle {
  color: #5590b5;
  font-size: 1.2rem;
  margin-top: 25px;
  font-weight: 500;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
  border: 2px solid transparent;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.15s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.25s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.faq-item.active {
  border-color: #0ea5e9;
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.2);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.03) 0%,
    rgba(27, 73, 101, 0.03) 100%
  );
}

.faq-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, #1b4965, #5590b5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.3);
}

.faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(27, 73, 101, 0.4);
}

.faq-item.active .faq-icon {
  transform: scale(1.15) rotate(360deg);
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.faq-question-text {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1b4965;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question-text {
  color: #0ea5e9;
}

.faq-arrow {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover .faq-arrow {
  background: rgba(14, 165, 233, 0.15);
  transform: scale(1.1);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  background: rgba(14, 165, 233, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 93px;
  opacity: 1;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

/* FAQ CTA */
.faq-cta {
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.faq-cta-content {
  background: linear-gradient(135deg, #1b4965 0%, #5590b5 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(27, 73, 101, 0.3);
}

.faq-cta-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.faq-cta-content h3 {
  font-size: 2rem;
  color: #bee9e8;
  margin: 0 0 15px 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.faq-cta-content p {
  color: rgba(190, 233, 232, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #1b4965;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.faq-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 165, 233, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.faq-contact-btn:hover::before {
  left: 100%;
}

.faq-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: #0ea5e9;
  color: white;
}

.faq-contact-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-contact-btn:hover i {
  transform: scale(1.2) rotate(15deg);
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }

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

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    margin-top: 15px;
  }

  .faq-question {
    padding: 20px;
    gap: 12px;
  }

  .faq-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 0.95rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.8rem;
  }

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

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

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .faq-cta {
    margin-top: 40px;
  }

  .faq-cta-content {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .faq-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .faq-cta-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .faq-contact-btn {
    padding: 12px 28px;
    font-size: 1rem;
    gap: 10px;
  }

  .faq-contact-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 15px;
    gap: 10px;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 0.9rem;
  }

  .faq-question-text {
    font-size: 0.95rem;
  }

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

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Dive Sites Page Layout */
.dive-sites-main {
  margin: 0;
  padding: 0;
}

/* Packages Page Styles */
.packages-main {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

/* Packages Hero Section */
.packages-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 180px;
}

.packages-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.packages-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.packages-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.55) 0%,
    rgba(85, 144, 181, 0.45) 100%
  );
  z-index: 2;
}

.packages-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.packages-hero__bubbles span {
  position: absolute;
  background: rgba(190, 233, 232, 0.3);
  border-radius: 50%;
  animation: bubbleUp 12s infinite linear;
  box-shadow: 0 0 10px rgba(190, 233, 232, 0.4);
}

.packages-hero__bubbles span:nth-child(1) {
  left: 10%;
  bottom: -20px;
  animation-duration: 10s;
  animation-delay: 0s;
  width: 12px;
  height: 12px;
}

.packages-hero__bubbles span:nth-child(2) {
  left: 30%;
  bottom: -30px;
  animation-duration: 14s;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
}

.packages-hero__bubbles span:nth-child(3) {
  left: 50%;
  bottom: -25px;
  animation-duration: 12s;
  animation-delay: 4s;
  width: 10px;
  height: 10px;
}

.packages-hero__bubbles span:nth-child(4) {
  left: 70%;
  bottom: -20px;
  animation-duration: 13s;
  animation-delay: 1s;
  width: 9px;
  height: 9px;
}

.packages-hero__bubbles span:nth-child(5) {
  left: 85%;
  bottom: -30px;
  animation-duration: 11s;
  animation-delay: 3s;
  width: 11px;
  height: 11px;
}

@keyframes bubbleUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50vh) translateX(20px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) translateX(-20px);
    opacity: 0;
  }
}

.packages-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease both;
}

.packages-hero__title {
  font-size: 4.5rem;
  color: #bee9e8;
  margin: 0 0 25px 0;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease 0.2s both;
}

.packages-hero__subtitle {
  font-size: 1.4rem;
  color: rgba(190, 233, 232, 0.95);
  margin: 0 0 40px 0;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
  font-weight: 400;
}

.packages-hero__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bee9e8;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hero-feature i {
  font-size: 1.3rem;
  color: #0ea5e9;
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design for Packages Hero */
@media (max-width: 1024px) {
  .packages-hero {
    min-height: 55vh;
    margin-top: -80px;
    padding-top: 170px;
  }

  .packages-hero__title {
    font-size: 3.5rem;
  }

  .packages-hero__subtitle {
    font-size: 1.2rem;
  }

  .packages-hero__features {
    gap: 25px;
  }

  .hero-feature {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .packages-hero {
    min-height: 75vh;
    margin-top: -70px;
    padding-top: 160px;
  }

  .packages-hero__content {
    padding: 30px 20px;
  }

  .packages-hero__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .packages-hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .packages-hero__features {
    flex-direction: column;
    gap: 15px;
  }

  .hero-feature {
    font-size: 0.95rem;
    padding: 8px 18px;
  }

  .hero-feature i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .packages-hero {
    min-height: 70vh;
    margin-top: -70px;
    padding-top: 150px;
  }

  .packages-hero__title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .packages-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-feature {
    font-size: 0.9rem;
    padding: 7px 15px;
  }

  .hero-feature i {
    font-size: 1rem;
  }
}

/* Packages Banner Section */
.packages-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.packages-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(27, 73, 101, 0.03) 0%,
    transparent 50%
  );
  z-index: 1;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-text {
  padding-right: 40px;
}

.banner-title {
  font-size: 3.2rem;
  color: #1b4965;
  margin: 0 0 25px 0;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.banner-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #1b4965);
  border-radius: 2px;
  animation: expandLine 1s ease 0.8s both;
}

.banner-description {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.banner-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.banner-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(27, 73, 101, 0.1);
  border-radius: 12px;
  border-left: 4px solid #1b4965;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.banner-feature:hover {
  transform: translateX(8px);
  background: rgba(27, 73, 101, 0.15);
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.2);
}

.banner-feature i {
  font-size: 1.3rem;
  color: #1b4965;
  width: 24px;
  text-align: center;
}

.banner-feature span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1b4965;
}

.banner-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.banner-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(27, 73, 101, 0.15);
  transition: transform 0.4s ease;
}

.banner-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.2);
}

.banner-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.banner-image:hover img {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px 25px;
}

.banner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 15px 20px;
  background: rgba(27, 73, 101, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(27, 73, 101, 0.5);
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #bee9e8;
  font-family: "Alan Sans", sans-serif;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(190, 233, 232, 0.9);
  font-weight: 500;
}

/* Responsive Design for Banner */
@media (max-width: 1024px) {
  .packages-banner {
    padding: 80px 0;
  }

  .banner-content {
    gap: 60px;
  }

  .banner-title {
    font-size: 2.8rem;
  }

  .banner-description {
    font-size: 1.1rem;
  }

  .banner-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .packages-banner {
    padding: 60px 0;
  }

  .banner-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .banner-text {
    padding-right: 0;
  }

  .banner-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .banner-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .banner-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .banner-features {
    gap: 15px;
  }

  .banner-feature {
    padding: 12px 18px;
    justify-content: center;
  }

  .banner-feature:hover {
    transform: translateY(-3px);
  }

  .banner-feature span {
    font-size: 1rem;
  }

  .banner-image img {
    height: 280px;
  }

  .banner-stats {
    gap: 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .packages-banner {
    padding: 50px 0;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .banner-feature {
    padding: 10px 15px;
    gap: 12px;
  }

  .banner-feature i {
    font-size: 1.1rem;
  }

  .banner-feature span {
    font-size: 0.9rem;
  }

  .banner-image img {
    height: 220px;
  }

  .banner-overlay {
    padding: 20px 15px 15px;
  }

  .banner-stats {
    gap: 10px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* Dive Packages Section */
.dive-packages {
  padding: 90px 0 100px;
  background: #f8fbfc;
  position: relative;
  overflow: hidden;
}

.dive-packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(94, 190, 196, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(27, 73, 101, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.dive-packages .container {
  max-width: 95% !important;
  padding: 0 20px;
}

.dive-packages .section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.dive-packages .section-title {
  font-size: 2.5rem;
  color: #1b4965;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.dive-packages .section-subtitle {
  font-size: 1.05rem;
  color: #62929e;
  font-weight: 400;
  line-height: 1.6;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Package Card Styles */
.package-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 73, 101, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(94, 190, 196, 0.15);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(27, 73, 101, 0.15);
  border-color: #5ebec4;
}

.package-card--featured {
  border: 2px solid #5ebec4;
  box-shadow: 0 6px 30px rgba(94, 190, 196, 0.15);
}

.package-card__image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.package-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-card__image img {
  transform: scale(1.05);
}

.package-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1b4965;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.package-card__badge--featured {
  background: #5ebec4;
}

.package-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-card__title {
  font-size: 1.75rem;
  color: #1b4965;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.package-card__duration {
  font-size: 0.9rem;
  color: #5ebec4;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.package-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: #f8fbfc;
  border-radius: 8px;
  border-left: 4px solid #5ebec4;
}

.pricing-amount {
  font-size: 2.4rem;
  color: #1b4965;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

.pricing-period {
  font-size: 0.9rem;
  color: #5ebec4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card__description {
  font-size: 0.9rem;
  color: #62929e;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.package-card__features {
  margin-bottom: 25px;
  flex-grow: 1;
}

.package-card__features h4 {
  font-size: 0.95rem;
  color: #1b4965;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.package-card__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #62929e;
  line-height: 1.5;
  font-weight: 400;
}

.package-card__features li i {
  color: #5ebec4;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.package-card__cta {
  margin-top: auto;
  padding-top: 20px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5ebec4;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.cta-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #5ebec4;
  transition: width 0.3s ease;
}

.cta-link:hover {
  color: #1b4965;
  transform: translateX(5px);
}

.cta-link:hover::after {
  width: 100%;
}

.cta-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.cta-link:hover i {
  transform: translateX(3px);
}

.package-card--featured .cta-link {
  color: #1b4965;
}

.package-card--featured .cta-link:hover {
  color: #5ebec4;
}

/* Responsive Design for Dive Packages */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 95%;
  }
}

@media (max-width: 1024px) {
  .dive-packages {
    padding: 70px 0 80px;
  }

  .dive-packages .section-title {
    font-size: 2.2rem;
  }

  .dive-packages .section-subtitle {
    font-size: 1rem;
  }

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

  .package-card__image {
    height: 220px;
  }

  .package-card__content {
    padding: 25px;
  }

  .package-card__title {
    font-size: 1.6rem;
  }

  .package-card__duration {
    font-size: 0.85rem;
  }

  .pricing-amount {
    font-size: 2.2rem;
  }

  .cta-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .dive-packages {
    padding: 60px 0 70px;
  }

  .dive-packages .section-header {
    margin-bottom: 40px;
  }

  .dive-packages .section-title {
    font-size: 2rem;
  }

  .dive-packages .section-subtitle {
    font-size: 0.95rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .package-card__image {
    height: 200px;
  }

  .package-card__content {
    padding: 25px;
  }

  .package-card__title {
    font-size: 1.5rem;
  }

  .package-card__duration {
    font-size: 0.85rem;
  }

  .package-card__pricing {
    padding: 16px;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .package-card__features li {
    font-size: 0.8rem;
  }

  .cta-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .dive-packages {
    padding: 50px 0 60px;
  }

  .dive-packages .section-title {
    font-size: 1.8rem;
  }

  .dive-packages .section-subtitle {
    font-size: 0.9rem;
  }

  .packages-grid {
    gap: 20px;
  }

  .package-card__image {
    height: 180px;
  }

  .package-card__content {
    padding: 20px;
  }

  .package-card__title {
    font-size: 1.4rem;
  }

  .package-card__duration {
    font-size: 0.8rem;
  }

  .package-card__pricing {
    padding: 14px;
  }

  .pricing-label {
    font-size: 0.75rem;
  }

  .pricing-amount {
    font-size: 1.8rem;
  }

  .package-card__description {
    font-size: 0.85rem;
  }

  .package-card__features h4 {
    font-size: 0.9rem;
  }

  .package-card__features li {
    font-size: 0.8rem;
    gap: 8px;
  }

  .package-card__features li i {
    font-size: 0.65rem;
  }

  .cta-link {
    font-size: 0.75rem;
  }

  .package-card__badge {
    padding: 5px 14px;
    font-size: 0.7rem;
  }
}

/* Packages CTA Banner Section */
.packages-cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1b4965 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.packages-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(94, 190, 196, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(94, 190, 196, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.packages-cta-banner .container {
  max-width: 90% !important;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.cta-banner-text {
  flex: 1;
  max-width: 600px;
}

.cta-banner-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-banner-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.cta-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-banner-button--primary {
  background: #5ebec4;
  color: #fff;
}

.cta-banner-button--primary:hover {
  background: #4aa9af;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(94, 190, 196, 0.4);
}

.cta-banner-button--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #5ebec4;
}

.cta-banner-button--secondary:hover {
  background: #5ebec4;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(94, 190, 196, 0.4);
}

.cta-banner-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.cta-banner-button:hover i {
  transform: translateX(3px);
}

/* Responsive Design for CTA Banner */
@media (max-width: 768px) {
  .packages-cta-banner {
    padding: 60px 0;
  }

  .cta-banner-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .cta-banner-text {
    max-width: 100%;
  }

  .cta-banner-title {
    font-size: 2rem;
  }

  .cta-banner-description {
    font-size: 1rem;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .packages-cta-banner {
    padding: 50px 0;
  }

  .cta-banner-title {
    font-size: 1.8rem;
  }

  .cta-banner-description {
    font-size: 0.95rem;
  }

  .cta-banner-button {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

/* Customize Your Package Section */
.customize-package-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.customize-package-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(94, 190, 196, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(27, 73, 101, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.customize-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Customizer Card */
.customizer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(27, 73, 101, 0.1);
  border: 1px solid rgba(94, 190, 196, 0.2);
  transition: all 0.3s ease;
}

.customizer-card:hover {
  box-shadow: 0 12px 40px rgba(27, 73, 101, 0.15);
  transform: translateY(-3px);
}

.customizer-options {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Option Group */
.option-group {
  position: relative;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.option-header i {
  font-size: 1.3rem;
  color: #5ebec4;
  width: 30px;
  text-align: center;
}

.option-header label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1b4965;
  letter-spacing: 0.3px;
}

/* Control Buttons */
.option-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 2px solid #5ebec4;
  background: transparent;
  color: #5ebec4;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.control-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #5ebec4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.control-btn:hover::before {
  width: 100px;
  height: 100px;
}

.control-btn:hover {
  background: #5ebec4;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(94, 190, 196, 0.3);
}

.control-btn i {
  position: relative;
  z-index: 1;
}

.control-btn:active {
  transform: scale(0.95);
}

.control-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 120px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
  border-radius: 15px;
  border: 2px solid rgba(94, 190, 196, 0.2);
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.05);
}

.count-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b4965;
  line-height: 1;
  font-family: "Quicksand", sans-serif;
}

.count-label {
  font-size: 0.9rem;
  color: #5ebec4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Range Slider */
.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(
    to right,
    #5ebec4 0%,
    #5ebec4 25%,
    #e2e8f0 25%,
    #e2e8f0 100%
  );
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #5ebec4;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(94, 190, 196, 0.4);
  transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(94, 190, 196, 0.6);
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #5ebec4;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(94, 190, 196, 0.4);
  transition: all 0.3s ease;
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(94, 190, 196, 0.6);
}

/* Add-ons Grid */
.addons-group {
  padding-top: 20px;
  border-top: 2px solid rgba(94, 190, 196, 0.15);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.addon-item {
  position: relative;
}

.addon-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.addon-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fbfc;
  border: 2px solid rgba(94, 190, 196, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.addon-item label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(94, 190, 196, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.addon-item input[type="checkbox"]:checked + label::before {
  left: 100%;
}

.addon-item input[type="checkbox"]:checked + label {
  background: linear-gradient(135deg, #5ebec4 0%, #4aa9af 100%);
  border-color: #5ebec4;
  box-shadow: 0 4px 15px rgba(94, 190, 196, 0.3);
  transform: translateY(-2px);
}

.addon-item input[type="checkbox"]:checked + label .addon-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.addon-item input[type="checkbox"]:checked + label .addon-name,
.addon-item input[type="checkbox"]:checked + label .addon-price {
  color: white;
}

.addon-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(94, 190, 196, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5ebec4;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.addon-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.addon-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1b4965;
  transition: color 0.3s ease;
}

.addon-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5ebec4;
  transition: color 0.3s ease;
}

/* Price Summary Card */
.price-summary-card {
  background: linear-gradient(135deg, #1b4965 0%, #2c5f7c 100%);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 12px 40px rgba(27, 73, 101, 0.25);
  position: sticky;
  top: 100px;
  border: 2px solid rgba(94, 190, 196, 0.2);
}

.summary-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(190, 233, 232, 0.2);
}

.summary-header h3 {
  font-size: 1.8rem;
  color: #bee9e8;
  margin: 0 0 8px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}

.summary-header p {
  font-size: 0.95rem;
  color: rgba(190, 233, 232, 0.8);
  margin: 0;
  font-weight: 500;
}

.summary-breakdown {
  margin-bottom: 30px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(190, 233, 232, 0.1);
  transition: all 0.3s ease;
}

.breakdown-item:hover {
  padding-left: 5px;
  background: rgba(255, 255, 255, 0.03);
}

.breakdown-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(190, 233, 232, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.breakdown-label i {
  color: #5ebec4;
  font-size: 1rem;
}

.breakdown-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #bee9e8;
  font-family: "Quicksand", sans-serif;
}

.breakdown-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #5ebec4, transparent);
  margin: 20px 0;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(94, 190, 196, 0.15);
  border-radius: 12px;
  margin-top: 15px;
}

.total-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #bee9e8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #bee9e8;
  font-family: "Quicksand", sans-serif;
  text-shadow: 0 2px 10px rgba(94, 190, 196, 0.3);
}

.summary-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border-left: 3px solid #5ebec4;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

.feature-badge i {
  color: #5ebec4;
  font-size: 0.9rem;
}

.feature-badge span {
  color: rgba(190, 233, 232, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.request-quote-btn {
  width: 100%;
  padding: 18px 30px;
  background: #5ebec4;
  color: #1b4965;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(94, 190, 196, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.request-quote-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.request-quote-btn:hover::before {
  width: 300px;
  height: 300px;
}

.request-quote-btn:hover {
  background: #4aa9af;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(94, 190, 196, 0.5);
}

.request-quote-btn:active {
  transform: translateY(-1px);
}

.request-quote-btn span,
.request-quote-btn i {
  position: relative;
  z-index: 1;
}

.request-quote-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.request-quote-btn:hover i {
  transform: translateX(5px);
}

.summary-note {
  margin-top: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(190, 233, 232, 0.7);
  line-height: 1.5;
}

.summary-note i {
  color: #5ebec4;
  font-size: 0.9rem;
  min-width: 16px;
}

/* Responsive Design for Customize Package */
@media (max-width: 1024px) {
  .customize-package-section {
    padding: 80px 0;
  }

  .customize-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .price-summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .customize-package-section {
    padding: 60px 0;
  }

  .customizer-card {
    padding: 25px;
  }

  .option-control {
    gap: 20px;
  }

  .control-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .control-display {
    min-width: 100px;
    padding: 12px 20px;
  }

  .count-value {
    font-size: 2rem;
  }

  .count-label {
    font-size: 0.8rem;
  }

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

  .addon-item label {
    padding: 14px;
  }

  .addon-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .addon-name {
    font-size: 0.9rem;
  }

  .addon-price {
    font-size: 0.8rem;
  }

  .price-summary-card {
    padding: 25px;
  }

  .summary-header h3 {
    font-size: 1.5rem;
  }

  .breakdown-value {
    font-size: 1rem;
  }

  .total-value {
    font-size: 1.8rem;
  }

  .request-quote-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .customize-package-section {
    padding: 50px 0;
  }

  .customizer-card {
    padding: 20px;
  }

  .option-header label {
    font-size: 1rem;
  }

  .option-control {
    gap: 15px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .control-display {
    min-width: 90px;
    padding: 10px 15px;
  }

  .count-value {
    font-size: 1.8rem;
  }

  .count-label {
    font-size: 0.75rem;
  }

  .addon-item label {
    padding: 12px;
    gap: 10px;
  }

  .addon-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 0.9rem;
  }

  .addon-name {
    font-size: 0.85rem;
  }

  .addon-price {
    font-size: 0.75rem;
  }

  .price-summary-card {
    padding: 20px;
  }

  .summary-header h3 {
    font-size: 1.3rem;
  }

  .summary-header p {
    font-size: 0.85rem;
  }

  .breakdown-label {
    font-size: 0.85rem;
  }

  .breakdown-value {
    font-size: 0.95rem;
  }

  .total-label {
    font-size: 0.95rem;
  }

  .total-value {
    font-size: 1.6rem;
  }

  .feature-badge {
    padding: 8px 12px;
  }

  .feature-badge span {
    font-size: 0.8rem;
  }

  .request-quote-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }

  .summary-note {
    font-size: 0.8rem;
  }
}

/* Daily Itinerary Section */
.daily-itinerary-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.daily-itinerary-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(94, 190, 196, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(27, 73, 101, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.daily-itinerary-section .section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.daily-itinerary-section .section-title {
  font-size: 3rem;
  color: #1b4965;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: "Quicksand", sans-serif;
}

.daily-itinerary-section .section-subtitle {
  font-size: 1.15rem;
  color: #62929e;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Timeline Styles */
.itinerary-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #5ebec4 0%, #1b4965 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(94, 190, 196, 0.3);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, #5ebec4 0%, #4aa9af 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(94, 190, 196, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  border: 5px solid #f8fafc;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 35px rgba(94, 190, 196, 0.6);
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(27, 73, 101, 0.1);
  border: 2px solid rgba(94, 190, 196, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #5ebec4, #1b4965);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-content::before {
  transform: scaleX(1);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(27, 73, 101, 0.15);
  border-color: #5ebec4;
}

.timeline-time {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #5ebec4, #4aa9af);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(94, 190, 196, 0.3);
  letter-spacing: 0.5px;
}

.timeline-title {
  font-size: 1.5rem;
  color: #1b4965;
  margin: 0 0 15px 0;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  letter-spacing: -0.3px;
}

.timeline-description {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.timeline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(94, 190, 196, 0.1);
  color: #1b4965;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(94, 190, 196, 0.2);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(94, 190, 196, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 190, 196, 0.2);
}

.feature-tag i {
  color: #5ebec4;
  font-size: 0.9rem;
}

/* Island Vibes Section */
.island-vibes {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.vibes-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1b4965;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}

.vibes-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 50px;
  font-weight: 400;
}

.vibes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.vibe-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.12);
  transition: all 0.4s ease;
  cursor: pointer;
}

.vibe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(27, 73, 101, 0.25);
}

.vibe-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.vibe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vibe-card:hover .vibe-image img {
  transform: scale(1.15);
}

.vibe-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
  background: linear-gradient(
    to top,
    rgba(27, 73, 101, 0.95) 0%,
    rgba(27, 73, 101, 0.7) 50%,
    transparent 100%
  );
  transform: translateY(0);
  transition: all 0.4s ease;
}

.vibe-card:hover .vibe-overlay {
  background: linear-gradient(
    to top,
    rgba(27, 73, 101, 0.98) 0%,
    rgba(27, 73, 101, 0.85) 60%,
    transparent 100%
  );
}

.vibe-title {
  color: white;
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.vibe-card:hover .vibe-title {
  transform: translateY(-5px);
}

/* Responsive Design for Daily Itinerary */
@media (max-width: 1024px) {
  .daily-itinerary-section {
    padding: 80px 0;
  }

  .daily-itinerary-section .section-title {
    font-size: 2.5rem;
  }

  .daily-itinerary-section .section-subtitle {
    font-size: 1.05rem;
  }

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

  .vibes-title {
    font-size: 2.2rem;
  }

  .vibes-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .daily-itinerary-section {
    padding: 60px 0;
  }

  .daily-itinerary-section .section-header {
    margin-bottom: 50px;
  }

  .daily-itinerary-section .section-title {
    font-size: 2rem;
  }

  .daily-itinerary-section .section-subtitle {
    font-size: 1rem;
  }

  .itinerary-timeline {
    padding: 0 10px;
    margin-bottom: 60px;
  }

  .itinerary-timeline::before {
    left: 35px;
  }

  .timeline-item {
    flex-direction: row !important;
    gap: 20px;
    margin-bottom: 40px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 1.5rem;
  }

  .timeline-content {
    padding: 25px;
  }

  .timeline-time {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .timeline-title {
    font-size: 1.3rem;
  }

  .timeline-description {
    font-size: 0.9rem;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .vibes-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .vibes-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

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

  .vibe-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .daily-itinerary-section {
    padding: 50px 0;
  }

  .daily-itinerary-section .section-title {
    font-size: 1.8rem;
  }

  .daily-itinerary-section .section-subtitle {
    font-size: 0.95rem;
  }

  .itinerary-timeline::before {
    left: 30px;
  }

  .timeline-item {
    gap: 15px;
    margin-bottom: 35px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.3rem;
    border: 3px solid #f8fafc;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-time {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .timeline-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .timeline-description {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .timeline-features {
    gap: 8px;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 5px 8px;
    gap: 6px;
  }

  .feature-tag i {
    font-size: 0.8rem;
  }

  .vibes-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .vibes-subtitle {
    font-size: 0.9rem;
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .vibes-grid {
    gap: 15px;
  }

  .vibe-image {
    height: 320px;
  }

  .vibe-overlay {
    padding: 20px 15px;
  }

  .vibe-title {
    font-size: 1.15rem;
  }
}

/* Courses Banner Section */
.courses-banner-section {
  padding: 60px 0;
  background: #f8fafc;
}

.courses-banner-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

.banner-main h2 {
  font-size: 2.5rem;
  color: #1b4965;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  line-height: 1.3;
}

.banner-main p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
}

.courses-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.courses-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid #5ebec4;
}

.courses-features .feature-item:hover {
  border-left-color: #1b4965;
}

.courses-features .feature-item i {
  color: #5ebec4;
  font-size: 1.2rem;
}

.courses-features .feature-item span {
  color: #1b4965;
  font-size: 1rem;
  font-weight: 500;
}

.banner-stats-reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-box-creative {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stats-box-creative:hover {
  border-color: #5ebec4;
}

.stats-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #5ebec4;
  transition: all 0.3s ease;
}

.mini-stat:hover {
  border-left-color: #1b4965;
}

.mini-stat i {
  font-size: 1.4rem;
  color: #5ebec4;
  min-width: 24px;
  text-align: center;
}

.mini-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1b4965;
  font-family: "Quicksand", sans-serif;
  line-height: 1;
}

.mini-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-slider-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.review-slider-box:hover {
  border-color: #5ebec4;
}

.review-slider-container {
  position: relative;
  min-height: 180px;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.5s ease;
}

.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.review-author {
  color: #5ebec4;
  font-size: 0.9rem;
  font-weight: 600;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/* Banner photo card to fill space */
.banner-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(27, 73, 101, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-top: 20px;
}

.banner-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 73, 101, 0.18);
}

.banner-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 73, 101, 0) 0%,
    rgba(27, 73, 101, 0.2) 100%
  );
  pointer-events: none;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot:hover {
  background: #cbd5e1;
}

.review-dot.active {
  background: #5ebec4;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .courses-banner-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .banner-main h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .courses-banner-section {
    padding: 60px 0;
  }

  .banner-main h2 {
    font-size: 2.2rem;
  }

  .banner-main p {
    font-size: 1rem;
  }

  .stats-box-creative {
    padding: 25px 20px;
  }

  .mini-stat {
    padding: 15px 18px;
    gap: 12px;
  }

  .mini-stat i {
    font-size: 1.4rem;
  }

  .mini-num {
    font-size: 1.7rem;
  }

  .mini-label {
    font-size: 0.8rem;
  }

  .review-slider-box {
    padding: 25px;
  }

  .review-slider-container {
    min-height: 160px;
  }

  .review-slider-box {
    min-height: 240px;
  }

  .banner-photo-card {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .banner-main h2 {
    font-size: 1.8rem;
  }

  .banner-main p {
    font-size: 0.95rem;
  }

  .courses-features .feature-item {
    padding: 12px;
  }

  .courses-features .feature-item span {
    font-size: 1rem;
  }

  .stats-box-creative {
    padding: 20px 15px;
  }

  .mini-stat {
    padding: 14px 16px;
    gap: 10px;
  }

  .mini-stat i {
    font-size: 1.3rem;
  }

  .mini-num {
    font-size: 1.6rem;
  }

  .mini-label {
    font-size: 0.75rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-slider-container {
    min-height: 150px;
  }

  .review-slider-box {
    min-height: 220px;
  }
}

/* Courses Grid Section */
.courses-grid-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%);
  position: relative;
}

.courses-grid-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(94, 190, 196, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(27, 73, 101, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.courses-grid-section .container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.courses-section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease both;
}

.courses-section-header h2 {
  font-size: 3rem;
  color: #1b4965;
  margin: 0 0 15px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  position: relative;
  display: inline-block;
}

.courses-section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #5ebec4, #1b4965, #5ebec4);
  border-radius: 2px;
}

.course-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.filter-btn {
  padding: 12px 24px;
  background: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(27, 73, 101, 0.05);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(94, 190, 196, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  border-color: #1b4965;
  color: #1b4965;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, #1b4965 0%, #2c5f7c 100%);
  color: white;
  border-color: #1b4965;
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.3);
  transform: scale(1.05);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Course Card Styles */
.course-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #e2e8f0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.06);
}

/* Card filter transition states */
.course-card.card-hidden {
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card.card-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5ebec4, #1b4965);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-card.card-visible:hover {
  transform: translateY(-8px) scale(1);
  box-shadow: 0 12px 30px rgba(27, 73, 101, 0.15);
  border-color: #5ebec4;
}

.course-card.featured {
  border: 2px solid #5ebec4;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 6px 20px rgba(94, 190, 196, 0.15);
}

.course-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #5ebec4, #4aa9af);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(94, 190, 196, 0.3);
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.course-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.course-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #5ebec4, #4aa9af);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(94, 190, 196, 0.25);
}

.course-card.card-visible:hover .course-icon {
  background: linear-gradient(135deg, #1b4965, #2c5f7c);
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(27, 73, 101, 0.4);
}

.course-level {
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #1b4965;
  box-shadow: 0 2px 6px rgba(27, 73, 101, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card.card-visible:hover .course-level {
  background: linear-gradient(135deg, #1b4965, #2c5f7c);
  color: white;
  box-shadow: 0 3px 8px rgba(27, 73, 101, 0.2);
}

.course-level.beginner,
.course-level.intermediate,
.course-level.advanced,
.course-level.professional,
.course-level.specialty-badge {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #1b4965;
}

.course-title {
  font-size: 1.25rem;
  color: #1b4965;
  margin: 0 0 12px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  line-height: 1.3;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card.card-visible:hover .course-title {
  color: #5ebec4;
}

.course-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5ebec4;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(94, 190, 196, 0.08);
  border-radius: 8px;
  width: fit-content;
}

.course-duration i {
  font-size: 0.85rem;
}

.course-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 0.85rem;
  flex-grow: 1;
}

.course-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.course-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #475569;
  padding: 6px 8px;
  background: #f8fafc;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-feature:hover {
  background: rgba(94, 190, 196, 0.08);
  transform: translateX(3px);
}

.course-feature i {
  color: #5ebec4;
  font-size: 0.7rem;
  min-width: 12px;
}

.course-cta-btn {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #1b4965, #2c5f7c);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.2);
  position: relative;
  overflow: hidden;
}

.course-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.course-cta-btn:hover::before {
  left: 100%;
}

.course-cta-btn:hover {
  background: linear-gradient(135deg, #0f2a3d, #1b4965);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27, 73, 101, 0.35);
}

.course-cta-btn.specialty {
  background: linear-gradient(135deg, #1b4965, #2c5f7c);
}

.course-cta-btn.specialty:hover {
  background: linear-gradient(135deg, #0f2a3d, #1b4965);
}

/* Specialty Header */
.specialty-header {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px 30px;
  margin-top: 30px;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialty-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #5ebec4,
    #1b4965,
    #5ebec4,
    transparent
  );
  border-radius: 2px;
}

.specialty-header h3 {
  font-size: 2.2rem;
  color: #1b4965;
  margin: 0 0 12px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.specialty-header h3 i {
  color: #5ebec4;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.specialty-header p {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
}

.course-card.specialty {
  border-color: #e2e8f0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Courses CTA Section */
.courses-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1b4965 0%, #2c5f7c 100%);
  position: relative;
  overflow: hidden;
}

.courses-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(94, 190, 196, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(94, 190, 196, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.courses-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.courses-cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin: 0 0 20px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.courses-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 35px;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn i {
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover i {
  transform: translateX(4px);
}

.cta-btn.primary {
  background: white;
  color: #1b4965;
}

.cta-btn.primary:hover {
  background: #5ebec4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 190, 196, 0.4);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #1b4965;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Courses Grid */
@media (max-width: 1400px) {
  .courses-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .course-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .course-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .course-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .course-level {
    padding: 5px 11px;
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  .courses-grid-section {
    padding: 60px 0;
  }

  .courses-grid-section .container {
    max-width: 95%;
  }

  .courses-section-header {
    margin-bottom: 40px;
  }

  .courses-section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .course-filters {
    gap: 8px;
    margin-top: 25px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

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

  .course-card {
    padding: 22px;
  }

  .course-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .course-level {
    padding: 4px 10px;
    font-size: 0.6rem;
  }

  .course-title {
    font-size: 1.15rem;
  }

  .specialty-header {
    padding: 40px 20px 25px;
  }

  .specialty-header h3 {
    font-size: 1.9rem;
    flex-direction: column;
    gap: 10px;
  }

  .specialty-header h3 i {
    font-size: 1.7rem;
  }

  .courses-cta-section {
    padding: 60px 0;
  }

  .courses-cta-content h2 {
    font-size: 2rem;
  }

  .courses-cta-content p {
    font-size: 1.05rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .courses-section-header h2 {
    font-size: 1.9rem;
    margin-bottom: 18px;
  }

  .course-filters {
    gap: 6px;
    margin-top: 20px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .course-card {
    padding: 20px;
  }

  .course-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .course-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .course-level {
    padding: 4px 9px;
    font-size: 0.58rem;
  }

  .course-badge {
    padding: 4px 10px;
    font-size: 0.6rem;
  }

  .course-title {
    font-size: 1.1rem;
  }

  .specialty-header {
    padding: 35px 15px 20px;
  }

  .specialty-header h3 {
    font-size: 1.7rem;
  }

  .specialty-header h3 i {
    font-size: 1.5rem;
  }

  .courses-cta-content h2 {
    font-size: 1.8rem;
  }

  .courses-cta-content p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 13px 24px;
    font-size: 0.9rem;
  }
}

/* Course Packages Section */
.course-packages-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.course-packages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(94, 190, 196, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.course-packages-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.course-packages-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInUp 0.8s ease both;
}

.course-packages-header h2 {
  font-size: 3rem;
  color: #1b4965;
  margin: 0 0 20px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.course-packages-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #5ebec4, #1b4965);
  border-radius: 2px;
}

.course-packages-header p {
  font-size: 1.05rem;
  color: #475569;
  margin: 30px auto 0;
  max-width: 650px;
  line-height: 1.7;
}

.course-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

/* Course Package Card */
.course-package-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 73, 101, 0.08);
  animation: fadeInUp 0.8s ease both;
}

.course-package-card:nth-child(1) {
  animation-delay: 0.1s;
}

.course-package-card:nth-child(2) {
  animation-delay: 0.2s;
}

.course-package-card:nth-child(3) {
  animation-delay: 0.3s;
}

.course-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27, 73, 101, 0.15);
  border-color: rgba(94, 190, 196, 0.5);
}

/* Package Image */
.package-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-package-card:hover .package-image img {
  transform: scale(1.08);
}

.package-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 73, 101, 0) 0%,
    rgba(27, 73, 101, 0.2) 100%
  );
  pointer-events: none;
}

/* Package Content */
.package-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Package Header */
.package-header {
  padding: 30px 30px 20px;
  position: relative;
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
  z-index: 10;
}

/* Package Content */
.package-title {
  font-size: 1.75rem;
  color: #1b4965;
  margin: 0 0 10px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  line-height: 1.3;
}

.package-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.package-price {
  padding: 25px 30px;
  background: linear-gradient(
    135deg,
    rgba(94, 190, 196, 0.05),
    rgba(94, 190, 196, 0.1)
  );
  text-align: center;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin: 20px 0 0;
}

.price-label {
  font-size: 0.75rem;
  color: #5ebec4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.price-amount {
  font-size: 3rem;
  color: #1b4965;
  font-weight: 800;
  font-family: "Quicksand", sans-serif;
  line-height: 1;
}

.package-divider {
  display: none;
}

/* Package Includes */
.package-includes {
  padding: 30px 35px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-includes h4 {
  font-size: 0.95rem;
  color: #1b4965;
  margin: 0 0 20px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.package-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.package-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
}

.package-features-list li i {
  color: #5ebec4;
  font-size: 1.1rem;
  min-width: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Package CTA Button */
.package-cta-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #5ebec4, #4aa9af);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(94, 190, 196, 0.3);
  position: relative;
  overflow: hidden;
}

.package-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.package-cta-btn:hover::before {
  left: 100%;
}

.package-cta-btn:hover {
  background: linear-gradient(135deg, #1b4965, #2c5f7c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.35);
}

.package-cta-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.package-cta-btn:hover i {
  transform: translateX(4px);
}

/* Responsive Design for Course Packages */
@media (max-width: 1200px) {
  .course-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .course-package-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .course-packages-section {
    padding: 80px 0;
  }

  .course-packages-header h2 {
    font-size: 2.5rem;
  }

  .course-packages-header p {
    font-size: 1rem;
  }

  .package-header {
    padding: 30px 30px 25px;
  }

  .package-title {
    font-size: 1.6rem;
  }

  .package-price {
    padding: 25px 30px;
  }

  .price-amount {
    font-size: 2.6rem;
  }

  .package-includes {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .course-packages-section {
    padding: 60px 0;
  }

  .course-packages-header {
    margin-bottom: 50px;
  }

  .course-packages-header h2 {
    font-size: 2.2rem;
  }

  .course-packages-header p {
    font-size: 0.95rem;
  }

  .course-packages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .course-package-card:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }

  .package-image {
    height: 240px;
  }

  .package-badge {
    padding: 6px 14px;
    font-size: 0.65rem;
    top: 12px;
    right: 12px;
  }

  .package-header {
    padding: 28px 28px 22px;
  }

  .package-title {
    font-size: 1.5rem;
  }

  .package-subtitle {
    font-size: 0.88rem;
  }

  .package-price {
    padding: 22px 28px;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  .package-includes {
    padding: 28px;
  }

  .package-includes h4 {
    font-size: 0.9rem;
  }

  .package-features-list {
    gap: 11px;
  }

  .package-features-list li {
    font-size: 0.88rem;
  }

  .package-features-list li i {
    font-size: 1rem;
  }

  .package-cta-btn {
    padding: 15px 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .course-packages-section {
    padding: 50px 0;
  }

  .course-packages-header h2 {
    font-size: 1.9rem;
  }

  .course-packages-header p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .package-header {
    padding: 25px 25px 22px;
  }

  .package-badge {
    padding: 5px 12px;
    font-size: 0.6rem;
    top: 16px;
    right: 16px;
  }

  .package-title {
    font-size: 1.35rem;
  }

  .package-subtitle {
    font-size: 0.82rem;
  }

  .package-price {
    padding: 22px 25px;
  }

  .price-label {
    font-size: 0.75rem;
  }

  .price-amount {
    font-size: 2.2rem;
  }

  .package-includes {
    padding: 25px;
  }

  .package-includes h4 {
    font-size: 0.9rem;
  }

  .package-features-list {
    gap: 11px;
    margin-bottom: 25px;
  }

  .package-features-list li {
    font-size: 0.84rem;
  }

  .package-features-list li i {
    font-size: 0.95rem;
    min-width: 17px;
  }

  .package-cta-btn {
    padding: 14px 25px;
    font-size: 0.85rem;
  }
}

/* Course Requirements Section */
.course-requirements-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.course-requirements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(94, 190, 196, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(27, 73, 101, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.course-requirements-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.requirements-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease both;
}

.requirements-header h2 {
  font-size: 2.5rem;
  color: #1b4965;
  margin: 0 0 15px 0;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  position: relative;
  display: inline-block;
}

.requirements-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5ebec4, #1b4965);
  border-radius: 2px;
}

.requirements-header p {
  font-size: 1.1rem;
  color: #64748b;
  margin-top: 25px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.requirement-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.06);
  animation: fadeInUp 0.8s ease both;
}

.requirement-card:nth-child(1) {
  animation-delay: 0.1s;
}

.requirement-card:nth-child(2) {
  animation-delay: 0.2s;
}

.requirement-card:nth-child(3) {
  animation-delay: 0.3s;
}

.requirement-card:nth-child(4) {
  animation-delay: 0.4s;
}

.requirement-card:hover {
  transform: translateY(-8px);
  border-color: #5ebec4;
  box-shadow: 0 12px 30px rgba(27, 73, 101, 0.12);
}

.requirement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5ebec4, #4aa9af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(94, 190, 196, 0.25);
}

.requirement-icon i {
  font-size: 2rem;
  color: white;
}

.requirement-card:hover .requirement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(94, 190, 196, 0.4);
}

.requirement-card h3 {
  font-size: 1.25rem;
  color: #1b4965;
  margin: 0 0 15px 0;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}

.requirement-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.requirements-note {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  padding: 25px 35px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid #5ebec4;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.requirements-note i {
  font-size: 1.5rem;
  color: #5ebec4;
  flex-shrink: 0;
}

.requirements-note p {
  font-size: 1rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.requirements-note a {
  color: #1b4965;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.requirements-note a:hover {
  color: #5ebec4;
  border-bottom-color: #5ebec4;
}

/* Responsive Design for Course Requirements */
@media (max-width: 1024px) {
  .course-requirements-section {
    padding: 60px 0;
  }

  .requirements-header h2 {
    font-size: 2.2rem;
  }

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

@media (max-width: 768px) {
  .course-requirements-section {
    padding: 50px 0;
  }

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

  .requirements-header h2 {
    font-size: 2rem;
  }

  .requirements-header p {
    font-size: 1rem;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .requirement-card {
    padding: 30px 20px;
  }

  .requirement-icon {
    width: 60px;
    height: 60px;
  }

  .requirement-icon i {
    font-size: 1.7rem;
  }

  .requirement-card h3 {
    font-size: 1.15rem;
  }

  .requirement-card p {
    font-size: 0.9rem;
  }

  .requirements-note {
    padding: 20px 25px;
    gap: 12px;
  }

  .requirements-note i {
    font-size: 1.3rem;
  }

  .requirements-note p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .requirements-header h2 {
    font-size: 1.8rem;
  }

  .requirement-card {
    padding: 25px 18px;
  }

  .requirement-icon {
    width: 55px;
    height: 55px;
  }

  .requirement-icon i {
    font-size: 1.5rem;
  }

  .requirement-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .requirement-card p {
    font-size: 0.88rem;
  }

  .requirements-note {
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
  }

  .requirements-note p {
    font-size: 0.9rem;
  }
}

/* ============================================
   ACCOMMODATION PAGE STYLES
   ============================================ */

/* Guesthouses Section */
.guesthouses-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.guesthouses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 60px;
}

.guesthouse-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 73, 101, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.guesthouse-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(27, 73, 101, 0.2);
}

.guesthouse-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.guesthouse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guesthouse-card:hover .guesthouse-image img {
  transform: scale(1.1);
}

.guesthouse-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 73, 101, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.guesthouse-view-btn {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Quicksand", sans-serif;
}

.guesthouse-view-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.guesthouse-logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.guesthouse-logo-container:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.guesthouse-logo {
  width: 120px;
  height: auto;
  display: block;
}

.guesthouse-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.guesthouse-name {
  font-family: "Alan Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.guesthouse-description {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 25px;
}

.guesthouse-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(27, 73, 101, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}

.feature-tag i {
  font-size: 0.8rem;
}

.guesthouse-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-color), #2c5f7c);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.guesthouse-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.3);
}

/* Guesthouse Modal */
.guesthouse-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  padding: 2.5vh 2.5vw;
  box-sizing: border-box;
  overflow: visible;
}

/* Ensure close button is always on top and fixed */
.guesthouse-modal .modal-close {
  position: fixed !important;
  top: 2.5vh !important;
  right: 2.5vw !important;
  z-index: 10006 !important;
  pointer-events: auto !important;
}

.guesthouse-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content-wrapper {
  position: relative;
  z-index: 10001;
  width: 98vw;
  max-width: 1400px;
  height: 95vh;
  max-height: 95vh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  height: 100%;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: fixed !important;
  top: 2.5vh !important;
  right: 2.5vw !important;
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid var(--primary-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10005 !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transform: none !important;
}

.modal-close:hover {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 30px rgba(27, 73, 101, 0.5);
  transform: rotate(90deg) scale(1.15) !important;
}

.modal-close i {
  transition: transform 0.3s ease;
}

.modal-close:hover i {
  transform: rotate(0deg);
}

/* Landing Page Modal Styles */
.modal-hero {
  width: 100%;
  position: relative;
}

.modal-hero-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1b4965, #2c5f7c);
}

.modal-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.modal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.modal-image-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 5;
  font-family: "Quicksand", sans-serif;
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--primary-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-nav:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 25px rgba(27, 73, 101, 0.4);
}

.image-nav-prev {
  left: 20px;
}

.image-nav-next {
  right: 20px;
}

.modal-thumbnails {
  display: flex;
  gap: 15px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) transparent;
  justify-content: center;
}

.modal-thumbnails::-webkit-scrollbar {
  height: 8px;
}

.modal-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.modal-thumbnails::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

.thumbnail-item {
  min-width: 120px;
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumbnail-item:hover {
  opacity: 1;
  transform: scale(1.05);
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.25);
}

.thumbnail-item.active {
  border-color: var(--primary-color);
  opacity: 1;
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Landing Header */
.modal-landing-header {
  padding: 60px 50px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.modal-landing-logo {
  margin-bottom: 25px;
}

.modal-landing-logo img {
  width: 180px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.modal-landing-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.modal-landing-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 30px;
}

.modal-landing-website {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(27, 73, 101, 0.1);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.modal-landing-website:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 73, 101, 0.3);
}

/* Landing Page Banner */
.modal-landing-banner {
  background: linear-gradient(135deg, var(--secondary-color), #a8e0e2);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
}

.modal-landing-banner-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.modal-landing-banner p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.15rem;
  color: var(--primary-color);
  line-height: 1.8;
  margin: 0;
  font-weight: 600;
}

/* Landing Page Sections */
.modal-landing-section {
  padding: 80px 50px;
  position: relative;
}

.modal-landing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.modal-landing-section-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.modal-landing-section-title span {
  position: relative;
  display: inline-block;
}

.modal-landing-section-title span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Features Section */
.modal-features-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.modal-feature-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.08);
}

.modal-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.15);
  border-left-color: var(--primary-color);
}

.modal-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), #a8e0e2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.modal-feature-icon i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.modal-feature-card p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Rooms Section */
.modal-rooms-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.modal-landing-section:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.modal-landing-section:nth-child(odd) {
  background: #ffffff;
}

.modal-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.modal-room-card {
  background: white;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(27, 73, 101, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.modal-room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27, 73, 101, 0.2);
  border-top-color: var(--primary-color);
}

.modal-room-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), #2c5f7c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-room-icon i {
  color: white;
  font-size: 1.5rem;
}

.modal-room-card p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* Amenities Section */
.modal-amenities-section {
  background: #ffffff;
}

.modal-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.modal-amenity-card {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 2px solid rgba(27, 73, 101, 0.1);
  transition: all 0.3s ease;
}

.modal-amenity-card:hover {
  border-color: var(--secondary-color);
  background: rgba(190, 233, 232, 0.1);
  transform: translateX(5px);
}

.modal-amenity-card i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.modal-amenity-card span {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* Contact Section */
.modal-contact-section-landing {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.modal-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.modal-contact-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.modal-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(27, 73, 101, 0.15);
}

.modal-contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), #a8e0e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.modal-contact-icon i {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.modal-contact-card h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.modal-contact-card p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.modal-contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.modal-contact-details a {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.modal-contact-details a:hover {
  background: rgba(27, 73, 101, 0.1);
  color: var(--primary-color);
}

.modal-contact-details a i {
  color: var(--secondary-color);
}

/* CTA Section */
.modal-landing-cta {
  background: linear-gradient(135deg, var(--primary-color), #2c5f7c);
  padding: 80px 50px;
  text-align: center;
  color: white;
}

.modal-landing-cta h2 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.modal-landing-cta > .modal-landing-container > p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.modal-landing-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.modal-landing-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-landing-btn-primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-landing-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.modal-landing-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.modal-landing-btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.modal-landing-note {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  font-style: italic;
}

.modal-landing-note i {
  margin-right: 8px;
}

.modal-section-title i {
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.modal-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features-list li {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  color: #475569;
  padding: 14px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(27, 73, 101, 0.1);
  font-weight: 500;
}

.modal-features-list li:last-child {
  border-bottom: none;
}

.modal-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8fafc;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 500;
}

.amenity-item:hover {
  background: rgba(27, 73, 101, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.15);
}

.amenity-item i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.modal-location {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: var(--primary-color);
  padding: 18px 25px;
  background: rgba(27, 73, 101, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  font-weight: 600;
  line-height: 1.7;
}

.modal-cta {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(27, 73, 101, 0.1);
  text-align: center;
}

.modal-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-color), #2c5f7c);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.3);
}

.modal-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(27, 73, 101, 0.4);
}

.modal-contact-note {
  margin-top: 15px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: #64748b;
  font-style: italic;
}

.modal-website-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(27, 73, 101, 0.1);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.modal-website-link:hover {
  background: var(--primary-color);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.3);
  border-color: var(--primary-color);
}

.modal-highlight {
  background: linear-gradient(
    135deg,
    rgba(190, 233, 232, 0.15),
    rgba(27, 73, 101, 0.05)
  );
  border-left: 4px solid var(--primary-color);
  padding: 20px 25px;
  border-radius: 12px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.modal-highlight:hover {
  background: linear-gradient(
    135deg,
    rgba(190, 233, 232, 0.25),
    rgba(27, 73, 101, 0.1)
  );
  box-shadow: 0 4px 15px rgba(27, 73, 101, 0.15);
}

.modal-highlight i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.modal-highlight p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  color: var(--primary-color);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.modal-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

.modal-contact-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

.modal-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(27, 73, 101, 0.05);
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(27, 73, 101, 0.15);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(27, 73, 101, 0.2);
}

.contact-item i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.modal-contact-btn--secondary {
  background: linear-gradient(135deg, var(--secondary-color), #a8e0e2);
  color: var(--primary-color);
  margin-left: 15px;
}

.modal-contact-btn--secondary:hover {
  background: linear-gradient(135deg, #8dd4d7, var(--secondary-color));
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(27, 73, 101, 0.4);
  border: 2px solid var(--primary-color);
}

/* Accommodation What to Expect Section */
.accommodation-expect-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.accommodation-expect-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(27, 73, 101, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.accommodation-expect-section .container {
  max-width: 1600px;
  padding: 0 40px;
}

/* Compact Horizontal Expect Layout */
.expect-horizontal-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  padding: 20px 0 30px 0;
  margin-top: 50px;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.expect-card-compact {
  background: white;
  padding: 28px 22px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(27, 73, 101, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.expect-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(27, 73, 101, 0.2);
  border-left-color: var(--primary-color);
}

.expect-icon-compact {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--secondary-color), #a8e0e2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.expect-card-compact:hover .expect-icon-compact {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-color), #2c5f7c);
}

.expect-icon-compact i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.expect-card-compact:hover .expect-icon-compact i {
  color: white;
}

.expect-title-compact {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.expect-description-compact {
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Accommodation */
@media (max-width: 1024px) {
  .guesthouses-grid {
    gap: 40px;
  }

  .expect-horizontal-scroll {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 15px 0 25px 0;
  }

  .expect-card-compact {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .guesthouses-section {
    padding: 60px 0;
  }

  .guesthouses-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .guesthouse-image {
    height: 250px;
  }

  .guesthouse-logo {
    width: 100px;
  }

  .guesthouse-info {
    padding: 30px 25px;
  }

  .guesthouse-name {
    font-size: 1.6rem;
  }

  .modal-content-wrapper {
    width: 95vw;
    height: 95vh;
    max-height: 95vh;
  }

  .guesthouse-modal {
    padding: 2vh 2vw;
  }

  .modal-close {
    position: fixed !important;
    right: 2vw !important;
    top: 2vh !important;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    z-index: 10005 !important;
  }

  .modal-hero-image {
    height: 350px;
  }

  .modal-image-counter {
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .modal-landing-header {
    padding: 40px 25px;
  }

  .modal-landing-logo img {
    width: 140px;
  }

  .modal-landing-title {
    font-size: 2.2rem;
  }

  .modal-landing-subtitle {
    font-size: 1.05rem;
  }

  .modal-landing-banner {
    padding: 30px 25px;
    flex-direction: column;
    text-align: center;
  }

  .modal-landing-banner-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .modal-landing-banner p {
    font-size: 1rem;
  }

  .modal-landing-section {
    padding: 40px 25px;
  }

  .modal-landing-section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .modal-features-grid,
  .modal-rooms-grid,
  .modal-amenities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal-contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .modal-contact-card {
    padding: 30px 25px;
  }

  .modal-landing-cta {
    padding: 50px 25px;
  }

  .modal-landing-cta h2 {
    font-size: 1.8rem;
  }

  .modal-landing-cta > .modal-landing-container > p {
    font-size: 1rem;
  }

  .modal-landing-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-landing-btn {
    width: 100%;
    justify-content: center;
  }

  .modal-thumbnails {
    padding: 15px 20px;
    gap: 10px;
  }

  .thumbnail-item {
    min-width: 100px;
    width: 100px;
    height: 70px;
  }

  .modal-sections-grid,
  .modal-contact-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .modal-image-container {
    height: 300px;
  }

  .modal-header {
    padding: 25px 25px;
  }

  .modal-logo {
    width: 120px;
  }

  .modal-title {
    font-size: 2rem;
  }

  .modal-info-content {
    padding: 30px 25px;
  }

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

  .expect-horizontal-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px 0 20px 0;
    margin-top: 40px;
  }

  .expect-card-compact {
    padding: 22px 18px;
  }

  .expect-icon-compact {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .expect-icon-compact i {
    font-size: 1.3rem;
  }

  .expect-title-compact {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .expect-description-compact {
    font-size: 0.85rem;
  }

  .accommodation-expect-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .guesthouse-logo-container {
    top: 15px;
    left: 15px;
    padding: 10px;
  }

  .guesthouse-logo {
    width: 80px;
  }

  .guesthouse-name {
    font-size: 1.4rem;
  }

  .modal-header {
    padding: 25px 25px;
  }

  .modal-logo {
    width: 120px;
  }

  .modal-title {
    font-size: 1.75rem;
  }

  .modal-info-content {
    padding: 30px 25px;
  }

  .modal-section-title {
    font-size: 1.4rem;
  }

  .modal-description {
    font-size: 1.1rem;
  }

  .modal-features-list li {
    font-size: 1rem;
  }

  .amenity-item {
    font-size: 1rem;
  }

  .modal-location {
    font-size: 1.05rem;
  }

  .modal-content-wrapper {
    width: 96vw;
    height: 95vh;
  }

  .guesthouse-modal {
    padding: 1.5vh 2vw;
  }

  .modal-close {
    position: fixed !important;
    right: 2vw !important;
    top: 1.5vh !important;
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    z-index: 10005 !important;
  }

  .modal-main-image {
    height: 320px;
  }

  .image-nav {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .image-nav-prev {
    left: 12px;
  }

  .image-nav-next {
    right: 12px;
  }

  .modal-thumbnails {
    padding: 15px 18px;
    gap: 10px;
  }

  .thumbnail-item {
    min-width: 85px;
    width: 85px;
    height: 65px;
  }

  .modal-header {
    padding: 25px 25px;
  }

  .modal-logo {
    width: 120px;
  }

  .modal-title {
    font-size: 1.8rem;
  }

  .modal-info-content {
    padding: 30px 25px;
  }

  .modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .modal-section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .modal-features-list li {
    font-size: 1rem;
    padding: 12px 0;
    padding-left: 32px;
  }

  .amenity-item {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .modal-location {
    font-size: 1.05rem;
    padding: 16px 22px;
  }

  .modal-contact-btn {
    padding: 16px 35px;
    font-size: 1.05rem;
  }

  .contact-item {
    font-size: 1rem;
    padding: 14px 18px;
  }

  .contact-item a {
    font-size: 1.05rem;
  }

  .modal-highlight {
    padding: 18px 22px;
  }

  .modal-highlight p {
    font-size: 1.05rem;
  }

  .modal-website-link {
    font-size: 1rem;
    padding: 12px 22px;
  }

  .modal-contact-btn {
    width: 100%;
    margin: 5px 0;
  }

  .modal-contact-btn--secondary {
    margin-left: 0;
  }
}
