@charset "UTF-8";
/* Fonts */
:root {
  --default-font: "Roboto", "Ubuntu Sans", "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu Sans",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #051e23;
  --heading-color: #1c4b56; 
  --accent-color: #f75815; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
  --nav-dropdown-border-color: #e0e0e0; 
  --black-color: #000000; 
  --button-secondary-color: #6c757d; 
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);  
  --nav-hover-color: #ffffff; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #051e23; 
  --nav-dropdown-hover-color: #f75815; 
}

.light-background {
  --background-color: #f5f5f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.img-background {
  background-image: url('<?php echo $baseUrl;?>assets/img/hero/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.typed-text {
  color: var(--accent-color);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}



.tooltip {
  --bs-tooltip-font-size: 0.75rem; 
  --bs-tooltip-padding-x: 0.5rem;   
  --bs-tooltip-padding-y: 0.25rem;  
  --bs-tooltip-arrow-width: 0.6rem; 
  --bs-tooltip-arrow-height: 0.3rem; 
  
   --bs-tooltip-bg: var(--accent-color);
   --bs-tooltip-color: var(--bs-white);
}

/* Style */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 300;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Header */
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--default-color);
  background-color: var(--background-color);
    padding: 0px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
    border-radius: 0 0 50px 50px; 
  padding: 5px 25px;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 64px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  padding-left: 5px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .btn-login,
.header .btn-login:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-login:hover,
.header .btn-login:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.header .btn-login i {
  margin-right: 5px; 
}


.header .btn-login[href*="/Login"]:hover i,
.header .btn-login.active-login-btn[href*="/Login"] i {
  animation: bx-fade-right .8s cubic-bezier(.77,0,.18,1) infinite;
}


.header .btn-login[href*="/Logout"]:hover i,
.header .btn-login.active-login-btn[href*="/Logout"] i {
  animation: bx-fade-left .8s cubic-bezier(.77,0,.18,1) infinite;
}


.header .btn-login.active-login-btn,
.header .btn-login:active {
  font-weight: bold;
}

@media (max-width: 1200px) {
  .header {
    padding-top: none /*10px;*/
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-login {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


@keyframes bx-fade-right {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.5;
    }
}


@keyframes bx-fade-left {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-5px);
        opacity: 0.5;
    }
}


.custom-alert {
    background-color: var(--background-color, #ffffff); 
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px; 
    
    margin-bottom: 1rem; 
}


.custom-alert-success {
    border: 1px solid #28a745; 
    color: #28a745; 
}


.custom-alert-error {
    border: 1px solid #dc3545; 
    color: #dc3545; 
}


.custom-alert-notice {
    border: 1px solid #ffc107; 
    color: #ffc107; 
}


.custom-alert-warning {
    border: 1px solid #ffc107; 
    color: #ffc107; 
}


.custom-alert i {
    font-size: 20px; 
}



.alert.custom-alert {
    background-color: var(--background-color, #ffffff) !important; 
    padding: 15px !important; 
}


.custom-alert .btn-close {
    color: inherit; 
    opacity: 0.7; 
}

.custom-alert .btn-close:hover {
    opacity: 1; 
}


/* Nav Menu */
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 10px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-right: 5px; 
    margin-left: 0;
    transition: 0.3s;
  }

  
  .navmenu .dropdown > a .toggle-dropdown {
    margin-left: 5px; 
  }

  .navmenu .dropdown:hover > a .toggle-dropdown {
    transform: rotate(180deg);
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: none; /* 0px 0px 30px rgba(0, 0, 0, 0.1); */
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 5px 10px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    
    justify-content: flex-start;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
    margin-right: 5px; 
    margin-left: 0;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  
  .navmenu .dropdown .dropdown-divider-wrapper {
    
    padding: 0;
    margin: 0;
    height: auto; 
    overflow: hidden; 
    pointer-events: none; 
  }

  .navmenu .dropdown .dropdown-divider {
    border: 0; 
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%); 
    margin: 0 10px;  
    height: 0; 
    overflow: hidden; 
    box-sizing: content-box; 
    display: block; 
  }

  
  .navmenu .dropdown .dropdown-divider-wrapper {
      line-height: 0; 
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color); 
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    
    justify-content: flex-start; 
    white-space: nowrap;
    transition: 0.3s;
  }

  
  .navmenu .dropdown > a span {
    display: flex;
    align-items: center;
	gap: 10px;
  }

  
  .navmenu .dropdown > a span i {
    width: auto; 
    height: auto; 
    margin: 0; 
  }
  
    
  .navmenu .dropdown > a .toggle-dropdown {
    
    right: 15px;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-right: 5px; 
    margin-left: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  
  .navmenu .dropdown > a {
    position: relative; 
    
    padding-right: 50px; 
  }

  .navmenu .dropdown > a .toggle-dropdown {
    position: absolute; 
    right: 15px; 
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0; 
  }

  
  .navmenu .dropdown ul a {
    justify-content: flex-start; 
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--nav-color); 
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  
  .btn-login i {
    margin-right: 5px; 
  }

  
  .navmenu .dropdown .dropdown-divider-wrapper {
      
      padding: 0; 
      margin: 0; 
      height: auto;
      overflow: hidden;
      pointer-events: none;
  }

  .navmenu .dropdown .dropdown-divider {
      border: 0;
      border-top: 1px solid var(--nav-dropdown-border-color, #dee2e6); 
      margin: 0.5rem 20px; 
      height: 0;
      overflow: hidden;
      box-sizing: content-box;
      display: block;
  }

  .navmenu .dropdown .dropdown-divider-wrapper {
      line-height: 0;
  }

}




@media (min-width: 1200px) {
  .navmenu .dropdown .no-link {
    cursor: default;
    text-decoration: none;
    background-color: transparent !important;
    color: var(--accent-color); 
    font-weight: 700;
  }

  .navmenu .dropdown .no-link:hover,
  .navmenu .dropdown .no-link:focus {
    color: var(--nav-dropdown-color); 
    background-color: transparent !important;
  }
}



@media (max-width: 1199px) {
  .navmenu .dropdown .no-link {
    cursor: default;
    text-decoration: none;
    background-color: transparent !important;
    color: var(--accent-color); 
    font-weight: 700;
  }

  .navmenu .dropdown .no-link:hover,
  .navmenu .dropdown .no-link:focus {
    color: var(--default-color); 
    background-color: transparent !important;
  }
}


@media (max-width: 1199px) {

    
    .user-info-item .user-label-mobile {
        display: flex;
        align-items: center;
        gap: 10px; 
    }

    
    .navmenu .dropdown ul .user-info-item > .no-link {
        
        padding: 5px 20px;
    }

   .user-info-item .user-label-mobile i {
        
        width: 30px; 
        height: 30px; 
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        
        
        margin: 0 !important;
        
        
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--default-color); 
    }

    
    .user-info-item .user-label-mobile .username-text {
        font-weight: bold;
        line-height: 1; 
    }

    
    
}


/* Footer */
.footer {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--contrast-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  background: var(--surface-color);
  padding: 0 25px;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  
  border-radius: 50px 50px 0 0;
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
  background: var(--surface-color); 
  border-radius: 50px 50px 0 0; 
  
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--contrast-color);
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
  transition: 0.3s;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 5px 0;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 75%);
  background: color-mix(in srgb, var(--black-color), transparent 50%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: color-mix(in srgb, var(--accent-color), transparent 2%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
  position: absolute; 
}


.scroll-top box-icon {
  width: 24px; 
  height: 24px;
  position: absolute; 
  
}


.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


.scroll-top .progress-circle {
  transform: rotate(-90deg);
}

.scroll-top .progress-background {
  stroke-width: 5;
  stroke: var(--accent-color);
  fill: none;
}

.scroll-top .progress-bar {
  stroke-width: 6;
  stroke: color-mix(in srgb, var(--contrast-color), transparent 10%);
  fill: none;
  stroke-dasharray: 283; 
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.4s ease-out;
}



@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Page Titles & Breadcrumbs */
.page-title {
  color: var(--default-color);
  background-color: var(--background-color); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  
  border-radius: 0;
  margin-bottom: 0; 
}


body.index-page .page-title {
  padding: 160px 0 80px 0;
}


body.default-page .page-title {
  padding: 100px 0 20px 0;
}


body.input-page .page-title {
  padding: 30px 0 5px 0;
}

.page-title:before {
  content: "";
  
  background-color: color-mix(in srgb, var(--background-color, #000), transparent 50%);
  position: absolute;
  inset: 0;
  border-radius: 0; 
}

.page-title .container {
  
  background-color: transparent;
  border-radius: 0;
  padding: 0; 
  max-width: none; 
  margin: 0 auto;
  box-shadow: none;
  position: relative;
  z-index: auto;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  
  color: #fff; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3); 
}


.page-title h4 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 32px;
  color: #fff; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3); 
}


.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 8px 20px; 
  margin: 0px auto 0 auto; 
  font-size: 16px;
  font-weight: 400;


  background-color: rgba(255, 255, 255, 0.2); 
  border-radius: 25px; 
  max-width: fit-content; 
  box-shadow: none
}

.page-title .breadcrumbs ol li {
  padding: 0;
  margin: 0;
}

.page-title .breadcrumbs ol li a {
  color: var(--accent-color) !important; 
  text-decoration: none; 
  transition: color 0.3s ease; 
}


.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 8px 20px; 
  margin: 15px auto 0 auto; 
  font-size: 16px;
  font-weight: 400;

  
  background-color: rgba(255, 255, 255, 0.2); 
  border-radius: 25px; 
  max-width: fit-content; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}


.page-title .breadcrumbs ol li.breadcrumb-item {
  display: flex; 
  align-items: center; 
  white-space: nowrap; 
  
}


.page-title .breadcrumbs ol li {
  padding: 0;
  margin: 0;
}


.page-title .breadcrumbs ol li a {
 color: rgba(255, 255, 255, 0.7) !important; 
  text-decoration: none; 
  transition: color 0.3s ease; 
}


.page-title .breadcrumbs ol li a:hover {
  color: var(--accent-color) !important; 
}

.page-title .breadcrumbs ol li+li {
  padding-left: none; 
}

.page-title .breadcrumbs ol li+li::before {
  font-family: "bootstrap-icons";
  content: "\F27B";
  display: inline-block;
  padding-right: none; 
  color: rgba(255,255,255, 0.7) !important;
  vertical-align: middle;
}



.page-title .breadcrumbs ol li.current a {
  
  font-weight: 500; 
  
}

/* Login Page Styling */
  .login-container {
    padding: 20px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
  }

  .login-card {
    max-width: 400px;
    width: 100%;
    margin: 5px auto;
    background-color: var(--surface-color);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .login-card:hover {
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
    
  }

  .login-card-body {
    padding: 20px 20px;
  }

  .login-title-section {
    padding-bottom: 0px;
    text-align: center;
  }
  
  .login-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0px;
  }
  
  .login-subtitle {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }

  /* Form Styling */
  .login-form .form-group {
    margin-bottom: 10px;
  }

  /* Floating Label Styling */
  .login-form .form-floating {
    position: relative;
  }
  
  .login-form .form-floating .form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    height: auto;
  }

  .login-form .form-floating > .form-control:focus,
  .login-form .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
  }

  .login-form  .form-floating > .form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
  }

  .login-form  .form-floating > .form-label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .login-form  .form-floating > .form-control:focus ~ .form-label,
  .login-form  .form-floating > .form-control:not(:placeholder-shown) ~ .form-label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    opacity: 0.65;
  }
  
  /* Form Control General Styling */
  .login-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--default-color);
  }

  .login-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
    outline: none;
  }

  /* Checkbox and Link Styling */
  .login-form .form-check {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .login-form .form-check-input {
    margin-right: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .login-form .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
  }

  .login-form .form-check-label {
    font-size: 14px;
    color: var(--default-color);
  }
  
  .login-form .login-link {
    font-size: 14px;
    color: var(--accent-color);
    transition: all 0.3s ease;
  }

  .login-form .login-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 20%);
    font-weight: bold; 
  }

  /* Error and Validation Styling */
  .login-form .errorMessage {
    color: #df1529;
    font-size: 12px;
    margin-top: 5px;
  }

  /* Button Styling */
  .login-form .btn-login {
    width: 100%;
    padding: 6px 10px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .login-form .btn-login:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
  }

  /* Responsive Adjustments */
  @media (max-width: 576px) {
    .login-card-body {
      padding: 30px 20px;
    }
  }


.password-toggle-container {
  position: relative;
  width: 100%;
}

.password-toggle-btn {
  position: absolute;
  right: 10px; 
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10; 
}

.password-toggle-btn:focus {
  outline: none;
}

.eye-icon {
  font-size: 1.25rem; 
  color: color-mix(in srgb, var(--accent-color), transparent 50%); 
}

/* Search Bar */
.search-bar-container {
  position: fixed;
  top: 80px; 
  width: 100%;
  
  padding: 3px 0; 
  
  z-index: 996;
  
}

.search-bar-container .search-form {
  max-width: 350px; 
  margin: 0 auto;
  border-radius: 40px; 
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 10px; 
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.search-bar-container .search-form input[type="text"] {
  border: none;
  padding: 5px 7px; 
  width: 100%;
  background: transparent;
  color: var(--default-color);
  font-size: 13px; 
}

.search-bar-container .search-form input[type="text"]:focus {
  outline: none;
  box-shadow: none;
}

.search-bar-container .search-form button {
  border: none;
  background: transparent;
  color: var(--accent-color);
  padding: 5px 10px; 
  cursor: pointer;
  font-size: 15px; 
  transition: 0.3s;
}

.search-bar-container .search-form button:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}


body.tours-page .main {
  
  padding-top: calc(90px + 35px + 15px); 
}

@media (max-width: 1200px) { 
  .search-bar-container {
    top: 95px; 
    padding: 2px 0; 
  }

  .search-bar-container .search-form {
    max-width: 85%; 
    padding: 2px 8px;
  }

  body.profil-page .main {
    
    padding-top: calc(60px + 30px + 15px); 
  }
}


section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20 0 20 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}


.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
    border-radius: 16px 16px 0 0;
  font-family: var(--default-font);
}

.form-input .section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
    border-radius: 0 0 16px 16px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

.section-subtitle {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-subtitle div .description-title {
  color: var(--accent-color);
}


.profil-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px 0;
}

.profil-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.profil-hero .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profil-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 60%) 0%, color-mix(in srgb, var(--background-color), transparent 80%) 50%, color-mix(in srgb, var(--background-color), transparent 90%) 100%);
  z-index: 1;
}

.profil-hero .hero-text .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.profil-hero .hero-text .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.profil-hero .hero-text .hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.profil-hero .hero-text .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.profil-hero .hero-text .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.profil-hero .hero-text .hero-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.profil-hero .hero-text .hero-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

.profil-hero .booking-form-wrapper .booking-form {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.profil-hero .booking-form-wrapper .booking-form .form-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.profil-hero .booking-form-wrapper .booking-form label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.profil-hero .booking-form-wrapper .booking-form .form-control,
.profil-hero .booking-form-wrapper .booking-form .form-select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}

.profil-hero .booking-form-wrapper .booking-form .form-control:focus,
.profil-hero .booking-form-wrapper .booking-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: none;
}

.profil-hero .booking-form-wrapper .booking-form .form-control::placeholder,
.profil-hero .booking-form-wrapper .booking-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.profil-hero .booking-form-wrapper .booking-form .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.profil-hero .booking-form-wrapper .booking-form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .profil-hero .hero-text {
    text-align: center;
    margin-bottom: 3rem;
  }

  .profil-hero .hero-text .hero-title {
    font-size: 2.5rem;
  }

  .profil-hero .hero-text .hero-subtitle {
    font-size: 1.1rem;
  }

  .profil-hero .booking-form {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .profil-hero .hero-text .hero-title {
    font-size: 2rem;
  }

  .profil-hero .hero-text .hero-subtitle {
    font-size: 1rem;
  }

  .profil-hero .hero-text .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .profil-hero .hero-text .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }

  .profil-hero .booking-form-wrapper .booking-form {
    padding: 1.5rem;
  }
}



.profile-lists .profile-list {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.profile-lists .profile-list:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.profile-lists .profile-list .destination-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

.profile-lists .profile-list .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.profile-lists .profile-list .destination-overlay:hover img {
  transform: scale(1.08);
}

.profile-lists .profile-list .destination-overlay::before {
  content: "";
  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) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.profile-lists .profile-list .destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: white;
}

.profile-lists .profile-list .destination-info .destination-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.profile-lists .profile-list .destination-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.profile-lists .profile-list .destination-info .location {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-lists .profile-list .destination-info .location i {
  color: var(--accent-color);
  font-size: 8px;
}

.profile-lists .profile-list .destination-info .description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.profile-lists .profile-list .destination-info .destination-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 14px;
}

.profile-lists .profile-list .destination-info .destination-meta .tours-count,
.profile-lists .profile-list .destination-info .destination-meta .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-lists .profile-list .destination-info .destination-meta .tours-count i,
.profile-lists .profile-list .destination-info .destination-meta .rating i {
  color: var(--accent-color);
}

.profile-lists .profile-list .destination-info .price-info {
  margin-bottom: 25px;
}

.profile-lists .profile-list .destination-info .price-info .starting-from {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.profile-lists .profile-list .destination-info .price-info .amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
}

.profile-lists .profile-list .destination-info .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.profile-lists .profile-list .destination-info .explore-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.profile-lists .profile-list .destination-info .explore-btn:hover i {
  transform: translateX(3px);
}

.profile-lists .profile-list .destination-info .explore-btn i {
  transition: transform 0.3s ease;
}

.profile-lists .compact-destination {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: none; 
  border: solid 1px color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: all 0.3s ease;
  height: 180px;
}

.profile-lists .compact-destination:hover {
  box-shadow: none; 
  border: solid 1px color-mix(in srgb, var(--accent-color), transparent 50%);
  transform: translateX(8px);
}

.profile-lists .compact-destination .destination-image {
  flex-shrink: 0;
  width: 140px;
  position: relative;
  overflow: hidden;
}

.profile-lists .compact-destination .destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-lists .compact-destination .destination-image .badge-offer {
  position: absolute;
  top: 0;
  left: 20px;
  right: 0; 
  
  color: white;
  padding: 6px 12px;
  border-radius: 0 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}

.profile-lists .compact-destination .destination-image .badge-offer.limited {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
}

.profile-lists .compact-destination .destination-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-width: 0;
}

.profile-lists .compact-destination .destination-details h4 {
  min-height:18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.2;
  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  flex-shrink: 1; 
}

.profile-lists .compact-destination .destination-details .location {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-lists .compact-destination .destination-details .location i {
  color: var(--accent-color);
  font-size: 12px;
}

.profile-lists .compact-destination .destination-details .brief {
  min-height:52px;
  font-size: 13px;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  
  
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 

  
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-lists .compact-destination .destination-details .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 12px;
}

.profile-lists .compact-destination .destination-details .btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  margin-top: 10px;
}

.profile-lists .compact-destination .destination-details .stats-row .tour-count,
.profile-lists .compact-destination .destination-details .stats-row .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 

  
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-lists .compact-destination .destination-details .stats-row .tour-count i,
.profile-lists .compact-destination .destination-details .stats-row .rating i {
  color: var(--accent-color);
}

.profile-lists .compact-destination .destination-details .stats-row .rating i {
  color: #ffc107;
}

.profile-lists .compact-destination .destination-details .stats-row .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 14px;
}

.profile-lists .compact-destination .destination-details .quick-link {
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 16px;
  border: none;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.profile-lists .compact-destination .destination-details .quick-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  gap: 8px;
}

.profile-lists .compact-destination .destination-details .quick-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.inline-link {
    display: inline-block;
    margin-right: 10px; 
}

.profile-lists .compact-destination:hover .destination-image img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .profile-lists .profile-list {
    height: 500px;
  }

  .profile-lists .profile-list .destination-info {
    padding: 30px;
  }

  .profile-lists .profile-list .destination-info h3 {
    font-size: 28px;
  }

  .profile-lists .profile-list .destination-info .price-info .amount {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .profile-lists .profile-list {
    height: 450px;
    margin-bottom: 30px;
  }

  .profile-lists .profile-list .destination-info {
    padding: 25px;
  }

  .profile-lists .profile-list .destination-info h3 {
    font-size: 24px;
  }

  .profile-lists .profile-list .destination-info .destination-meta {
    flex-direction: column;
    gap: 10px;
  }

  .profile-lists .compact-destination {
    flex-direction: column;
    height: auto;
  }

  .profile-lists .compact-destination .destination-image {
    width: 100%;
    height: 160px;
  }

  .profile-lists .compact-destination .destination-details {
    padding: 20px;
  }

  .profile-lists .compact-destination .destination-details .stats-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.profile-lists .tour-filters {
  background-color: var(--surface-color);
  padding: 1rem 1rem 0 1rem;
  border-radius: 0 0 16px 16px;
  box-shadow: none; 
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.profile-lists .tour-filters:hover {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.profile-lists .tour-filters .form-control,
.profile-lists .tour-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0.5rem;
}

.profile-lists .tour-filters .form-control:focus,
.profile-lists .tour-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}


/* Gaya default tombol refresh */
.tour-filters .input-group .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

/* Gaya hover untuk tombol refresh menggunakan variabel CSS */
.tour-filters .input-group .btn-outline-secondary:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.border-dashed {
    border-style: dashed !important;
    border-width: 1px !important; 
    border-color: var(--default-color);
}


/* CSS untuk mengubah gambar menjadi hitam putih */
.grayscale-img {
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
}
/* Efek hover untuk tampilan normal kembali */
.grayscale-img:hover {
    filter: grayscale(0%);
}
/* CSS untuk membuat teks menjadi agak buram seperti disabled */
.text-muted-custom {
    color: #6c757d !important; 
    opacity: 0.7;
}

/* About Section */
.profil-about .intro-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .profil-about .intro-content h2 {
    font-size: 2.2rem;
  }
}

.profil-about .intro-content .lead {
  font-size: 1.3rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-weight: 400;
}

.profil-about .hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.profil-about .hero-image img {
  transition: transform 0.5s ease;
}

.profil-about .hero-image img:hover {
  transform: scale(1.05);
}

.profil-about .hero-image .floating-stats {
  position: absolute;
  bottom: -30px;
  right: -30px;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .profil-about .hero-image .floating-stats {
    bottom: -20px;
    right: -20px;
    gap: 0.5rem;
  }
}

.profil-about .hero-image .floating-stats .stat-item {
  background: var(--surface-color);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  min-width: 80px;
}

@media (max-width: 768px) {
  .profil-about .hero-image .floating-stats .stat-item {
    padding: 1rem 0.8rem;
    min-width: 70px;
  }
}

.profil-about .hero-image .floating-stats .stat-item .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

@media (max-width: 768px) {
  .profil-about .hero-image .floating-stats .stat-item .number {
    font-size: 1.4rem;
  }
}

.profil-about .hero-image .floating-stats .stat-item .label {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 0.3rem;
}

.profil-about .story-content .story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.profil-about .story-content .story-badge i {
  font-size: 1.1rem;
}

.profil-about .story-content h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .profil-about .story-content h3 {
    font-size: 2rem;
  }
}

.profil-about .story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.profil-about .story-content .mission-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: none; /* 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);*/
}

.profil-about .story-content .mission-box .mission-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.profil-about .story-content .mission-box .mission-text h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.profil-about .story-content .mission-box .mission-text p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.profil-about .features-grid .section-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .profil-about .features-grid .section-header h3 {
    font-size: 2rem;
  }
}

.profil-about .features-grid .section-header p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.profil-about .features-grid .feature-card {
  height: 400px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.profil-about .features-grid .feature-card .feature-front,
.profil-about .features-grid .feature-card .feature-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  
}

.profil-about .features-grid .feature-card .feature-front {
  background: var(--surface-color);
/*box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);*/
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.profil-about .features-grid .feature-card .feature-front .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.profil-about .features-grid .feature-card .feature-front h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.profil-about .features-grid .feature-card .feature-front p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 10; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profil-about .features-grid .feature-card .feature-back {
  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: rotateY(180deg);
}

.profil-about .features-grid .feature-card .feature-back p {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 12; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profil-about .features-grid .feature-card:hover .feature-front {
  transform: rotateY(180deg);
  border-color: var(--accent-color);
}

.profil-about .features-grid .feature-card:hover .feature-back {
  transform: rotateY(0deg);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.profil-about .journey-timeline .timeline-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .profil-about .journey-timeline .timeline-header h3 {
    font-size: 2rem;
  }
}

.profil-about .journey-timeline .timeline-header p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.profil-about .journey-timeline .timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.profil-about .journey-timeline .timeline-container .timeline-milestone {
  position: relative;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .profil-about .journey-timeline .timeline-container .timeline-milestone {
    margin-bottom: 3rem;
  }
}

.profil-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
}

@media (max-width: 768px) {
  .profil-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
  }
}

.profil-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (min-width: 769px) {
  .profil-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
    width: 40%;
    margin-top: -50px;
  }
}

.profil-about .journey-timeline .timeline-container .timeline-milestone .milestone-content h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.profil-about .journey-timeline .timeline-container .timeline-milestone .milestone-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 769px) {
  .profil-about .journey-timeline .timeline-container .timeline-milestone:nth-child(odd) .milestone-content {
    margin-left: 0;
  }
}

@media (min-width: 769px) {
  .profil-about .journey-timeline .timeline-container .timeline-milestone:nth-child(even) .milestone-content {
    margin-left: 60%;
  }
}

.profil-about .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--heading-color), transparent 10%)), url("assets/img/travel/showcase-12.webp") center/cover;
  border-radius: 25px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.profil-about .cta-banner .cta-overlay {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

@media (max-width: 768px) {
  .profil-about .cta-banner .cta-overlay {
    padding: 2rem;
  }
}

.profil-about .cta-banner .cta-content {
  text-align: center;
  color: var(--contrast-color);
}

.profil-about .cta-banner .cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .profil-about .cta-banner .cta-content h3 {
    font-size: 2rem;
  }
}

.profil-about .cta-banner .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.profil-about .cta-banner .cta-content .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.profil-about .cta-banner .cta-content .cta-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.profil-about .cta-banner .cta-content .cta-buttons .btn.btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.profil-about .cta-banner .cta-content .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.profil-about .cta-banner .cta-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.profil-about .cta-banner .cta-content .cta-buttons .btn.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.profil-about .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-about .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.profil-about .feature-card .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-about .feature-card .btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}


.profil-destination-details  .tour-hero {
  margin-bottom: 60px;
}

.profil-destination-details  .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.profil-destination-details  .tour-hero .hero-image-wrapper img {
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .profil-destination-details  .tour-hero .hero-image-wrapper img {
    height: 350px;
  }
}

.profil-destination-details  .tour-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--contrast-color);
  padding: 60px 40px 40px;
}

@media (max-width: 768px) {
  .profil-destination-details  .tour-hero .hero-overlay {
    padding: 40px 20px 20px;
  }
}

.profil-destination-details  .tour-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .profil-destination-details  .tour-hero .hero-content h1 {
    font-size: 2rem;
  }
}

.profil-destination-details  .tour-hero .hero-content .hero-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .profil-destination-details  .tour-hero .hero-content .hero-meta {
    gap: 15px;
  }
}

.profil-destination-details  .tour-hero .hero-content .hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.profil-destination-details  .tour-hero .hero-content .hero-meta span i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.profil-destination-details  .tour-hero .hero-content .hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .profil-destination-details  .tour-hero .hero-content .hero-tagline {
    font-size: 1rem;
  }
}

.profil-destination-details  .tour-hero .hero-content .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-destination-details  .tour-hero .hero-content .btn-book-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-destination-details  .tour-hero .hero-content .btn-book-secondary {
  background: var(--button-secondary-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-destination-details  .tour-hero .hero-content .btn-book-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 30%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.profil-destination-details  .tour-hero .hero-content .btn-book-secondary:hover {
  background: color-mix(in srgb, var(--button-secondary-color), black 30%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}


.profil-destination-details-old .destination-hero {
  margin-bottom: 80px;
}

.profil-destination-details-old .destination-hero .hero-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .profil-destination-details-old .destination-hero .hero-image {
    height: 350px;
    border-radius: 15px;
  }
}

.profil-destination-details-old .destination-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profil-destination-details-old .destination-hero .hero-image .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.profil-destination-details-old .destination-hero .hero-image .hero-content {
  text-align: center;
  color: var(--contrast-color);
}

.profil-destination-details-old .destination-hero .hero-image .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .profil-destination-details-old .destination-hero .hero-image .hero-content h1 {
    font-size: 2.5rem;
  }
}

.profil-destination-details-old .destination-hero .hero-image .hero-content .hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

.profil-destination-details .destination-overview {
  margin-bottom: 60px;
  text-align: justify; 
}

.profil-destination-details .destination-overview h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.profil-destination-details .destination-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--default-color);
}

.profil-destination-details .destination-overview-old {
  margin-bottom: 40px;
  text-align: center;
}

.profil-destination-details .destination-overview-old h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.profil-destination-details .destination-overview-old p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);

}

.profil-destination-details .destination-overview .tour-highlights {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.profil-destination-details .destination-overview .tour-highlights h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.profil-destination-details .attractions-section {
  margin-bottom: 80px;
}

.profil-destination-details .attractions-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.profil-destination-details .attractions-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.profil-destination-details .attractions-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-destination-details .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none; 
  border: solid 1px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.3s;
  height: 100%;
}

.profil-destination-details .attractions-section .attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border: solid 1px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.profil-destination-details .attractions-section .attraction-item .attraction-image {
  height: 200px;
  overflow: hidden;
}

.profil-destination-details .attractions-section .attraction-item .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.profil-destination-details .attractions-section .attraction-item .attraction-content {
  padding: 25px;
}

.profil-destination-details .attractions-section .attraction-item .attraction-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profil-destination-details .attractions-section .attraction-item .attraction-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profil-destination-details .attractions-section .attraction-item:hover .attraction-image img {
  transform: scale(1.1);
}

.profil-destination-details .tours-section {
  margin-bottom: 80px;
}

.profil-destination-details .tours-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.profil-destination-details .tours-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.profil-destination-details .tours-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-destination-details .tours-section .tour-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.profil-destination-details .tours-section .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.profil-destination-details .tours-section .tour-card .tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.profil-destination-details .tours-section .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.profil-destination-details .tours-section .tour-card .tour-image .tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.profil-destination-details .tours-section .tour-card .tour-content {
  padding: 25px;
}

.profil-destination-details .tours-section .tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.profil-destination-details .tours-section .tour-card .tour-content .tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.profil-destination-details .tours-section .tour-card .tour-content .tour-meta span i {
  color: var(--accent-color);
}

.profil-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating {
  color: #ffc107;
}

.profil-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating i {
  color: #ffc107;
}

.profil-destination-details .tours-section .tour-card .tour-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.profil-destination-details .tours-section .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.profil-destination-details .tours-section .tour-card .tour-content .btn-tour {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.profil-destination-details .tours-section .tour-card .tour-content .btn-tour:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.profil-destination-details .tours-section .tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.profil-destination-details .map-section {
  margin-bottom: 80px;
}

.profil-destination-details .map-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.profil-destination-details .map-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.profil-destination-details .map-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-destination-details .map-section .map-container {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none; 
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.profil-destination-details .map-section .map-container .map-embed {
  height: 400px;
}

.profil-destination-details .map-section .map-container .map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.profil-destination-details .map-section .map-container .map-points {
  padding: 25px;
  background: var(--surface-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.profil-destination-details .map-section .map-container .map-points .point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.profil-destination-details .map-section .map-container .map-points .point-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.profil-destination-details .map-section .map-container .map-points .point-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

.profil-destination-details .practical-info {
  margin-bottom: 80px;
}

.profil-destination-details .practical-info .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.profil-destination-details .practical-info .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.profil-destination-details .practical-info .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-destination-details .practical-info .info-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  height: 100%;
  transition: 0.3s;
}

.profil-destination-details .practical-info .info-item:hover {
  transform: translateY(-5px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.profil-destination-details .practical-info .info-item .info-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.profil-destination-details .practical-info .info-item .info-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.profil-destination-details .practical-info .info-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.profil-destination-details .practical-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}

.profil-destination-details .practical-info .travel-tips {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  margin-top: none; 
  box-shadow: none; 
  border: solid 1px color-mix(in srgb, var(--accent-color), transparent 80%);*/
}

.profil-destination-details .practical-info .travel-tips:hover{
  transform: translateY(-5px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.profil-destination-details .practical-info .travel-tips h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.profil-destination-details .practical-info .travel-tips .tips-list {
  list-style: none;
  padding: 0;
}

.profil-destination-details .practical-info .travel-tips .tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.profil-destination-details .practical-info .travel-tips .tips-list li i {
  color: var(--accent-color);
  margin-top: 3px;
  font-size: 1.1rem;
}

.profil-destination-details .gallery-section {
  margin-bottom: 80px;
}

.profil-destination-details .gallery-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.profil-destination-details .gallery-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.profil-destination-details .gallery-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-destination-details .gallery-section .swiper-wrapper {
  height: auto !important;
}

.profil-destination-details .gallery-section .gallery-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 10px;
}

.profil-destination-details .gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.profil-destination-details .gallery-section .gallery-item img:hover {
  transform: scale(1.05);
}

.profil-destination-details .gallery-section .swiper-pagination {
  margin-top: 30px;
}

.profil-destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.profil-destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.profil-destination-details .cta-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 20px;
  text-align: center;
}

.profil-destination-details .cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .profil-destination-details .cta-section h2 {
    font-size: 2rem;
  }
}

.profil-destination-details .cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.profil-destination-details .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.profil-destination-details .cta-section .cta-buttons .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.profil-destination-details .cta-section .cta-buttons .btn.btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--contrast-color);
}

.profil-destination-details .cta-section .cta-buttons .btn.btn-primary:hover {
  background: transparent;
  color: var(--contrast-color);
}

.profil-destination-details .cta-section .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.profil-destination-details .cta-section .cta-buttons .btn.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.profil-destination-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .profil-destination-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}


.profil-destination-details .article-wrapper .table-of-contents {
  
  height: fit-content;
  padding: 2rem;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 12px;
  box-shadow: none; 
  transition: all 0.3s ease-in-out; 
  z-index: 100; 
}


.profil-destination-details .article-wrapper .table-of-contents.is-fixed {
  position: fixed;
  top: 100px; 
  
  
  width: ; 
  
  
  left: auto; 
  box-shadow: none; 
}




.profil-destination-details .article-wrapper .table-of-contents-placeholder {
    display: none; 
    
    height: auto; 
    width: auto; 
}


.profil-destination-details .article-wrapper .table-of-contents.is-fixed + .table-of-contents-placeholder {
    display: block;
}


@media (max-width: 992px) {
  .profil-destination-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.profil-destination-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.profil-destination-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profil-destination-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.profil-destination-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.profil-destination-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.profil-destination-details .article-wrapper .table-of-contents nav ul li a:hover,
.profil-destination-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.profil-destination-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.profil-destination-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}



.profil-tourism .section-subtitle {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.profil-tourism .home-filters {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profil-tourism .home-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0.75rem;
}

.profil-tourism .home-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.profil-tourism .featured-tours-slider {
  padding-bottom: 40px;
}

.profil-tourism .featured-tours-slider .swiper-wrapper {
  height: auto !important;
}

.profil-tourism .featured-tours-slider .swiper-pagination {
  bottom: 0;
}

.profil-tourism .featured-tours-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.profil-tourism .featured-tours-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.profil-tourism .featured-tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  height: 100%;
}

.profil-tourism .featured-tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.profil-tourism .featured-tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profil-tourism .featured-tour-card .tour-image .tour-badges {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 0 0 0 16px;
  font-size: 0.875rem;
  font-weight: 600;
}

.profil-tourism .featured-tour-card .tour-image {
  
  position: relative;
}

.profil-tourism .featured-tour-card .tour-image .tour-badge {
  
  position: absolute;
  top: 16; 
  left: 50%; 

  
  display: inline-block; 
  white-space: nowrap; 
  text-align: center; 

  
  
  transform: translate(-50%, -50%);

  
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 0 0 16px 16px; 
  font-size: 0.875rem;
  font-weight: 600;
}

.profil-tourism .featured-tour-card .tour-image:hover img {
  transform: scale(1.05);
}

.profil-tourism .featured-tour-card .tour-content {
  padding: 1.5rem;
}

.profil-tourism .featured-tour-card .tour-content h6 {
  color: var(--heading-color);
  font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profil-tourism .featured-tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profil-tourism .featured-tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.profil-tourism .featured-tour-card .tour-content .tour-meta .duration {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
}

.profil-tourism .featured-tour-card .tour-content .tour-meta .duration i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.profil-tourism .featured-tour-card .tour-content .tour-meta .rating {
  color: #ffc107;
}

.profil-tourism .featured-tour-card .tour-content .tour-meta .rating i {
  color: #ffc107;
  font-size: 12px;
}

.profil-tourism .featured-tour-card .tour-content .tour-meta .price {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.profil-tourism .featured-tour-card .tour-content .btn {
  width: 100%;
}

.profil-tourism .category-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.profil-tourism .category-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.profil-tourism .category-card .category-icon {
  margin-bottom: 1rem;
}

.profil-tourism .category-card .category-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.profil-tourism .category-card h5 {
  color: var(--heading-color);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.profil-tourism .special-offers .offer-banner {
  display: flex;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 15px;
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

@media (max-width: 768px) {
  .profil-tourism .special-offers .offer-banner {
    flex-direction: column;
  }
}

.profil-tourism .special-offers .offer-banner .offer-content {
  flex: 1;
  padding: 2rem;
  color: var(--contrast-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profil-tourism .special-offers .offer-banner .offer-content .discount-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.profil-tourism .special-offers .offer-banner .offer-content h4 {
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.profil-tourism .special-offers .offer-banner .offer-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.profil-tourism .special-offers .offer-banner .offer-content .urgency {
  color: #ffeb3b;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.profil-tourism .special-offers .offer-banner .offer-content .btn-accent {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  align-self: flex-start;
}

.profil-tourism .special-offers .offer-banner .offer-content .btn-accent:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.profil-tourism .special-offers .offer-banner .offer-image {
  flex: 0 0 200px;
}

@media (max-width: 768px) {
  .profil-tourism .special-offers .offer-banner .offer-image {
    flex: none;
    height: 150px;
  }
}

.profil-tourism .special-offers .offer-banner .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profil-tourism .tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profil-tourism .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profil-tourism .tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.profil-tourism .tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profil-tourism .tour-card .tour-image .tour-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
}

.profil-tourism .tour-card .tour-image:hover img {
  transform: scale(1.05);
}

.profil-tourism .tour-card .tour-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.profil-tourism .tour-card .tour-content h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.profil-tourism .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.profil-tourism .tour-card .tour-content .description-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profil-tourism .tour-card .tour-content .tour-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-tourism .tour-card .tour-content .tour-details span {
  display: flex;
  align-items: center;
}

.profil-tourism .tour-card .tour-content .tour-details span i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.profil-tourism .tour-card .tour-content .btn {
  align-self: flex-start;
}

.profil-tourism .cta-section {
  background-color: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.profil-tourism .cta-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.profil-tourism .cta-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .profil-tourism .cta-section .cta-buttons .btn {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
  }

  .profil-tourism .cta-section .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}



.profil-tourism .features-grid .feature-card {
  height: 400px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.profil-tourism .features-grid .feature-card .feature-front,
.profil-tourism .features-grid .feature-card .feature-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  
}

.profil-tourism .features-grid .feature-card .feature-front {
  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.profil-tourism .features-grid .feature-card .feature-front .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.profil-tourism .features-grid .feature-card .feature-front h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.profil-tourism .features-grid .feature-card .feature-front p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.profil-tourism .features-grid .feature-card .feature-back {
  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: rotateY(180deg);
}

.profil-tourism .features-grid .feature-card .feature-back p {
  color: var(--default-color);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.profil-tourism .features-grid .feature-card:hover .feature-front {
  transform: rotateY(180deg);
  border-color: var(--accent-color);
}

.profil-tourism .features-grid .feature-card:hover .feature-back {
  transform: rotateY(0deg);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.profil-tourism .featured-tour-card .tour-content .quick-link {
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 16px;
  border: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: flex; 
  align-items: center; 
  gap: 4px;
  transition: all 0.3s ease;

  
  width: fit-content; 
  margin: 0 auto;     
  white-space: nowrap; 
}

.profil-tourism .featured-tour-card .tour-content .quick-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  gap: 8px;
}

.profil-tourism .featured-tour-card .tour-content .quick-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.profil-tourism .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.25rem 0.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-tourism .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.profil-tourism .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.25rem 0.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-tourism .btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.profil-tourism .features-grid .feature-card .quick-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.profil-tourism .features-grid .feature-card .quick-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 8px;
}

.profil-tourism .features-grid .feature-card .quick-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}



.profil-tourism-details .tour-hero {
  margin-bottom: 60px;
}

.profil-tourism-details .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.profil-tourism-details .tour-hero .hero-image-wrapper img {
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-hero .hero-image-wrapper img {
    height: 350px;
  }
}

.profil-tourism-details .tour-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--contrast-color);
  padding: 60px 40px 40px;
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-hero .hero-overlay {
    padding: 40px 20px 20px;
  }
}

.profil-tourism-details .tour-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-hero .hero-content h1 {
    font-size: 2rem;
  }
}

.profil-tourism-details .tour-hero .hero-content .hero-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-hero .hero-content .hero-meta {
    gap: 15px;
  }
}

.profil-tourism-details .tour-hero .hero-content .hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.profil-tourism-details .tour-hero .hero-content .hero-meta span i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.profil-tourism-details .tour-hero .hero-content .hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-hero .hero-content .hero-tagline {
    font-size: 1rem;
  }
}

.profil-tourism-details .tour-hero .hero-content .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-tourism-details .tour-hero .hero-content .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.profil-tourism-details .tour-overview {
  margin-bottom: 60px;
}

.profil-tourism-details .tour-overview h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.profil-tourism-details .tour-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--default-color);
}

.profil-tourism-details .tour-overview .tour-highlights {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.profil-tourism-details .tour-overview .tour-highlights h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.profil-tourism-details .tour-overview .tour-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profil-tourism-details .tour-overview .tour-highlights ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--default-color);
}

.profil-tourism-details .tour-overview .tour-highlights ul li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.profil-tourism-details .tour-itinerary {
  margin-bottom: 60px;
}

.profil-tourism-details .tour-itinerary h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.profil-tourism-details .tour-itinerary .itinerary-timeline {
  position: relative;
}

.profil-tourism-details .tour-itinerary .itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-itinerary .itinerary-timeline::before {
    left: 25px;
  }
}

.profil-tourism-details .tour-itinerary .itinerary-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-itinerary .itinerary-item {
    padding-left: 80px;
  }
}

.profil-tourism-details .tour-itinerary .itinerary-item .day-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-itinerary .itinerary-item .day-number {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }
}

.profil-tourism-details .tour-itinerary .itinerary-item .day-content {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.profil-tourism-details .tour-itinerary .itinerary-item .day-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.profil-tourism-details .tour-itinerary .itinerary-item .day-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.profil-tourism-details .tour-itinerary .itinerary-item .day-content .day-details {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.profil-tourism-details .tour-itinerary .itinerary-item .day-content .day-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-tourism-details .tour-itinerary .itinerary-item .day-content .day-details span i {
  color: var(--accent-color);
}

.profil-tourism-details .tour-inclusions {
  margin-bottom: 60px;
}

.profil-tourism-details .tour-inclusions h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profil-tourism-details .tour-inclusions h3 i {
  font-size: 1.6rem;
}

.profil-tourism-details .tour-inclusions .included-section h3 {
  color: #28a745;
}

.profil-tourism-details .tour-inclusions .included-section h3 i {
  color: #28a745;
}

.profil-tourism-details .tour-inclusions .excluded-section h3 {
  color: #dc3545;
}

.profil-tourism-details .tour-inclusions .excluded-section h3 i {
  color: #dc3545;
}

.profil-tourism-details .tour-inclusions .inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profil-tourism-details .tour-inclusions .inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.profil-tourism-details .tour-inclusions .inclusion-list li:last-child {
  border-bottom: none;
}

.profil-tourism-details .tour-inclusions .inclusion-list li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.profil-tourism-details .tour-inclusions .inclusion-list.included i {
  color: #28a745;
}

.profil-tourism-details .tour-inclusions .inclusion-list.excluded i {
  color: #dc3545;
}

.profil-tourism-details .tour-pricing {
  margin-bottom: 60px;
}

.profil-tourism-details .tour-pricing h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.profil-tourism-details .tour-pricing .pricing-table {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-pricing .pricing-table {
    padding: 25px;
  }
}

.profil-tourism-details .tour-pricing .pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.profil-tourism-details .tour-pricing .pricing-header .price-item h3 {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.profil-tourism-details .tour-pricing .pricing-header .price-item .price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .profil-tourism-details .tour-pricing .pricing-header .price-item .price-amount {
    font-size: 2.5rem;
  }
}

.profil-tourism-details .tour-pricing .pricing-header .price-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-tourism-details .tour-pricing .pricing-details {
  margin-bottom: 40px;
}

.profil-tourism-details .tour-pricing .pricing-details .price-type {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.profil-tourism-details .tour-pricing .pricing-details .price-type h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.profil-tourism-details .tour-pricing .pricing-details .price-type .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.profil-tourism-details .tour-pricing .pricing-details .price-type p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-tourism-details .tour-pricing .available-dates h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--heading-color);
  text-align: center;
}

.profil-tourism-details .tour-pricing .available-dates .dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.profil-tourism-details .tour-pricing .available-dates .date-option {
  text-align: center;
  padding: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.profil-tourism-details .tour-pricing .available-dates .date-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.profil-tourism-details .tour-pricing .available-dates .date-option .date {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.profil-tourism-details .tour-pricing .available-dates .date-option .availability {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profil-tourism-details .booking-section {
  margin-bottom: 60px;
}

.profil-tourism-details .booking-section .booking-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .profil-tourism-details .booking-section .booking-card {
    padding: 25px;
  }
}

.profil-tourism-details .booking-section .booking-card h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--heading-color);
  text-align: center;
}

.profil-tourism-details .booking-section .booking-card .form-group {
  margin-bottom: 25px;
}

.profil-tourism-details .booking-section .booking-card .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
}

.profil-tourism-details .booking-section .booking-card .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.profil-tourism-details .booking-section .booking-card .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

.profil-tourism-details .booking-section .booking-card .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.profil-tourism-details .booking-section .booking-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.profil-tourism-details .booking-section .booking-card .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
}

.profil-tourism-details .tour-gallery {
  margin-bottom: 60px;
}

.profil-tourism-details .tour-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.profil-tourism-details .tour-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.profil-tourism-details .tour-gallery .gallery-grid .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.profil-tourism-details .tour-gallery .gallery-grid .gallery-item:hover {
  transform: scale(1.03);
}

.profil-tourism-details .tour-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.profil-tourism-details .tour-gallery .gallery-grid .gallery-item a:hover img {
  filter: brightness(1.1);
}

.profil-tourism-details .final-cta .cta-content {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .profil-tourism-details .final-cta .cta-content {
    padding: 40px 20px;
  }
}

.profil-tourism-details .final-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .profil-tourism-details .final-cta .cta-content h2 {
    font-size: 2rem;
  }
}

.profil-tourism-details .final-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.profil-tourism-details .final-cta .cta-content .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.profil-tourism-details .final-cta .cta-content .cta-actions .btn-primary,
.profil-tourism-details .final-cta .cta-content .cta-actions .btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profil-tourism-details .final-cta .cta-content .cta-actions .btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.profil-tourism-details .final-cta .cta-content .cta-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--contrast-color), black 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.profil-tourism-details .final-cta .cta-content .cta-actions .btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.profil-tourism-details .final-cta .cta-content .cta-actions .btn-secondary:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.profil-tourism-details .final-cta .cta-content .urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
}

.profil-tourism-details .final-cta .cta-content .urgency-banner i {
  color: #ffc107;
}





.form-input .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; 
}

.form-input .input-form-container {
  background-color: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: none;
  padding: 25px;
  margin-bottom: 10px;
}

.form-input .input-form-container:hover {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
}

.form-input .input-form-content h4 {
  color: var(--heading-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  font-size: 1.2rem;
}

.form-input .input-form label {
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 8px;
  display: block;
}

.form-input .input-form input[type=text],
.form-input .input-form input[type=email],
.form-input .input-form input[type=tel],
.form-input .input-form input[type=date],
.form-input .input-form select,
.form-input .input-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: 0.3s;
}

.form-input .input-form input[type=text]:focus,
.form-input .input-form input[type=email]:focus,
.form-input .input-form input[type=tel]:focus,
.form-input .input-form input[type=date]:focus,
.form-input .input-form select:focus,
.form-input .input-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}

.form-input .input-form input[type=text]::placeholder,
.form-input .input-form input[type=email]::placeholder,
.form-input .input-form input[type=tel]::placeholder,
.form-input .input-form input[type=date]::placeholder,
.form-input .input-form select::placeholder,
.form-input .input-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.form-input .input-form {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.form-input .inline-form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.form-input .inline-form-buttons .btn {
  padding: 5px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  border: none;
}

.form-input .inline-form-buttons .btn.btn-secondary {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}

.form-input .inline-form-buttons .btn.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.form-input .inline-form-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.form-input .inline-form-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.form-input .center-form-buttons {
  display: flex;
  margin: 0 0;
  justify-content: center;
  gap: 15px;
}

.form-input .center-form-buttons .btn {
  padding: 5px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  border: none;
}

.form-input .center-form-buttons .btn.btn-secondary {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}

.form-input .center-form-buttons .btn.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.form-input .center-form-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.form-input .center-form-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.form-input .input-summary {
  background-color: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: none;
  padding: 20px;
  position: sticky;
  top: 100px;
  min-height: none 
}

.form-input .input-summary:hover {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
}

.form-input .input-summary .summary-header {
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.form-input .input-summary .summary-header h4 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.2rem;
}

.form-input .input-summary .user-profile-summary {
  margin-bottom: 25px;
}

.form-input .input-summary .user-profile-summary img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.form-input .input-summary .user-profile-summary .user-info h5 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 16px;
}

.form-input .input-summary .user-profile-summary .user-info p {
  margin: 5px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.form-input .input-summary .user-profile-summary .user-info p i {
  color: var(--accent-color);
  margin-right: 8px;
}

.form-input .input-summary .input-details {
  margin-bottom: 10px;
}

.form-input .input-summary .input-details .detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.form-input .input-summary .input-details .detail-item .label {
  font-weight: 500;
  color: var(--default-color);
}

.form-input .input-summary .input-details .detail-item .value {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.form-input .input-summary .input-details .detail-items {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.form-input .input-summary .input-details .detail-items .label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--default-color);
}

.form-input .input-summary .input-details .detail-items .value {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--default-color);
}



.form-input .input-summary .input-details .detail-items:nth-last-of-type(2),
.form-input .input-summary .input-details .detail-item:nth-last-of-type(2) {
    border-bottom: none;
}


.form-input .input-summary .input-details .last-update-item {
    
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
    padding: 5px 0;
}


.form-input .input-summary .input-details .last-update-item .label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--default-color);
}
.form-input .input-summary .input-details .last-update-item .value {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--default-color);
}



@media (max-width: 991.98px) {
  .form-input .input-summary {
    margin-top: 30px;
    position: static;
  }
}

@media (max-width: 576px) {
  .form-input .input-form-container {
    padding: 25px 20px;
  }

  .form-input .input-summary {
    padding: 20px;
  }

  .form-input .addon-options .addon-item .addon-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .form-input .payment-methods .method-selector label {
    padding: 12px;
  }

  .form-input .payment-methods .method-selector label i {
    font-size: 18px;
  }
}

  
  .form-input .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--default-color);
  }

  .form-input .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
    outline: none;
  }

  .form-input .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 70%);
    outline: none;
  }

  .form-input .form-group {
    margin-bottom: 10px;
  }

/* Floating Label Styling */
.form-input .form-floating {
  position: relative;
}

.form-input .form-floating .form-control {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  height: auto; 
}

.form-input .form-floating > .form-control:focus,
.form-input .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-input .form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-input .form-floating > .form-label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%; 
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.form-input .form-floating > .form-control:focus ~ .form-label,
.form-input .form-floating > .form-control:not(:placeholder-shown) ~ .form-label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 0.65;
}


.form-input .form-floating > .form-label {
  color: color-mix(in srgb, var(--default-color), transparent 40%); 
}


.form-input .form-floating > .form-label.required span.required {
  color: #ff0000; 
  margin-left: 3px; 
}

/* Inline Form */
.form-input .form-group.inline-form {
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.form-input .form-group.inline-form .form-label-inline {
    flex-shrink: 0; 
    min-width: 120px; 
    
    font-weight: 500;
    color: var(--default-color);
}

.form-input .form-group.inline-form .form-control {
    flex-grow: 1; 
}

/* Gaya untuk pesan kesalahan */
.errorMessage {
  color: #ff0000; 
  font-size: 12px;
  margin-top: 5px;
}



.form-input .form-floating > .form-control::placeholder {
  color: transparent; 
}


.form-input .form-floating > .form-control:focus::placeholder {
  color: #a0a0a0; 
  opacity: 1; 
  transition: color 0.1s ease-in-out; 
}

/* --- Field Disabled --- */
.form-input .form-floating > .form-control[disabled] {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%); 
  opacity: 1; 
  cursor: not-allowed; 
  color: var(--default-color); 
  border-color: color-mix(in srgb, var(--default-color), transparent 90%); 
  
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  height: auto;
}



.form-input .form-floating > .form-control[disabled] ~ .form-label {
  color: color-mix(in srgb, var(--default-color), transparent 50%); 
  
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 0.65;
}

.form-input .form-floating > .form-select[disabled] {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%); 
  opacity: 1; 
  cursor: not-allowed; 
  color: var(--default-color); 
  border-color: color-mix(in srgb, var(--default-color), transparent 90%); 
  
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  height: auto;
}


.form-input .form-floating > .form-select[disabled] ~ .form-label {
  color: color-mix(in srgb, var(--default-color), transparent 50%); 
  
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 0.65;
}



/* Style khusus untuk Note atau catatan */
p.note {
  font-size: 0.9em; 
  color: color-mix(in srgb, var(--default-color), transparent 40%); 
  margin-top: 10px; 
  margin-bottom: 20px; 
}


p.note span.required {
  color: #ff0000; 
  font-weight: bold; 
}

/* CSS Dasar untuk Modal */
.modal {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    justify-content: center; 
    align-items: center; 
    padding: 20px; 
}

.modal-content {
    background-color: var(--surface-color); 
    margin: auto; 
    padding: 5px;
    border: none; 
    width: 90%; 
    max-width: 100%; 
    border-radius: 10px; 
    box-shadow: none; 
    position: relative;
    
    animation: flipInRightModal 0.5s ease-out; 
}

.modal-header,
.modal-footer {
    padding: 0.5rem 1rem; 
}

#deleteConfirmationModal {
    display: none; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    justify-content: center;
    align-items: center;
    z-index: 1000; 
}


/* Animasi Kustom untuk Modal */
@keyframes flipInRightModal {
    from {
        opacity: 0;
        transform: translateX(100%) rotateY(180deg); 
        transform-origin: 0% 50%; 
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg); 
    }
}


.modal-content .center-form-buttons {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 20px;
}


.modal-content .center-form-buttons .btn {
    
    flex-grow: 1; 
    margin: 0 5px; 
}



.modal-content .delete-confirmation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.modal-content .delete-confirmation-buttons .btn {
    flex-grow: 1;
    margin: 0 5px;
}

.close-button {
    color: var(--default-color);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}



.list-view-container {
    margin-top: 20px;
}

.list-items {
    display: grid;
    gap: 15px; 
}

.view-item-container {
    background-color: var(--surface-color);
    border-radius: 15px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    box-shadow: none;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.view-item-container:hover {
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.view-item-content h4 {
    color: var(--heading-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    font-size: 1.2rem;
}

.view-item-content h4 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-item-content h4 a:hover {
    color: var(--accent-color);
}

.view-item-content p {
    color: var(--default-color);
    margin-bottom: 8px;
    font-size: 0.95em;
}

.view-item-content p b {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    font-weight: 600;
}

.view-item-content .meta-info {
    font-size: 0.85em;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 90%);
}

.view-item-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end; 
}

.view-item-actions .btn {
    padding: 5px 15px; 
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    text-decoration: none;
}

.view-item-actions .btn.btn-secondary {
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
}

.view-item-actions .btn.btn-secondary:hover {
    background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.view-item-actions .btn.btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.view-item-actions .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.view-item-actions .btn.btn-sm { 
    padding: 5px 10px;
    font-size: 0.85em;
}


.grid-view-container {
    margin-top: 20px;
}

.grid-view-container .table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: var(--surface-color);
    border-radius: 15px;
    overflow: hidden; 
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.grid-view-container .table thead th {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--heading-color);
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 0.9em;
    font-weight: 600;
}

.grid-view-container .table tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    font-size: 0.9em;
}

.grid-view-container .table tbody tr:last-child td {
    border-bottom: none;
}

.grid-view-container .table tbody tr:hover {
    background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
}


.grid-view-container .table .button-column {
    white-space: nowrap; 
}

.grid-view-container .table .button-column a {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 30px; 
    height: 30px; 
    border-radius: 50%; 
    font-size: 0.9em;
    text-decoration: none;
    color: #FFF; 
    transition: background-color 0.3s ease;
    margin: 0 2px; 
}

.grid-view-container .table .button-column a.btn-info { 
    background-color: #17a2b8; 
}
.grid-view-container .table .button-column a.btn-info:hover {
    background-color: #138496;
}

.grid-view-container .table .button-column a.btn-primary { 
    background-color: #007bff; 
}
.grid-view-container .table .button-column a.btn-primary:hover {
    background-color: #0056b3;
}

.grid-view-container .table .button-column a.btn-danger { 
    background-color: #dc3545; 
}
.grid-view-container .table .button-column a.btn-danger:hover {
    background-color: #bd2130;
}



.pager-container {
    margin-top: 20px;
    text-align: center;
}

.pager-container .yiiPager {
    display: inline-flex;
    padding-left: 0;
    margin: 20px 0;
    border-radius: .25rem;
}

.pager-container .yiiPager li {
    display: inline;
}

.pager-container .yiiPager li a {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--accent-color);
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pager-container .yiiPager li a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--default-color);
    border-color: var(--accent-color);
}

.pager-container .yiiPager li.selected a {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.pager-container .yiiPager li.first a,
.pager-container .yiiPager li.last a {
    border-radius: .25rem;
}


.detail-view-container {
    margin-top: 20px;
    background-color: var(--surface-color);
    border-radius: 15px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    box-shadow: none;
    overflow: hidden; 
}

.detail-view-container .table {
    width: 100%;
    margin-bottom: 0; 
    color: var(--default-color); 
}

.detail-view-container .table th,
.detail-view-container .table td {
    padding: 12px 20px;
    vertical-align: top;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.detail-view-container .table th {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    font-weight: 600;
    color: var(--heading-color);
    width: 30%; 
}

.detail-view-container .table .detail-row-odd {
    background-color: var(--surface-color);
}

.detail-view-container .table .detail-row-even {
    background-color: color-mix(in srgb, var(--surface-color), transparent 5%); 
}


.page-header {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-header h1 {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin: 0;
}


.btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.btn.btn-secondary {
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
}

.btn.btn-secondary:hover {
    background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.btn.btn-info {
    background-color: #17a2b8; 
    color: #FFF;
}
.btn.btn-info:hover {
    background-color: #138496;
}

.btn.btn-danger {
    background-color: #dc3545; 
    color: #FFF;
}
.btn.btn-danger:hover {
    background-color: #bd2130;
}

.btn.me-1 {
    margin-right: 0.25rem; 
}

.btn.me-2 {
    margin-right: 0.5rem; 
}

.mb-3 {
    margin-bottom: 1rem !important; 
}


@media (max-width: 767.98px) {
  .form-input .form-group.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .form-input .form-group.col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .form-input .form-group.col-md-6,
  .form-input .form-group.col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.ql-container {
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%) !important; 
    
    border-radius: 0 0 0.5rem 0.5rem; 
}

.ql-toolbar.ql-snow {
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%) !important; 
    border-radius: 0.5rem 0.5rem 0 0; 
}



#quill-editor-container {
    border: none; 
    border-radius: 0.5rem; 
}






.gallery-slider {
  overflow: hidden;
}

.gallery-slider .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-slider .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-slider .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none; 
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-slider .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-slider .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.gallery-slider .gallery-img:hover img {
  transform: scale(1.1);
}

.gallery-slider .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slider .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-slider:hover .swiper-button-next,
.gallery-slider:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-slider:hover .swiper-button-next:hover,
.gallery-slider:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-slider .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery-slider .swiper-button-next,
  .gallery-slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery-slider .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery-slider .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}

/* Galeri */
.galeri .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.galeri .isotope-filters li {
  display: inline-block;
  padding: 5px 10px;
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: none
}

.galeri .isotope-filters li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.galeri .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: none 
}

@media (max-width: 576px) {
  .galeri .isotope-filters {
    gap: 8px;
  }

  .galeri .isotope-filters li {
    padding: 8px 14px;
    font-size: 14px;
  }
}

.galeri .galeri-item {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .galeri .galeri-item {
    margin-bottom: 20px;
  }
}

.galeri .galeri-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.galeri .galeri-card:hover {
  transform: translateY(-10px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: none 
}

.galeri .galeri-card:hover .galeri-overlay {
  opacity: 1;
  transform: translateY(0);
}

.galeri .galeri-card:hover .galeri-image img {
  transform: scale(1.1);
}

.galeri .galeri-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}

.galeri .galeri-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.galeri .galeri-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--contrast-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.galeri .galeri-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.galeri .galeri-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
  opacity: 0.9;
  
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.galeri .galeri-overlay .galeri-actions {
  display: flex;
  gap: 15px;
}

.galeri .galeri-overlay .galeri-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.galeri .galeri-overlay .galeri-actions a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.galeri .glightbox-clean .gslide-description {
  background: #272727;
}

.galeri .glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}


.empty-filter-message {
    display: none;
    max-width: 100%; 
    margin: 0 auto; 
    text-align: center;
    padding: 20px 20px;
    border: 1px dashed color-mix(in srgb, var(--default-color), transparent 50%);
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.empty-filter-message.is-visible {
    display: block;
}


    #empty-filter-message .icon-container {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}


.empty-filter-message p {
    font-weight: bold;
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* Pagination 2 Section */
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/* ---- */

.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center; 
}


.faq .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}



.page-not-found {
  padding: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.page-not-found .error-wrapper {
  position: relative;
  overflow: hidden;
}

.page-not-found .error-content {
  padding: 20px 0;
}

.page-not-found .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-not-found .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.page-not-found .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.page-not-found .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.page-not-found .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.page-not-found .error-actions .btn-home,
.page-not-found .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.page-not-found .error-actions .btn-home i,
.page-not-found .error-actions .btn-help i {
  font-size: 1.2rem;
}

.page-not-found .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.page-not-found .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: none; 
}

.page-not-found .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.page-not-found .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.page-not-found .error-actions .quick-link {
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);*/
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.page-not-found .error-actions .quick-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  gap: 8px;
}

.page-not-found .error-actions .quick-link:hover.quick-link-btn i {
  transform: scale(1.2);
  color: var(--accent-color);
}

.page-not-found .error-actions .quick-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.page-not-found .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.page-not-found .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.page-not-found .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-not-found .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.page-not-found .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.page-not-found .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.page-not-found .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.page-not-found .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.page-not-found .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .page-not-found .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 912px) {
  .page-not-found {
    padding: 70px 0;
  }

  .page-not-found .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .page-not-found .error-title {
    font-size: 1.8rem;
  }

  .page-not-found .error-content {
    text-align: center;
  }

  .page-not-found .error-actions .btn-home,
  .page-not-found .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }

    .page-not-found .error-actions {
        display: flex;
        flex-direction: column; 
        align-items: center; 
    }

    .page-not-found .error-actions .quick-link {
        font-size: 1rem;
        justify-content: center;
    }
  

}

        
        .background-bubbles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0; 
        }

        .background-bubbles div {
            position: absolute;
            border-radius: 50%;
            
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            animation: move-bubbles 20s infinite linear;
        }

        
        .background-bubbles div:nth-child(1) { 
            width: 50px;
            height: 50px;
            bottom: 10%;
            left: 30%;
            animation-duration: 15s;
        }

        .background-bubbles div:nth-child(2) { 
            width: 100px;
            height: 100px;
            top: 80%;
            left: 50%;
            animation-duration: 25s;
        }

        .background-bubbles div:nth-child(3) { 
            width: 70px;
            height: 70px;
            top: 30%;
            right: 30%;
            animation-duration: 17s;
        }

        .background-bubbles div:nth-child(4) { 
            width: 120px;
            height: 120px;
            top: 20%;
            left: 15%;
            animation-duration: 20s;
        }

        .background-bubbles div:nth-child(5) { 
            width: 80px;
            height: 80px;
            top: 50%;
            right: 10%;
            animation-duration: 18s;
        }

        
        .animation-container {
            position: relative; 
            height: 400px; 
            width: 100%; 
            display: flex; 
            flex-direction: column; 
            justify-content: center;
            align-items: center;
            overflow: hidden; 
            border-radius: 10px;
            z-index: 5; 
        }

        
        .main-content-wrapper {
            position: relative; 
            z-index: 20; 
            text-align: center;
            padding: 20px;
            
            
        }

        .main-content-wrapper .content-icon {
            font-size: 8rem; 
            color: #ff4500; 
            margin-bottom: 15px; 
            display: block; 
        }
        
        
        @keyframes move-bubbles {
            0% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(-20vw, 20vh) scale(1.1);
            }
            50% {
                transform: translate(0, 40vh) scale(1.2);
            }
            75% {
                transform: translate(20vw, 20vh) scale(0.9);
            }
            100% {
                transform: translate(0, 0) scale(1);
            }
        }


.profile-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}


.profile-details .article-header {
  
  margin: 0 auto 1rem;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  padding-bottom: 0rem; 
  padding-top: 20px; 
}

.profile-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.profile-details .article-header .meta-categories .category {
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
}

.profile-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translatex(-4px);
}

.profile-details .article-header .meta-categories .quick-link {
  color: var(--accent-color);
  padding: 5px 12px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.profile-details .article-header .meta-categories .quick-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  gap: 8px;
}

.profile-details .article-header .meta-categories .quick-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.profile-details .article-header .meta-categories .inline-link {
    display: inline-block;
    margin-right: 10px; 
}

.profile-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .profile-details .article-header .title {
    font-size: 2.2rem;
  }
}

.profile-details .article-header .article-meta {
  display: flex;
  justify-content: center; 
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.profile-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.profile-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.profile-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.profile-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.profile-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-details .article-header .article-meta .post-kamling span {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  
  color: var(--default-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 16px 16px 0 0;
  font-family: var(--default-font);
}

@media (max-width: 768px) {
  .profile-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .profile-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.profile-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.profile-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .profile-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.profile-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 250px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .profile-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.profile-details .article-wrapper .toc {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 1rem;
  background: var(--surface-color);
  border-radius: 0 0 16px 0;
  box-shadow: none; 
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .profile-details .article-wrapper .toc {
    display: none;
  }
}

.profile-details .article-wrapper .toc h3 {
  font-size: 1rem;
  Font-weight: 600;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  color: var(--heading-color);
  border-bottom: solid 1px color-mix(in srgb, var(--default-color), transparent 80%);
}

.profile-details .article-wrapper .toc nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-details .article-wrapper .toc nav ul li {
  margin-bottom: 0.25rem;
}

.profile-details .article-wrapper .toc nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.profile-details .article-wrapper .toc nav ul li a::before {
  content: "\F27B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--accent-color); 
  font-size: 0.95rem; 
  line-height: 1; 
  transform: translateY(-50%);
  vertical-align: middle; 
  opacity: 0; 
  transition: all 0.3s ease;
}


.profile-details .article-wrapper .toc nav ul li a:hover{
  padding: 4px 20px;
  border-radius: 0 16px 16px 0 ;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 500;
}

.profile-details .article-wrapper .toc nav ul li a.active {
  color: var(--accent-color);
  font-weight: 500;
}

.profile-details .article-wrapper .toc nav ul li a:hover::before,
.profile-details .article-wrapper .toc nav ul li a.active::before {
  opacity: 1;
}

.profile-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.profile-details .article-wrapper .article-content .content-section {
  margin-bottom: 0; 
}

.profile-details .article-wrapper .article-content .content-section .lead {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.profile-details .article-wrapper .article-content .content-section h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.profile-details .article-wrapper .article-content .content-section h3 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.profile-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.profile-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.profile-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.profile-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.profile-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;

    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profile-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none; 
  
}

.profile-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 360px;
  margin: 0 0 2rem 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .profile-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.profile-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.profile-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profile-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.profile-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.profile-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.profile-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.profile-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.profile-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.profile-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.profile-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.profile-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.profile-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.profile-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.profile-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.profile-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .profile-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.profile-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.profile-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.profile-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.profile-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.profile-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.profile-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.profile-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.profile-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.profile-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.profile-details .map-section {
  margin-bottom: 20px;
}

.profile-details .map-section .section-header {
  text-align: center;
  margin-bottom: 20px;
}

.profile-details .map-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.profile-details .map-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profile-details .map-section .map-container {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none; 
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.profile-details .map-section .map-container .map-embed {
  height: 400px;
}

.profile-details .map-section .map-container .map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.profile-details .map-section .map-container .map-points-old {
  padding: 25px;
  background: var(--surface-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.profile-details .map-section .map-container .map-points {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.profile-details .map-section .map-container .map-points .point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 20px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.profile-details .map-section .map-container .map-points .point-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.profile-details .map-section .map-container .map-points .point-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .profile-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.profile-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.profile-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.profile-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.profile-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.profile-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.profile-details .attractions-section {
  margin-bottom: 40px;
}

.profile-details .attractions-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.profile-details .attractions-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.profile-details .attractions-section . h3 {
  font-size: 1.6rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.profile-details .article-wrapper .attractions-section .lead {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.profile-details .attractions-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.profile-details .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none; 
  border: solid 1px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.3s;
  height: 100%;
}

.profile-details .attractions-section .attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border: solid 1px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.profile-details .attractions-section .attraction-item .attraction-image {
  height: 150px;
  overflow: hidden;
}

.profile-details .attractions-section .attraction-item .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.profile-details .attractions-section .attraction-item .attraction-content {
  padding: 12px;
}

.profile-details .attractions-section .attraction-item .attraction-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profile-details .attractions-section .attraction-item .attraction-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.profile-details .attractions-section .attraction-item:hover .attraction-image img {
  transform: scale(1.1);
}

.profile-details .profile-gallery {
  margin-bottom: 20px;
}

.profile-details .profile-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.profile-details .profile-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.profile-details .profile-gallery .gallery-grid .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.profile-details .profile-gallery .gallery-grid .gallery-item:hover {
  transform: scale(1.03);
}

.profile-details .profile-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.profile-details .profile-gallery .gallery-grid .gallery-item a:hover img {
  filter: brightness(1.1);
}


.profile-details .profile-gallery-empty {
  margin-bottom: 60px;
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 15px;
  background-color: var(--surface-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.profile-details .profile-gallery-empty .empty-gallery-icon {
  font-size: 3rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin-bottom: 20px;
  display: block;
}

.profile-details .profile-gallery-empty p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/*-- Statistik  --*/

.statistics .stat-filters {
  background-color: var(--surface-color);
  padding: 10px 10px 0px 10px;
  border-radius: 0 0 10px 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.statistics .stat-filters:hover {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.statistics .stat-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0.75rem;
}

.statistics .stat-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.statistics .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 10px 10px 10px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.nav-tabs-bordered .nav-link {
  border: none;
  font-size: .9rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--accent-color);
}

.nav-tabs-bordered .nav-link.active {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}


.nav-tabs .nav-link i {
  margin-right: 0.5rem; 
}

/* Card */
.card {
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}


.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.card-title span {
  font-size: 0.9rem;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}



/* Additional Section */
.additional-section {
}