/* ============================================================
   tourm-sections.css
   Header, Hero Slider, Booking & Utility Styles
   Scoped under .th-header to avoid conflicts with existing .header
   ============================================================ */

/* ----------------------------------------------------------
   0. KEYFRAMES
   ---------------------------------------------------------- */
@keyframes slideinup {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------------------
   1. BOOTSTRAP-LIKE UTILITIES (minimal set)
   ---------------------------------------------------------- */
.d-none {
  display: none;
}

.text-center {
  text-align: center;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  padding: 0 12px;
}

.col-md-12 {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
  }
}

@media (min-width: 1200px) {
  .d-xl-block {
    display: block;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-none.d-xl-inline-block {
    display: inline-block;
  }
  .d-none.d-xl-block {
    display: block;
  }
  .me-xl-auto {
    margin-right: auto;
  }
}

/* ----------------------------------------------------------
   1b. CONTAINER
   ---------------------------------------------------------- */
.th-container,
.container.th-container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ----------------------------------------------------------
   2. HEADER TOP BAR
   ---------------------------------------------------------- */
.th-header .header-top {
  width: 100%;
  background: #0d1b2a;
  height: auto;
  min-height: 40px;
  padding: 8px 0;
  color: var(--text-white, #fff);
  font-size: 13px;
  line-height: 1.5;
}

.th-header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.th-header .header-links ul {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.th-header .header-links ul li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-white, #fff);
}

.th-header .header-links ul li a {
  color: var(--text-white, #fff);
  text-decoration: none;
  transition: color 0.3s;
}

.th-header .header-links ul li a:hover {
  color: var(--primary-light, #3b7cf5);
}

.th-header .header-links ul li i {
  margin-right: 6px;
  color: var(--primary-light, #3b7cf5);
}

.th-header .header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.th-header .header-right a {
  color: var(--text-white, #fff);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.th-header .header-right a:hover {
  color: var(--primary-light, #3b7cf5);
}

.th-header .header-right i {
  margin-right: 6px;
  color: var(--primary-light, #3b7cf5);
}

.th-header .currency-menu select {
  background: transparent;
  border: none;
  color: var(--text-white, #fff);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: auto;
}

.th-header .currency-menu select option {
  background: #0d1b2a;
  color: #fff;
}

/* ----------------------------------------------------------
   3. STICKY NAVIGATION & FLEX LAYOUTS
   ---------------------------------------------------------- */
.th-header .sticky-wrapper {
  position: relative;
  transition: all 0.3s;
}

.th-header .sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.th-header .menu-area {
  padding: 0;
}

.th-header .menu-area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.th-header .header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ----------------------------------------------------------
   4. HEADER LOGO & VISIBILITY TOGGLES
   ---------------------------------------------------------- */
.th-header .header-logo {
  display: block;
}

.th-header .header-logo img {
  max-height: 80px;
  width: auto;
  display: block;
  transition: max-height 0.3s;
}

.th-header .sticky-wrapper.sticky .header-logo img {
  max-height: 55px;
}

/* Logo toggling for transparent and sticky header states */
/* Theme-driven logo visibility for Header and Footer */
.th-header .header-logo .logo-light,
.footer .logo-light {
  display: block !important;
}
.th-header .header-logo .logo-dark,
.footer .logo-dark {
  display: none !important;
}

[data-theme='light'] .th-header .header-logo .logo-light,
[data-theme='light'] .footer .logo-light {
  display: none !important;
}
[data-theme='light'] .th-header .header-logo .logo-dark,
[data-theme='light'] .footer .logo-dark {
  display: block !important;
}

/* ----------------------------------------------------------
   4b. HEADER ACTIONS & PHONE
   ---------------------------------------------------------- */
.th-header .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.th-header .header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #113D48;
}

:root:not([data-theme='light']) .th-header .header-phone {
  color: #fff;
}

.th-header .header-phone-icon {
  width: 40px;
  height: 40px;
  background: rgba(42, 75, 171, 0.08);
  color: var(--primary, #2a4bab);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.th-header .header-phone-number {
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}

/* ----------------------------------------------------------
   5. MAIN MENU
   ---------------------------------------------------------- */
.th-header .main-menu > ul {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.th-header .main-menu > ul > li {
  position: relative;
}

.th-header .main-menu > ul > li > a {
  display: block;
  padding: 35px 15px;
  color: #113D48;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  transition: color 0.3s;
}

.th-header .main-menu > ul > li > a:hover,
.th-header .main-menu > ul > li > a.active {
  color: var(--primary, #2a4bab);
}

/* Sub-menu dropdown */
.th-header .main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.th-header .main-menu > ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.th-header .main-menu .sub-menu li a {
  display: block;
  padding: 8px 15px;
  color: #6B7280;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, padding-left 0.3s;
}

.th-header .main-menu .sub-menu li a:hover {
  background: rgba(42, 75, 171, 0.08);
  color: var(--primary, #2a4bab);
  padding-left: 20px;
}

/* ----------------------------------------------------------
   6. HEADER BUTTON
   ---------------------------------------------------------- */
.th-header .header-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ----------------------------------------------------------
   7. MOBILE TOGGLE
   ---------------------------------------------------------- */
.th-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  background: var(--primary, #2a4bab);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------
   8. TH-BTN BUTTON STYLES
   ---------------------------------------------------------- */
.th-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  background: var(--primary, #2a4bab);
  color: #fff;
  border: none;
  border-radius: 48px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  line-height: 1.4;
}

.th-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 0;
  height: 100%;
  background: var(--primary-dark, #1e3a8a);
  transition: width 0.4s;
  z-index: -1;
  border-radius: 48px;
}

.th-btn:hover::before {
  width: 110%;
}

.th-btn:hover {
  color: #fff;
}

.th-btn.th-icon::after {
  content: '→';
  margin-left: 4px;
  transition: margin-left 0.3s;
}

/* Style 2 — outlined / transparent */
.th-btn.style2 {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.th-btn.style2::before {
  display: none;
}

.th-btn.style2:hover {
  background: #fff;
  color: #1e3a8a;
}

/* Style 3 — dark primary */
.th-btn.style3 {
  background: #1e3a8a;
  color: #fff;
}

.th-btn.style3.th-icon::after {
  content: '→';
}

/* ----------------------------------------------------------
   9. LINE-BTN
   ---------------------------------------------------------- */
.line-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary, #2a4bab);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
}

.line-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary, #2a4bab);
  transition: width 0.3s;
}

.line-btn:hover {
  color: var(--primary-dark, #1e3a8a);
}

.line-btn:hover::before {
  width: 45px;
}

/* ----------------------------------------------------------
   10. LOGO BG MASK (disabled)
   ---------------------------------------------------------- */
.logo-bg {
  display: none;
}

/* ----------------------------------------------------------
   11. HERO WRAPPER
   ---------------------------------------------------------- */
.th-hero-wrapper.hero-1 {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 550px;
  overflow: hidden;
}

.th-hero-wrapper .hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.th-hero-wrapper .th-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.th-hero-wrapper .th-hero-bg img,
.th-hero-wrapper .th-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-hero-wrapper .th-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

[data-bg-src] {
  background-size: cover;
  background-position: center;
}

/* Hero content */
.hero-style1 {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
  min-height: 550px;
  max-width: 700px;
  padding-top: 100px;
}

.hero-style1 > * {
  opacity: 0;
  transform: translateY(30px);
}

.hero-style1 .sub-title.style1 {
  display: inline-block;
  color: #FFB539;
  font-family: 'Montez', cursive;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-style1 .hero-title {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  line-height: 1.15;
  margin-bottom: 30px;
  text-transform: none;
}

.hero-style1 .btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   12. SWIPER HERO SPECIFICS
   ---------------------------------------------------------- */
.th-hero-wrapper .swiper {
  width: 100%;
  height: 100%;
}

.th-hero-wrapper .swiper-slide {
  overflow: hidden;
}

.th-hero-wrapper .swiper-slide-active .hero-style1 * {
  animation: slideinup 0.8s ease forwards;
}

.th-hero-wrapper .swiper-slide-active .hero-style1 .sub-title {
  animation-delay: 0.2s;
}

.th-hero-wrapper .swiper-slide-active .hero-style1 .hero-title {
  animation-delay: 0.4s;
}

.th-hero-wrapper .swiper-slide-active .hero-style1 .btn-group {
  animation-delay: 0.6s;
}

/* ----------------------------------------------------------
   13. SLIDER NAVIGATION
   ---------------------------------------------------------- */
.th-swiper-custom {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-arrow {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e1e4e5;
  border-radius: 48px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  color: #113D48;
  text-decoration: none;
  font-size: 18px;
}

.slider-arrow:hover {
  background: var(--primary, #2a4bab);
  color: #fff;
  border-color: var(--primary, #2a4bab);
}

.slider-arrow img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s;
}

.slider-arrow:hover img {
  filter: brightness(0) invert(1);
}

.slider-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/* ----------------------------------------------------------
   14. BOOKING SECTION
   ---------------------------------------------------------- */
.booking-sec {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

.booking-form {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-form .input-wrap {
  padding: 10px;
}

.booking-form .form-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.booking-form .form-group .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #2a4bab);
  font-size: 20px;
  flex-shrink: 0;
}

.booking-form .form-group .search-input {
  flex: 1;
}

.booking-form .form-group .search-input label {
  display: block;
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-form .form-group .search-input select {
  border: none;
  font-size: 14px;
  color: #113D48;
  padding: 0;
  height: auto;
  font-weight: 500;
  width: 100%;
  outline: none;
  background: transparent;
}

.booking-form .form-btn button {
  width: 100%;
}

/* ----------------------------------------------------------
   15. DARK THEME SUPPORT
   ---------------------------------------------------------- */
[data-theme='light'] .th-header .sticky-wrapper.sticky {
  background: #fff;
}

:root:not([data-theme='light']) .th-header .sticky-wrapper.sticky {
  background: #0D1117;
}

:root:not([data-theme='light']) .th-header .sticky-wrapper.sticky .main-menu > ul > li > a {
  color: #e5e7eb;
}

:root:not([data-theme='light']) .th-header .sticky-wrapper.sticky .main-menu .sub-menu {
  background: #151A22;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

:root:not([data-theme='light']) .th-header .sticky-wrapper.sticky .main-menu .sub-menu li a {
  color: #9CA3AF;
}

:root:not([data-theme='light']) .th-header .sticky-wrapper.sticky .main-menu .sub-menu li a:hover {
  color: var(--primary-light, #3b7cf5);
  background: rgba(42, 75, 171, 0.15);
}

/* ----------------------------------------------------------
   16. RESPONSIVE — 1199px
   ---------------------------------------------------------- */
@media (max-width: 1199px) {
  .th-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .th-header .main-menu {
    display: none;
  }

  .main-menu.d-none.d-xl-inline-block {
    display: none !important;
  }

  .th-header .col-auto.d-none.d-xl-block {
    display: none !important;
  }

  .th-header .header-top .d-none.d-xl-inline-block {
    display: none;
  }

  .th-header .header-top .d-none.d-xl-block {
    display: none;
  }

  .hero-style1 .hero-title {
    font-size: 42px;
  }
}

/* ----------------------------------------------------------
   17. RESPONSIVE — 991px
   ---------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-style1 .hero-title {
    font-size: 36px;
  }

  .th-hero-wrapper.hero-1 {
    height: 75vh;
    min-height: 500px;
  }

  .hero-style1 {
    height: 75vh;
    min-height: 500px;
    padding-top: 90px;
  }

  .booking-sec {
    margin-top: -40px;
  }

  .booking-form .row {
    flex-direction: column;
  }
}

/* ----------------------------------------------------------
   18. RESPONSIVE — 767px
   ---------------------------------------------------------- */
@media (max-width: 767px) {
  .th-header .header-top {
    display: none;
  }

  .hero-style1 .hero-title {
    font-size: 30px;
  }

  .hero-style1 .sub-title.style1 {
    font-size: 28px;
  }

  .th-hero-wrapper.hero-1 {
    height: 65vh;
    min-height: 420px;
  }

  .hero-style1 {
    height: 65vh;
    min-height: 420px;
    padding-top: 80px;
  }

  .th-swiper-custom {
    bottom: 20px;
  }
}

/* ----------------------------------------------------------
   19. RESPONSIVE — 575px
   ---------------------------------------------------------- */
@media (max-width: 575px) {
  .hero-style1 .hero-title {
    font-size: 26px;
  }

  .th-hero-wrapper.hero-1 {
    height: 60vh;
    min-height: 380px;
  }

  .hero-style1 {
    height: 60vh;
    min-height: 380px;
    padding-top: 60px;
  }

  .hero-style1 .btn-group {
    flex-direction: column;
  }

  .hero-style1 .btn-group .th-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------------
   20. CATEGORY AREA & CATEGORY CARD
   ---------------------------------------------------------- */
.category-area {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.category-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  z-index: -1;
  transition: background 0.3s;
}

:root:not([data-theme='light']) .category-area::before {
  background: rgba(13, 17, 23, 0.94);
}

.category-area .title-area {
  margin-bottom: 50px;
}

.category-area .title-area .sub-title {
  display: inline-block;
  font-family: 'Montez', cursive;
  font-size: 32px;
  color: #FFB539;
  margin-bottom: 10px;
}

.category-area .title-area .sec-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #113D48;
  font-weight: 700;
}

:root:not([data-theme='light']) .category-area .title-area .sec-title {
  color: #fff;
}

.category-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
}

:root:not([data-theme='light']) .category-card {
  background: #151A22;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

:root:not([data-theme='light']) .category-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.category-card .box-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}

:root:not([data-theme='light']) .category-card .box-img {
  border-color: #1c222d;
}

.category-card:hover .box-img {
  transform: scale(1.05) rotate(5deg);
}

.category-card .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .box-img img {
  transform: scale(1.1);
}

.category-card .box-title {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 15px;
}

.category-card .box-title a {
  color: #113D48;
  text-decoration: none;
  transition: color 0.3s ease;
}

:root:not([data-theme='light']) .category-card .box-title a {
  color: #fff;
}

.category-card .box-title a:hover {
  color: var(--primary, #2a4bab);
}

.category-card .line-btn {
  margin-top: 10px;
}

/* ----------------------------------------------------------
   21. POPULAR DESTINATION AREA
   ---------------------------------------------------------- */
.destination-section {
  padding: 80px 0;
  position: relative;
}

.destination-section .title-area {
  margin-bottom: 50px;
}

.destination-section .title-area .sub-title {
  display: inline-block;
  font-family: 'Montez', cursive;
  font-size: 32px;
  color: #FFB539;
  margin-bottom: 10px;
}

.destination-section .title-area .sec-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #113D48;
  font-weight: 700;
}

:root:not([data-theme='light']) .destination-section .title-area .sec-title {
  color: #fff;
}

.destination-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.destination-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-box:hover .destination-img img {
  transform: scale(1.1);
}

.destination-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}

.destination-content .media-left {
  flex: 1;
}

.destination-content .box-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  line-height: 1.2;
}

.destination-content .box-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.destination-content .box-title a:hover {
  color: var(--primary-light, #3b7cf5);
}

.destination-subtitle {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ----------------------------------------------------------
   22. MOBILE MENU WRAPPER
   ---------------------------------------------------------- */
.mobile-menu-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
  padding: 40px 30px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}

.mobile-menu-wrapper.active .mobile-menu-content {
  right: 0;
}

:root:not([data-theme='light']) .mobile-menu-content {
  background: #151A22;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-close {
  border: none;
  background: rgba(0, 0, 0, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  color: #113D48;
  transition: background 0.3s, color 0.3s;
}

.mobile-menu-close:hover {
  background: var(--primary, #2a4bab);
  color: #fff;
}

:root:not([data-theme='light']) .mobile-menu-close {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

:root:not([data-theme='light']) .mobile-menu-close:hover {
  background: var(--primary-light, #3b7cf5);
}

.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-nav ul li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #113D48;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.3s, border-color 0.3s;
}

:root:not([data-theme='light']) .mobile-menu-nav ul li a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.mobile-menu-nav ul li a:hover {
  color: var(--primary, #2a4bab);
}

:root:not([data-theme='light']) .mobile-menu-nav ul li a:hover {
  color: var(--primary-light, #3b7cf5);
}

.mobile-menu-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #6B7280;
}

:root:not([data-theme='light']) .mobile-menu-contact {
  color: #9CA3AF;
}

.mobile-menu-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.mobile-menu-contact p i {
  color: var(--primary, #2a4bab);
  font-size: 16px;
}

:root:not([data-theme='light']) .mobile-menu-contact p i {
  color: var(--primary-light, #3b7cf5);
}

/* ----------------------------------------------------------
   23. PROJECT STATUS BADGES
   ---------------------------------------------------------- */
.project-status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary, #2a4bab);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.project-status-badge.status-ongoing {
  background: #FFB539;
  color: #113D48;
}

.project-status-badge.status-completed {
  background: #25D366;
  color: #fff;
}

/* ----------------------------------------------------------
   24. INTERACTIVE TURKEY MAP SECTION
   ---------------------------------------------------------- */
.map-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: -1;
  transition: background 0.3s;
}

:root:not([data-theme='light']) .map-section::before {
  background: rgba(13, 17, 23, 0.95);
}

.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .map-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* SVG Map Container */
.map-wrapper {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
  display: flex;
  justify-content: center;
  align-items: center;
}

:root:not([data-theme='light']) .map-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

#svg-turkiye-haritasi {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
}

/* Map Path Styling */
#svg-turkiye-haritasi path {
  fill: #e2e8f0;
  stroke: #ffffff;
  stroke-width: 1.5;
  stroke-linejoin: round;
  cursor: pointer;
  transition: fill 0.3s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s, filter 0.3s, transform 0.2s;
}

:root:not([data-theme='light']) #svg-turkiye-haritasi path {
  fill: #1e293b;
  stroke: #0d1117;
}

/* Hover and Active State Colors */
#svg-turkiye-haritasi path:hover {
  fill: var(--primary-light, #3b7cf5) !important;
  stroke: #ffffff;
  filter: drop-shadow(0 0 8px rgba(59, 124, 245, 0.6));
  z-index: 5;
}

#svg-turkiye-haritasi g.active-city path {
  fill: var(--primary, #2a4bab) !important;
  stroke: #ffffff;
  stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(42, 75, 171, 0.7));
}

/* Interactive Cities (With Projects) */
#svg-turkiye-haritasi g.has-projects path {
  fill: rgba(42, 75, 171, 0.22) !important;
  stroke: var(--primary, #2a4bab) !important;
  stroke-width: 2px !important;
  filter: drop-shadow(0 0 4px rgba(42, 75, 171, 0.15));
}

:root:not([data-theme='light']) #svg-turkiye-haritasi g.has-projects path {
  fill: rgba(59, 124, 245, 0.18) !important;
  stroke: var(--primary-light, #3b7cf5) !important;
  stroke-width: 2px !important;
  filter: drop-shadow(0 0 6px rgba(59, 124, 245, 0.25));
}

/* Pulsing Dots in SVG */
.map-pulse-dot {
  fill: var(--primary, #2a4bab);
  pointer-events: none;
  filter: drop-shadow(0 0 4px var(--primary, #2a4bab));
}

.map-pulse-ring {
  fill: none;
  stroke: var(--primary, #2a4bab);
  stroke-width: 2px;
  pointer-events: none;
  animation: svgPulse 2s infinite cubic-bezier(0.25, 0, 0, 1);
}

:root:not([data-theme='light']) .map-pulse-dot {
  fill: var(--primary-light, #3b7cf5);
  filter: drop-shadow(0 0 6px var(--primary-light, #3b7cf5));
}

:root:not([data-theme='light']) .map-pulse-ring {
  stroke: var(--primary-light, #3b7cf5);
}

@keyframes svgPulse {
  0% {
    r: 4px;
    opacity: 1;
    stroke-width: 3px;
  }
  100% {
    r: 25px;
    opacity: 0;
    stroke-width: 1px;
  }
}

/* Map Details Card Panel */
.map-details-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

:root:not([data-theme='light']) .map-details-card {
  background: rgba(21, 26, 34, 0.6);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.map-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

:root:not([data-theme='light']) .map-details-header {
  border-color: rgba(255, 255, 255, 0.08);
}

.map-details-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #113D48;
  margin: 0;
}

:root:not([data-theme='light']) .map-details-title {
  color: #ffffff;
}

.map-details-badge {
  background: rgba(42, 75, 171, 0.08);
  color: var(--primary, #2a4bab);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

:root:not([data-theme='light']) .map-details-badge {
  background: rgba(59, 124, 245, 0.15);
  color: var(--primary-light, #3b7cf5);
}

/* Projects List inside Card */
.map-projects-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: 380px;
  padding-right: 5px;
  flex: 1;
}

/* Custom Scrollbar for Project List */
.map-projects-list::-webkit-scrollbar {
  width: 5px;
}

.map-projects-list::-webkit-scrollbar-track {
  background: transparent;
}

.map-projects-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

:root:not([data-theme='light']) .map-projects-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
}

/* Project Item inside Card */
.map-project-item {
  display: flex;
  gap: 20px;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 15px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

:root:not([data-theme='light']) .map-project-item {
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.03);
}

.map-project-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(42, 75, 171, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

:root:not([data-theme='light']) .map-project-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.map-project-thumb {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.map-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.map-project-item:hover .map-project-thumb img {
  transform: scale(1.1);
}

.map-project-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.map-project-cat {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
}

:root:not([data-theme='light']) .map-project-cat {
  color: #9CA3AF;
}

.map-project-status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.map-project-status.status-ongoing {
  background: rgba(255, 181, 57, 0.15);
  color: #FFB539;
}

.map-project-status.status-completed {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.map-project-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #113D48;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

:root:not([data-theme='light']) .map-project-title {
  color: #ffffff;
}

.map-project-desc {
  font-size: 13px;
  color: #6B7280;
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

:root:not([data-theme='light']) .map-project-desc {
  color: #9CA3AF;
}

.map-project-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary, #2a4bab);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.map-project-link::after {
  content: '→';
  transition: transform 0.3s;
}

.map-project-link:hover {
  color: var(--primary-light, #3b7cf5);
}

.map-project-link:hover::after {
  transform: translateX(4px);
}

/* Empty State / No Projects Styling */
.map-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  flex: 1;
}

.map-empty-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.02);
  color: #6b72808c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

:root:not([data-theme='light']) .map-empty-icon {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
}

.map-empty-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #113D48;
  margin: 0 0 10px 0;
}

:root:not([data-theme='light']) .map-empty-title {
  color: #ffffff;
}

.map-empty-text {
  font-size: 14px;
  color: #6B7280;
  max-width: 320px;
  margin: 0 0 25px 0;
  line-height: 1.5;
}

:root:not([data-theme='light']) .map-empty-text {
  color: #9CA3AF;
}

/* Tooltip Custom Styling */
.map-tooltip {
  position: absolute;
  background: rgba(17, 61, 72, 0.95);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transform: translate(-50%, -100%);
  margin-top: -10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.map-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -100%) translateY(-5px);
}

.map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(17, 61, 72, 0.95) transparent transparent transparent;
}

/* Animation triggers for AJAX card update */
.fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}

/* ==========================================================
   INTERACTIVE PROMOTIONAL VIDEO FLOATING BUTTON
   ========================================================== */
.slider-promo-video {
  position: absolute;
  top: 140px;
  right: 5%;
  z-index: 15;
}

.promo-video-btn {
  display: block;
  position: relative;
  width: 120px;
  height: 120px;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-video-btn:hover {
  transform: scale(1.08);
}

/* Rotating Text SVG Wrapper */
.rotating-text-wrap {
  width: 100%;
  height: 100%;
  animation: rotateCircularText 20s linear infinite;
  transform-origin: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

/* When hover on button, rotate text slightly faster or change color */
.promo-video-btn:hover .rotating-text-wrap {
  color: #FFB539; /* Premium gold accent on hover */
}

@keyframes rotateCircularText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Play Icon Circle in the center */
.play-icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(42, 75, 171, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.play-icon-inner::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.promo-video-btn:hover .play-icon-inner {
  background: linear-gradient(135deg, #FFB539, #e69d20); /* Gold theme play button on hover */
  box-shadow: 0 8px 25px rgba(230, 157, 32, 0.5);
  color: #000000;
}

.promo-video-btn:hover .play-icon-inner::before {
  inset: -12px;
  border-color: rgba(255, 181, 57, 0.4);
  transform: scale(1.05);
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .slider-promo-video {
    top: 120px;
    right: 3%;
  }
  .promo-video-btn {
    width: 100px;
    height: 100px;
  }
  .play-icon-inner {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .slider-promo-video {
    top: auto;
    bottom: 120px; /* Positioned near bottom so it does not overlap mobile header/menu */
    right: 20px;
  }
  .promo-video-btn {
    width: 90px;
    height: 90px;
  }
  .play-icon-inner {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}




