/* Global Backgrounds */
.bg-soft {
  background-color: var(--bg-soft);
}

/* Shared Section Title with Underline */
.section-title {
  color: var(--dark);
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-title.centered::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.25s;
}
.delay-3 {
  transition-delay: 0.4s;
}

/* Keyframe Animations */
@keyframes spin {
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ==========================================================================
     2. ABOUT SECTION
     ========================================================================== */

.about-section {
  padding: 100px 0;
  background-color: #fcfdfe;
  overflow-x: hidden;
}

.about-img-wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.about-img-main {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  height: 600px;
}

.about-img-sub {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 55%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  border: 12px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  z-index: 2;
}

.about-img-sub:hover {
  transform: scale(1.05);
}

.exp-badge {
  position: absolute;
  top: 50px;
  left: -20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(255, 126, 95, 0.4);
  text-align: center;
  z-index: 3;
  animation: floatBadge 3.5s ease-in-out infinite;
}

.exp-badge h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.exp-badge p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: default;
}

.feature-box:hover {
  transform: translateX(10px);
  background-color: #ffffff;
  border-color: #f1f1f1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(255, 126, 95, 0.1);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.feature-box:hover .feature-icon {
  background: var(--primary);
  color: #fff;
}

.feature-text h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.feature-text p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-book {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.btn-book:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 126, 95, 0.5);
}

@media (max-width: 991px) {
  .about-img-main {
    width: 100%;
    height: 400px;
  }
  .exp-badge {
    left: 0;
    top: 20px;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
     3. MISSION & VISION SECTION
     ========================================================================== */

.mission-vision-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  z-index: 1;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 126, 95, 0.12);
}

.mission-vision-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 85px;
  height: 85px;
  margin: 0 auto 1.8rem;
  background: rgba(255, 126, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.mission-vision-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mission-vision-card:hover .value-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.mission-vision-card h3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.mission-vision-card p {
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ==========================================================================
     4. CORE VALUES SECTION
     ========================================================================== */

.core-values-section {
  background-color: #ffffff;
  overflow-x: hidden;
}

.value-block {
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  cursor: default;
}

.value-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  background-color: #fcfdfe;
}

.icon-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem auto;
  background: rgba(255, 126, 95, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.icon-circle::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed rgba(255, 126, 95, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  transform: scale(0.8);
}

.value-icon {
  font-size: 2.2rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.value-block:hover .icon-circle {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 20px rgba(255, 126, 95, 0.3);
}

.value-block:hover .icon-circle::before {
  opacity: 1;
  transform: scale(1);
  animation: spin 10s linear infinite;
}

.value-block:hover .value-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.value-block h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.value-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
     5. STATS SECTION (Parallax)
     ========================================================================== */

.stats-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
    center center / cover fixed;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 41, 59, 0.85);
  z-index: 1;
}

.stats-section .container-fluid {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}

.stat-item {
  padding: 20px 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback for browsers not supporting webkit */
}

.stat-item h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-suffix {
  color: var(--primary);
  font-size: 2.5rem;
  margin-left: 2px;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  color: #cbd5e1;
}

@media (min-width: 768px) {
  .stat-border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767px) {
  .stat-item {
    margin-bottom: 30px;
  }
  .stat-item h2 {
    font-size: 2.8rem;
  }
}
