@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Color Variables & Base Styles */
:root {
  --primary-color: #080f26; /* Deep navy */
  --accent-color: #0d1e4c;
  --text-white: #ffffff;
  --text-dark: #080f26;
  --text-muted-white: rgba(255, 255, 255, 0.7);
  --text-muted-dark: #6e768e;
  --border-light: rgba(255, 255, 255, 0.2);
  --border-dark: rgba(8, 15, 38, 0.1);
  --card-bg-glass: rgba(255, 255, 255, 0.95);
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Prevent GSAP FOUC (Flash of Unanimated Content) */
.logo-link, .nav-menu li, .nav-actions, .hero-giant-title, .hero-left-heading h1, .booking-widget, .spots-badge-container, .hero-footer-divider, .hero-footer-desc,
.destination-section-label, .destination-header-left h2, .destination-header-right, .destination-card {
  visibility: hidden;
}


/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* ==========================================================
   HERO CONTAINER (Layered 3D Effect)
   ========================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, var(--primary-color) 0%, rgba(8, 15, 38, 0.4) 40%, rgba(8, 15, 38, 0) 100%), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 3D Foreground mountains cutout */
.hero-mountain-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center 30%;
  z-index: 3;
  pointer-events: none;
  /* Accurate mountain ridge cutout polygon using clip-path */
  clip-path: polygon(
    0% 48%, 
    12% 43%, 
    25% 52%, 
    38% 38%, 
    52% 46%, 
    68% 36%, 
    82% 48%, 
    93% 41%, 
    100% 46%, 
    100% 100%, 
    0% 100%
  );
}

/* Giant TRIPLIO text layered behind the foreground mountain */
.hero-giant-title {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 15vw;
  font-weight: 900;
  color: var(--text-white);
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  user-select: none;
  opacity: 0.95;
  line-height: 0.8;
}

/* ==========================================================
   NAVIGATION BAR
   ========================================================== */
.navbar {
  position: relative;
  z-index: 10;
  padding: 30px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  gap: 8px;
}

.logo-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted-white);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition-speed);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-book-nav {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-light);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  text-decoration: none;
}

.btn-book-nav:hover {
  background: var(--text-white);
  color: var(--primary-color);
  border-color: var(--text-white);
}

.btn-arrow-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: all var(--transition-speed);
  text-decoration: none;
}

.btn-arrow-icon:hover {
  background: var(--text-white);
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* ==========================================================
   HERO CONTENT (Main heading and widget)
   ========================================================== */
.hero-content {
  position: relative;
  z-index: 10;
  margin-top: auto;
  margin-bottom: 40px;
}

.hero-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.hero-left-heading {
  flex: 1;
  max-width: 500px;
}

.hero-left-heading h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -1px;
}

/* Booking Widget styling */
.booking-widget {
  background: var(--card-bg-glass);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 680px;
  width: 100%;
}

.widget-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 10px 14px;
  border-radius: 16px;
  transition: background var(--transition-speed);
}

.widget-item:hover {
  background: rgba(8, 15, 38, 0.04);
}

.widget-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
}

.widget-item-info {
  display: flex;
  flex-direction: column;
}

.widget-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.widget-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.widget-input {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  width: 100%;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: normal;
  display: block;
}

/* Styling native select dropdown custom appearance */
select.widget-input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
}

.select-arrow {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
}

.widget-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
}

.btn-book-widget {
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-speed), transform var(--transition-speed);
  white-space: nowrap;
}

.btn-book-widget:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* ==========================================================
   HERO FOOTER (Spots and Description Meta Row)
   ========================================================== */
.hero-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  gap: 40px;
  z-index: 10;
  position: relative;
}

.spots-badge-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.spots-text-label {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  max-width: 120px;
  line-height: 1.2;
}

.spots-avatars {
  display: flex;
  align-items: center;
}

.spots-badge-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  margin-left: -10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: transform var(--transition-speed), background var(--transition-speed);
}

.spots-badge-circle:first-child {
  margin-left: 0;
}

.spots-badge-circle:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.spots-badge-circle svg {
  width: 15px;
  height: 15px;
}

.hero-footer-divider {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  max-width: 150px;
}

.hero-footer-desc {
  flex: 1;
  max-width: 600px;
  color: var(--text-muted-white);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================================
   DESTINATION SECTION
   ========================================================== */
.destination-section {
  padding: 100px 0;
  background: #ffffff;
}

.destination-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.destination-header-left {
  max-width: 600px;
}

.destination-section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.destination-header-left h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.destination-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-see-all {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed);
  text-decoration: none;
}

.btn-see-all:hover {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

.btn-arrow-icon-dark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: all var(--transition-speed);
  text-decoration: none;
}

.btn-arrow-icon-dark:hover {
  background: var(--accent-color);
  transform: rotate(45deg);
}

/* Destination Cards Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.destination-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.destination-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.destination-card-arrow-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 2;
  transition: transform var(--transition-speed), background var(--transition-speed), color var(--transition-speed);
}

.destination-card-arrow-badge svg {
  width: 16px;
  height: 16px;
}

.destination-card-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: var(--text-white);
  transition: transform var(--transition-speed);
}

.destination-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.destination-card-price {
  font-size: 14px;
  color: var(--text-muted-white);
  font-weight: 400;
}

.destination-card-price span {
  font-weight: 600;
  color: var(--text-white);
}

/* Card Hover States */
.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.destination-card:hover .destination-card-img {
  transform: scale(1.08);
}

.destination-card:hover .destination-card-arrow-badge {
  background: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1) rotate(45deg);
}

/* Grid Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

/* ==========================================================
   RESPONSIVE LAYOUT RESPONSIVENESS
   ========================================================== */
@media (max-width: 1200px) {
  .hero-left-heading h1 {
    font-size: 40px;
  }
  .booking-widget {
    max-width: 580px;
  }
}

@media (max-width: 992px) {
  .hero-main-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 40px;
  }
  .hero-left-heading {
    max-width: 100%;
  }
  .booking-widget {
    max-width: 100%;
  }
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-footer-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-footer-divider {
    display: none;
  }
  .nav-menu {
    display: none; /* Can implement mobile drawer toggle if needed */
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .navbar {
    padding: 20px 0;
  }
  .hero-section {
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero-giant-title {
    font-size: 18vw;
    top: 30%;
  }
  .hero-mountain-foreground {
    clip-path: polygon(
      0% 55%, 
      15% 50%, 
      30% 58%, 
      45% 45%, 
      60% 53%, 
      75% 47%, 
      90% 56%, 
      100% 50%, 
      100% 100%, 
      0% 100%
    );
  }
  .booking-widget {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-radius: 18px;
  }
  .widget-divider {
    width: 100%;
    height: 1px;
  }
  .destination-grid {
    grid-template-columns: 1fr;
  }
  .destination-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .destination-header-left h2 {
    font-size: 32px;
  }
}

/* ==========================================================
   ABOUT US SECTION STYLING
   ========================================================== */
.about-section {
  padding: 120px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(8, 15, 38, 0.08);
}

/* Glassmorphism stats overlay card */
.about-stats-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--card-bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(8, 15, 38, 0.12);
  display: flex;
  gap: 24px;
  align-items: center;
  z-index: 5;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: 30px;
}

.about-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(8, 15, 38, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
}

.benefit-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.benefit-info p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted-dark);
}

.btn-about-discover {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-speed), transform var(--transition-speed);
  text-decoration: none;
}

.btn-about-discover:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* ==========================================================
   TESTIMONIALS SECTION STYLING
   ========================================================== */
.testimonials-section {
  padding: 120px 0;
  background: #f8fafe;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-top: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(8, 15, 38, 0.03);
  box-shadow: 0 10px 30px rgba(8, 15, 38, 0.02);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(8, 15, 38, 0.06);
}

.stars-row {
  display: flex;
  gap: 4px;
  color: #ffb100;
  font-size: 18px;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 700;
  font-size: 15px;
}

.bg-grad-1 { background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%); }
.bg-grad-2 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.bg-grad-3 { background: linear-gradient(135deg, #f857a6 0%, #ff5858 100%); }

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12.5px;
  color: var(--text-muted-dark);
}

/* ==========================================================
   FAQ SECTION STYLING
   ========================================================== */
.faq-section {
  padding: 120px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}

.faq-info {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-info h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.faq-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
}

.faq-support-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: underline;
  transition: color var(--transition-speed);
}

.faq-support-link:hover {
  color: var(--accent-color);
}

.faq-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.accordion-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(8, 15, 38, 0.04);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
  transition: color var(--transition-speed);
}

.accordion-icon svg {
  width: 18px;
  height: 18px;
}

.accordion-header:hover .accordion-icon {
  color: var(--primary-color);
}

.accordion-body {
  height: 0;
  overflow: hidden;
}

.accordion-content {
  padding: 0 28px 24px 28px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* ==========================================================
   BLOG SECTION STYLING
   ========================================================== */
.blog-section {
  padding: 120px 0;
  background: #f8fafe;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-top: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(8, 15, 38, 0.03);
  box-shadow: 0 10px 30px rgba(8, 15, 38, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(8, 15, 38, 0.08);
}

.blog-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 12.5px;
  color: var(--text-muted-dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.blog-summary {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  transition: color var(--transition-speed);
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-speed);
}

.blog-read-more:hover {
  color: var(--accent-color);
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* ==========================================================
   FOOTER STYLING
   ========================================================== */
.main-footer {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 100px 0 40px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 26px;
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-text {
  color: var(--text-muted-white);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition-speed);
}

.social-icon:hover {
  background: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted-white);
  font-size: 14px;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted-white);
  font-size: 14px;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-muted-white);
}

.btn-scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all var(--transition-speed);
}

.btn-scroll-top svg {
  width: 20px;
  height: 20px;
}

.btn-scroll-top:hover {
  background: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ==========================================================
   BOOKING MODAL STYLING
   ========================================================== */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 10, 27, 0.55);
  backdrop-filter: blur(0px); /* Transitioned by JS */
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(4, 10, 27, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform-origin: center center;
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f4f6fa;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-speed), color var(--transition-speed);
}

.modal-close-btn svg {
  width: 16px;
  height: 16px;
}

.modal-close-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark), margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted-dark);
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  border: 1.5px solid var(--border-dark);
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition-speed);
}

.form-input:focus {
  border-color: var(--primary-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.btn-modal-submit {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 14px;
  background: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: background var(--transition-speed), transform var(--transition-speed);
}

.btn-modal-submit:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* Success View */
.success-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 24px auto;
}

.success-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.success-title {
  text-align: center;
  color: #2ecc71;
  margin-bottom: 12px;
}

.success-desc {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: 28px;
}

.btn-modal-close-success {
  width: 100%;
  border: none;
  padding: 13px;
  border-radius: 12px;
  background: #f4f6fa;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.btn-modal-close-success:hover {
  background: #e8ebf2;
}

/* ==========================================================
   EXPANDED LAYOUT RESPONSIVENESS
   ========================================================== */
@media (max-width: 992px) {
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrapper {
    max-width: 540px;
    margin: 0 auto;
  }
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .faq-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-stats-card {
    position: static;
    margin-top: 20px;
    justify-content: space-around;
    right: 0;
  }
  .testimonials-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .modal-card {
    padding: 30px 24px;
  }
}

/* ==========================================================
   MOBILE NAVIGATION DRAWER STYLING
   ========================================================== */
.btn-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-speed);
}

.btn-hamburger svg {
  width: 26px;
  height: 26px;
}

.btn-hamburger:hover {
  color: var(--text-muted-white);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 10, 27, 0.55);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--primary-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-shadow: -10px 0 30px rgba(4, 10, 27, 0.35);
  z-index: 1001;
}

.mobile-nav-close-btn {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-speed), color var(--transition-speed);
}

.mobile-nav-close-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-close-btn:hover {
  background: var(--text-white);
  color: var(--primary-color);
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--text-muted-white);
  font-size: 20px;
  font-weight: 600;
  transition: color var(--transition-speed);
}

.mobile-nav-link:hover {
  color: var(--text-white);
}

.mobile-nav-cta {
  margin-top: auto;
}

.btn-book-mobile-drawer {
  width: 100%;
  border: none;
  padding: 16px;
  border-radius: 14px;
  background: var(--text-white);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition-speed), transform var(--transition-speed);
}

.btn-book-mobile-drawer:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Mobile responsive resets */
@media (max-width: 992px) {
  .btn-hamburger {
    display: flex;
  }
  
  .btn-book-nav, .btn-arrow-icon {
    display: none !important; /* Hide desktop action buttons inside nav actions container on mobile */
  }
  
  .nav-actions {
    gap: 0;
  }
}


