@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto", 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: "Questrial", sans-serif;
  --nav-font: "Open Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #f8f9fa;
  /* Background color for the entire website, including individual sections */
  --default-color: #495057;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #212529;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #347433;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #495057;
  /* The default color of the main navmenu links */
  --nav-hover-color: #347433;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #495057;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #347433;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8fbff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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);
}

.page {
  padding-top: 80px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--accent-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.index-page .header {
  background-color: transparent;
  box-shadow: none;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
}

@media (max-width: 767px) {
  .header .logo h1 {
    font-size: 16px;
  }
}

.scrolled .header {
  background-color: var(--accent-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-actions {
  gap: 15px;
}

.header-actions .btn-login {
  color: var(--contrast-color);
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 15px;
  border: 2px solid var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}

.header-actions .btn-login:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.header-actions .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  margin-top: 10px !important;
}

@media (max-width: 1199px) {
  .navmenu {
    flex-grow: 1;
  }


}

@media (max-width: 767px) {
  .btn-login span {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--contrast-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--contrast-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-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: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .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;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--contrast-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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: bold;
    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-left: 5px;
    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 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);
    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: #fff;
    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;
  }
}

/* Extended Dropdown - Desktop */
@media (min-width: 1200px) {
  .extended-dropdown ul {
    min-width: 380px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .extended-dropdown ul li {
    min-width: auto;
    border-bottom: none;
  }

  .extended-dropdown ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .extended-dropdown ul a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
  }

  .extended-dropdown ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .extended-dropdown ul a .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .extended-dropdown ul a .menu-icon i {
    font-size: 18px;
    color: var(--accent-color);
    margin: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--nav-dropdown-color);
    transition: color 0.3s ease;
  }

  .extended-dropdown ul a .menu-text .menu-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .extended-dropdown ul a .menu-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .extended-dropdown ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown ul a:hover .menu-icon {
    transform: translateY(-2px);
  }

  .extended-dropdown ul a:hover .menu-icon::before {
    opacity: 0, 3;
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown ul a:hover .menu-icon i {
    color: color-mix(in srgb, var(--accent-color), #000000 10%);
  }

  .extended-dropdown ul a:hover .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown ul a:hover .menu-text .menu-description {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
  }

  .extended-dropdown ul a:hover .menu-badge {
    transform: scale(1.05);
  }

  .extended-dropdown ul a:hover .menu-badge:not(.hot):not(.updates) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown ul a:hover .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 75%);
  }

  .extended-dropdown ul a:hover .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 75%);
  }
}

/* Extended Dropdown - Mobile */
@media (max-width: 1199px) {
  .extended-dropdown ul {
    background-color: var(--nav-mobile-background-color);
    border-radius: 10px;
    padding: 10px;
  }

  .extended-dropdown ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .extended-dropdown ul a {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .extended-dropdown ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .extended-dropdown ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
  }

  .extended-dropdown ul a .menu-icon i {
    font-size: 16px;
    color: var(--accent-color);
    margin: 0;
  }

  .extended-dropdown ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .extended-dropdown ul a .menu-text .menu-description {
    font-size: 12px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
  }

  .extended-dropdown ul a .menu-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .extended-dropdown ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  .extended-dropdown ul a:hover,
  .extended-dropdown ul a:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown ul a:hover .menu-text .menu-title,
  .extended-dropdown ul a:active .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown ul .active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown ul .active .menu-title {
    color: var(--nav-dropdown-hover-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs Section
--------------------------------------------------------------*/
.breadcrumbs-section {
  padding: 30px 0 10px 0;
  background-color: var(--background-color);
}

.breadcrumbs-section .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumbs-section .breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs-section .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.breadcrumbs-section .breadcrumbs .current {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  background-image: url('../img/kembanglangit.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 15px;
}

.hero .hero-content {
  padding-right: 30px;
}

@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }
}

.hero .hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .hero-content h1 span {
  color: var(--accent-color);
  position: relative;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 35px;
  max-width: 500px;
}

@media (max-width: 991px) {
  .hero .hero-content p {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 16px;
  }
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.hero .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  border: 2px solid transparent;
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.hero .hero-content h1,
.hero .hero-content p {
  color: #ffffff;
}

.hero .hero-content h1 span {
  color: #68bc67
}

/*--------------------------------------------------------------
# Tentang Section
--------------------------------------------------------------*/
.tentang {
  padding-bottom: 120px;
}

.tentang .tentang-image {
  position: relative;
}

.tentang .tentang-image img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tentang .tentang-image img:hover {
  transform: translateY(-5px);
}

.tentang .content {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .tentang .content {
    padding-left: 0;
    margin-top: 60px;
  }
}

.tentang .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.tentang .content .lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tentang .content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tentang .stats-row {
  display: flex;
  gap: 40px;
  margin: 60px 0 40px 0;
  padding: 40px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .tentang .stats-row {
    flex-direction: column;
    gap: 30px;
  }
}

.tentang .stats-row .stat-item {
  text-align: center;
}

.tentang .stats-row .stat-item h3 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--accent-color);
  line-height: 1;
}

.tentang .stats-row .stat-item p {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.tentang .cta-wrapper {
  margin-top: 40px;
}

.tentang .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tentang .btn-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.tentang .btn-cta i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

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

/*--------------------------------------------------------------
# Artikel Section
--------------------------------------------------------------*/
.berita .berita-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-decoration: none;
  height: 100%;
}

.berita .berita-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.berita .berita-card .berita-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

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

.berita .berita-card .berita-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.berita .berita-card .berita-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.berita .berita-card .berita-excerpt {
  color: var(--default-color);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.berita .berita-card .berita-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-top: 15px;
}

.berita .berita-card .meta-left {
  display: flex;
  gap: 15px;
}

.berita .berita-card .berita-meta span {
  display: flex;
  align-items: center;
}

.berita .berita-card .berita-meta i {
  margin-right: 6px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Potensi Section
--------------------------------------------------------------*/
.potensi {
  position: relative;
  overflow: hidden;
}

.potensi .potensi-slider {
  position: relative;
  padding-bottom: 50px;
  padding-top: 15px;
}

.potensi .potensi-slider .swiper-wrapper {
  height: auto !important;
}

.potensi .potensi-item {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: none;
  box-shadow: none;
  text-decoration: none;
  height: 100%;
  transition: transform 0.3s ease;
  transform: translateY(0);
}

.potensi .potensi-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.potensi .potensi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.potensi .potensi-caption {
  padding: 20px 5px;
  text-align: center;
}

.potensi .potensi-caption h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  transition: color 0.3s ease;
}

.potensi .potensi-item:hover {
  transform: translateY(-8px);
}

.potensi .potensi-item:hover .potensi-caption h5 {
  color: var(--accent-color);
}

.potensi .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.potensi .swiper-button-prev,
.potensi .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.potensi .swiper-button-prev:hover,
.potensi .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.05);
}

.potensi .swiper-button-prev::after,
.potensi .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Wisata Section
--------------------------------------------------------------*/
.wisata .wisata-showcase-slider {
  position: relative;
}

.wisata .wisata-showcase-item {
  display: block;
  position: relative;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.wisata .wisata-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wisata .wisata-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  z-index: 2;
}

.wisata .wisata-caption h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.wisata .wisata-showcase-item:hover img {
  transform: scale(1.05);
}

.wisata .wisata-showcase-item:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.wisata .swiper-button-next,
.wisata .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--heading-color);
  transition: all 0.3s ease;
  z-index: 3;
}

.wisata .swiper-button-next:hover,
.wisata .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.wisata .swiper-button-next::after,
.wisata .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.wisata .swiper-button-prev {
  left: 20px;
}

.wisata .swiper-button-next {
  right: 20px;
}

@media (max-width: 768px) {
  .wisata .wisata-showcase-item {
    height: 300px;
  }

  .wisata .wisata-caption h3 {
    font-size: 1.5rem;
  }

  .wisata .swiper-button-next,
  .wisata .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.wisata-page .wisata-showcase-item {
  height: 300px;
  max-height: none;
}

@media (max-width: 768px) {
  .wisata-page .wisata-showcase-item {
    height: 300px;
  }
}

/*--------------------------------------------------------------
# Produk Section
--------------------------------------------------------------*/
.produk .produk-card {
  display: block;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-decoration: none;
  height: 100%;
}

.produk .produk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.produk .produk-card .produk-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

.produk .produk-card .produk-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.produk .produk-card .produk-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.produk .produk-card .produk-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 8px;
  align-self: flex-end;
}

/*--------------------------------------------------------------
# Galeri Section
--------------------------------------------------------------*/
.galeri .galeri-card {
  background: var(--background-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.galeri .galeri-card:hover {
  transform: translateY(-8px);
}

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

.galeri .galeri-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.galeri .galeri-card:hover .content h3 {
  color: var(--accent-color);
}

.galeri .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

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

.galeri .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
}

.galeri .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.galeri-card:hover .galeri .image-container .overlay-content {
  transform: translateY(0);
}

.galeri .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.galeri .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.galeri .content {
  padding: 30px 0;
  text-align: center;
}

.galeri .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

@media (min-width: 992px) {
  .galeri .galeri-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .galeri .galeri-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# Details Page
--------------------------------------------------------------*/
.details .details-content {
  padding-right: 20px;
}

.details .details-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.details .details-content p {
  line-height: 1.8;
}

.details .details-content ul {
  list-style: none;
  padding: 0;
}

.details .details-content ul li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
}

.details .details-content ul i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.details .details-gallery .glightbox {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

.details .details-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.details .details-gallery img:hover {
  transform: scale(1.03);
}

.details .details-sidebar {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.details .sidebar-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.details .sidebar-item-list .sidebar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 20px;
}

.details .sidebar-item-list .sidebar-item:last-child {
  margin-bottom: 0;
}

.details .sidebar-item .sidebar-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.details .sidebar-item .sidebar-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.details .sidebar-item .sidebar-item-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  transition: color 0.3s ease;
}

.details .sidebar-item:hover .sidebar-item-img img {
  transform: scale(1.05);
}

.details .sidebar-item:hover .sidebar-item-content h4 {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .details .details-content {
    padding-right: 0;
  }

  .details .details-sidebar {
    margin-top: 40px;
  }
}

/* Penyesuaian Tambahan untuk Halaman Detail Wisata */
.details-sidebar .sidebar-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-radius: 8px;
}

.details-sidebar .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.details-sidebar .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  margin-top: 3px;
}

.details-sidebar .info-item .info-content {
  display: flex;
  flex-direction: column;
}

.details-sidebar .info-item .info-content strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.details-sidebar .info-item .info-content span {
  font-size: 0.9rem;
  color: var(--default-color);
}

.details-sidebar .sidebar-map {
  border-radius: 8px;
  overflow: hidden;
}

.details-sidebar .sidebar-map iframe {
  border: 0;
  width: 100%;
  height: 250px;
}

/* Penyesuaian Sidebar - Link Sosial Media */
.details-sidebar .sidebar-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.details-sidebar .social-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.details-sidebar .social-link i {
  font-size: 20px;
  margin-right: 12px;
}

.details-sidebar .social-link span {
  font-weight: 500;
}

.details-sidebar .social-link.whatsapp {
  background-color: #25D366;
}

.details-sidebar .social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.details-sidebar .social-link.facebook {
  background-color: #1877F2;
}

.details-sidebar .social-link.youtube {
  background-color: #FF0000;
}

.details-sidebar .social-link.tiktok {
  background-color: #000000;
}

.details-sidebar .social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Penyesuaian Tambahan untuk Halaman Detail Berita */
.details .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.details .post-meta .meta-item i {
  margin-right: 8px;
  color: var(--accent-color);
}

.details .article-body p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.details .article-body .blockquote {
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  margin: 30px 0;
  font-style: italic;
}

.details .post-share {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.details .post-share h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.details .post-share .social-links {
  display: flex;
  gap: 10px;
}

.details .post-share .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.details .post-share .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.details-page .post-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
}

.details-page .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-page .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.7);
}

.details-page .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.details-page .article .title {
  font-weight: 700;
}

.details-page .post-img .swiper-button-next,
.details-page .post-img .swiper-button-prev {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.details-page .post-img .swiper-button-next:hover,
.details-page .post-img .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.details-page .post-img .swiper-button-next::after,
.details-page .post-img .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.details-page .post-img .swiper-button-prev {
  left: 15px;
}

.details-page .post-img .swiper-button-next {
  right: 15px;
}

@media (max-width: 768px) {

  .details-page .post-img .swiper-button-next,
  .details-page .post-img .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .details-page .post-img .swiper-button-next::after,
  .details-page .post-img .swiper-button-prev::after {
    font-size: 0.8rem;
  }
}

/* Layout Card untuk Halaman Detail */
.details-card-container {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .details-card-container {
    padding: 25px;
    margin-top: -40px;
  }
}

/*--------------------------------------------------------------
# Produk Details Page
--------------------------------------------------------------*/
.product-details {
  margin-bottom: 30px;
  overflow: visible;
}

@media (max-width: 768px) {
  .product-details {
    margin-top: 80px;
  }
}

/* Gambar Utama */
.product-gallery .product-gallery-main {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  /* Jarak antara gambar utama dan thumbnail */
}

.product-gallery .product-gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Wrapper untuk thumbnail */
.product-gallery .product-gallery-thumbnails-wrapper {
  position: relative;
  /* Dulu ada padding di sini untuk tombol, sekarang tidak perlu */
}

/* Penataan grid jika gambar <= 4 */
.product-gallery .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* Gaya thumbnail individual */
.product-gallery .thumbnail-item {
  border: 2px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}

.product-gallery .thumbnail-item.active,
.product-gallery .thumbnail-item:hover {
  border-color: var(--accent-color);
}

.product-gallery .thumbnail-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* --- TOMBOL NAVIGASI SLIDER SUDAH DIHAPUS DARI BLOK INI --- */

/* Info Produk (Bagian Kanan) */
.product-info {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .product-info {
    padding-left: 0;
  }
}

.product-info .product-title {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.product-info .product-meta {
  display: flex;
  gap: 10px;
  color: var(--default-color);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.product-info .product-meta .separator {
  color: #ddd;
}

.product-info .product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.product-info .product-short-description {
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 30px;
}

.product-info .product-variations {
  margin-bottom: 30px;
}

.product-info .form-label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.product-info .variation-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
}

.product-info .variation-buttons .form-check {
  padding-left: 0;
  margin-right: 8px;
  margin-bottom: 8px;
}

.product-info .variation-buttons .form-check:last-child {
  margin-right: 0;
}

.product-info .variation-buttons .form-check-input {
  display: none;
}

.product-info .variation-buttons .form-check-label {
  padding: 8px 16px;
  border: 2px solid #ddd;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.product-info .variation-buttons .form-check-input:checked+.form-check-label {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.product-info .variation-buttons .form-check-label:hover {
  border-color: var(--accent-color);
}

.product-info .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-info .product-actions .btn-action {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-info .product-actions .btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-info .product-actions .btn-action i {
  font-size: 1.2rem;
}

.product-info .btn-action.whatsapp {
  background-color: #25D366;
  color: #fff;
}

.product-info .btn-action.shopee {
  background-color: #EE4D2D;
  color: #fff;
}

.product-full-description {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}