/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Playfair Display",  sans-serif;
  --nav-font: "Poppins",  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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #898989; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #777777; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #b8a07e; /* 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: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #898989; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #b8a07e; /* 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: #f3f1f0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2e2821;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(184, 160, 126, 0.338);
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

/* Index: body same as hero so no strip of different background above/below hero */
body.index-page {
  background-color: #2e2821;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 4700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(82, 78, 68, 0.8);
}

/*--------------------------------------------------------------
# Navigation 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 15px;
    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-left: 5px;
    transition: 0.3s;
  }

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

/* 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(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    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: #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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 0;
}

.footer .footer-newsletter h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.footer .footer-newsletter .newsletter-form {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  height: 54px;
  border-radius: 50px;
  padding: 10px 25px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.footer .footer-newsletter .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 15px;
}

.footer .footer-newsletter .newsletter-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-main {
  padding: 70px 0 40px;
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

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

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: flex-start;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

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

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer .footer-main .footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer .footer-main .footer-links a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover:before {
  width: 100%;
}

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  color: var(--contrast-color);
}

.footer .footer-main .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-icons a:hover {
  background-color: var(--accent-color);
  transform: rotate(360deg);
  color: var(--contrast-color);
}

.footer .footer-main .footer-follow-img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

.footer .footer-bottom {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods {
  display: flex;
  align-items: center;
}

.footer .footer-bottom .payment-methods span {
  margin-right: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .copyright {
  padding-top: 10px;
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
}

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  text-align: center;
  padding-top: 5px;
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0 15px 0;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {
  .footer .footer-newsletter {
    padding: 50px 0;
  }

  .footer .footer-newsletter h2 {
    font-size: 28px;
  }

  .footer .footer-main {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-newsletter {
    padding: 40px 0;
  }

  .footer .footer-newsletter h2 {
    font-size: 24px;
  }

  .footer .footer-newsletter p {
    font-size: 15px;
  }

  .footer .footer-newsletter .newsletter-form button {
    padding: 0 20px;
    font-size: 14px;
  }

  .footer .footer-bottom .payment-methods {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer .footer-bottom .copyright {
    text-align: center;
  }

  .footer .app-buttons {
    justify-content: center;
  }

  .footer .social-icons {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

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

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

/* Hero: full-bleed from top to end of viewport, no section padding/margin */
#hero.section,
section.hero.section,
.hero.section {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 60vh;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section (video background template)
--------------------------------------------------------------*/
main.main {
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  min-height: 60vh;
  min-height: 60dvh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}

.hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--background-color), transparent 10%) 0%, color-mix(in srgb, var(--background-color), transparent 40%) 50%, color-mix(in srgb, var(--background-color), transparent 25%) 100%);
}

.hero.dark-background .video-background .overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero .content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 60vh;
  padding: 0;
}

.hero .main-content {
  padding-right: 40px;
}

.hero .event-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .main-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero .main-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 540px;
}

.hero .info-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.hero .info-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  backdrop-filter: blur(8px);
}

.hero .info-badge .info-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Booking badge: más espacio entre teléfono, email y nombre */
.hero .info-badges .info-badge:first-child .info-text {
  gap: 16px;
}

.hero .info-badge .info-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.hero .info-badge .info-text .value {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero .info-badge .info-text .value.hero-booking-phone,
.hero .info-badge .info-text .value.hero-booking-phone a {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero .info-badge .info-text .value.hero-booking-phone i {
  font-size: 1.5rem;
}

.hero .info-badge .info-text .value.hero-booking-name {
  font-size: 1rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.hero .info-badge .info-text .value a {
  color: inherit;
  text-decoration: none;
}

.hero .action-area {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero .btn-register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero .btn-register:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero .btn-agenda {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 60%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--default-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero .btn-agenda:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.hero .content-wrapper .container {
  display: flex;
  align-items: flex-start;
  min-height: 60vh;
  padding-top: 0;
}

.hero .content-wrapper .row {
  align-items: flex-start;
  min-height: 60vh;
  width: 100%;
}

/* Right column: recuadro pegado al tope, sin espacio arriba */
.hero .content-wrapper .row .col-lg-5,
.hero .content-wrapper .row .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin: 0;
  min-height: 0;
}

/* Recuadro www.gitanosmusic.com: pegado al inicio de la página, sin espacio */
.hero .countdown-card {
  display: flex;
  flex-direction: column;
  background: color-mix(in srgb, var(--surface-color), transparent 15%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0;
  padding: 20px 32px 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: border-box;
  margin: 0;
  align-self: flex-start;
}

.hero .countdown-card .card-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 600;
}

.hero .hero-card-image {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-height: 420px;
  flex: 1;
  display: flex;
}

.hero .hero-card-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.hero .ticket-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 0;
}

.hero .ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.hero .ticket-row:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .ticket-row .ticket-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .ticket-row .ticket-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero .ticket-row .ticket-value.highlight,
.hero .ticket-row .ticket-value.highlight a {
  color: var(--accent-color);
  text-decoration: none;
}

@media (max-width: 1200px) {
  .hero .main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .hero .content-wrapper {
    padding: 0;
  }

  .hero .main-content {
    padding-right: 0;
    margin-bottom: 48px;
    text-align: center;
  }

  .hero .main-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .info-badges {
    justify-content: center;
  }

  .hero .action-area {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero .content-wrapper {
    padding: 0;
  }

  .hero .main-content {
    padding-top: 80px;
  }

  .hero .main-title {
    font-size: 2.2rem;
  }

  .hero .main-description {
    font-size: 1.05rem;
  }

  .hero .countdown-card {
    padding: 32px 24px;
    margin-top: -120px;
  }
}

@media (max-width: 576px) {
  .hero .info-badges {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero .action-area {
    flex-direction: column;
    gap: 12px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
  background-color: transparent !important;
  position: relative;
  z-index: 4;
  margin-top: -250px;
  padding-top: 80px;
}

.gallery .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 300px;
  height: auto;
  display: block;
  object-fit: contain;
}

.gallery .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 .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

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

.gallery .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery .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 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery .swiper-button-next,
.gallery .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 .swiper-button-next:after,
.gallery .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery:hover .swiper-button-next,
.gallery:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery:hover .swiper-button-next:hover,
.gallery:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery .swiper-button-next,
  .gallery .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# About Me Section
--------------------------------------------------------------*/
.about-me {
  padding: 120px 0;
}

.about-me .intro-header {
  margin-bottom: 80px;
}

.about-me .intro-header h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about-me .intro-header .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me .main-content-wrapper {
  margin-bottom: 100px;
}

.about-me .profile-section .profile-image-container {
  margin-bottom: 2rem;
}

.about-me .profile-section .profile-image-container img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.about-me .profile-section .profile-image-container img:hover {
  filter: grayscale(0%);
}

.about-me .profile-section .profile-meta .location {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-me .profile-section .profile-meta .location i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.about-me .profile-section .profile-meta .status {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-me .profile-section .profile-meta .status .status-indicator {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.about-me .content-area {
  padding-left: 2rem;
}

.about-me .content-area .story-block {
  margin-bottom: 3rem;
}

.about-me .content-area .story-block .lead-text {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.about-me .content-area .story-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

.about-me .expertise-grid {
  margin-bottom: 3rem;
}

.about-me .expertise-grid .expertise-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.about-me .expertise-grid .expertise-item .expertise-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.about-me .expertise-grid .expertise-item .expertise-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-me .expertise-grid .expertise-item .expertise-content h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about-me .expertise-grid .expertise-item .expertise-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about-me .philosophy-quote {
  position: relative;
  padding: 2rem 0;
}

.about-me .philosophy-quote .quote-mark {
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 5rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  line-height: 1;
}

.about-me .philosophy-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  color: var(--default-color);
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-me .bottom-section {
  padding-top: 60px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-me .bottom-section .collaboration-text h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about-me .bottom-section .collaboration-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.about-me .bottom-section .action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.about-me .bottom-section .action-buttons .btn-custom {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.about-me .bottom-section .action-buttons .btn-custom.primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-me .bottom-section .action-buttons .btn-custom.primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.about-me .bottom-section .action-buttons .btn-custom.secondary {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.about-me .bottom-section .action-buttons .btn-custom.secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 992px) {
  .about-me {
    padding: 80px 0;
  }

  .about-me .intro-header {
    margin-bottom: 60px;
  }

  .about-me .intro-header h1 {
    font-size: 2.8rem;
  }

  .about-me .main-content-wrapper {
    margin-bottom: 60px;
  }

  .about-me .content-area {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about-me .bottom-section .action-buttons {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-me .intro-header h1 {
    font-size: 2.2rem;
  }

  .about-me .intro-header .subtitle {
    font-size: 1.1rem;
  }

  .about-me .philosophy-quote .quote-mark {
    font-size: 3.5rem;
    left: -10px;
  }

  .about-me .philosophy-quote p {
    font-size: 1.1rem;
  }

  .about-me .bottom-section .collaboration-text h3 {
    font-size: 1.6rem;
  }

  .about-me .bottom-section .action-buttons {
    flex-direction: column;
  }

  .about-me .bottom-section .action-buttons .btn-custom {
    text-align: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards .category-slider {
  position: relative;
  padding: 1rem 0;
}

.category-cards .category-slider .container {
  position: relative;
}

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

.category-cards .category-slider .swiper-button-next,
.category-cards .category-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-cards .category-slider .swiper-button-next::after,
.category-cards .category-slider .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

.category-cards .category-slider .swiper-button-next:hover,
.category-cards .category-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.category-cards .category-slider .swiper-button-prev {
  left: 0;
}

.category-cards .category-slider .swiper-button-next {
  right: 0;
}

.category-cards .category-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-cards .category-card:hover {
  transform: translateY(-5px);
}

.category-cards .category-card:hover .category-title {
  color: var(--accent-color);
}

.category-cards .category-card:hover .category-image img {
  filter: brightness(1.08);
  transform: rotate(4deg) scale(1.06);
}

.category-cards .category-card .category-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-cards .category-card .category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.category-cards .category-card .category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: 0.3s;
}

.category-cards .category-card .category-count {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -15px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -15px;
  }

  .category-cards .category-card {
    padding: 0.75rem;
  }

  .category-cards .category-card .category-image {
    height: 100px;
    margin-bottom: 0.75rem;
  }

  .category-cards .category-card .category-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .category-cards .category-card .category-count {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {

  .category-cards .category-slider .swiper-button-prev,
  .category-cards .category-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .category-cards .category-slider .swiper-button-prev::after,
  .category-cards .category-slider .swiper-button-next::after {
    font-size: 0.85rem;
  }

  .category-cards .category-card .category-image {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -10px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -10px;
  }

  .category-cards .category-card {
    padding: 0.5rem;
  }

  .category-cards .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}

/* Band section - action buttons (toro image) */
.band-buttons .container {
  text-align: center;
}

.band-buttons .band-buttons-row {
  justify-content: center;
}

.band-buttons .band-buttons-row [class*="col"] {
  text-align: center;
  display: flex;
  justify-content: center;
}

.band-buttons .band-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--default-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.band-buttons .band-btn:hover {
  color: var(--accent-color);
  transform: translateY(-4px);
}

.band-buttons .band-btn-img {
  width: 100%;
  max-width: 90px;
  height: 90px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.band-buttons .band-btn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-buttons .band-btn-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.band-buttons .band-buttons-row {
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hero band buttons: square, smaller, fit in div below Performing */
.hero-band-buttons {
  margin-top: 24px;
}

.hero-band-buttons .band-buttons-row {
  max-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex-wrap: wrap;
}

.hero-band-buttons .band-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--default-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.hero-band-buttons .band-btn:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.hero-band-buttons .band-btn-img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  margin: 0 auto 0.35rem;
  border-radius: 0;
  overflow: hidden;
}

.hero-band-buttons .band-btn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-band-buttons .band-btn-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
}

@media (max-width: 576px) {
  .band-buttons .band-btn-img {
    max-width: 70px;
    height: 70px;
  }

  .band-buttons .band-btn-label {
    font-size: 0.8rem;
  }

  .hero-band-buttons .band-btn-img {
    width: 42px;
    height: 42px;
    max-width: 42px;
  }

  .hero-band-buttons .band-btn-label {
    font-size: 0.65rem;
  }
}

/*--------------------------------------------------------------
# Video Section (gallery grid, dark background)
--------------------------------------------------------------*/
section.video.section {
  padding: 60px 0;
}

section.video.section.dark-background {
  --background-color: #2e2821;
  --default-color: #ffffff;
  --heading-color: #ffffff;
}

section.video .section-title h2,
section.video .section-title p {
  color: var(--heading-color);
}

section.video .section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Single video player: all videos load in this same div */
section.video .video-player-container {
  background: #000;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

section.video .video-player-container video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

section.video .video-wrapper {
  background: #000;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

section.video .video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Video section: gallery-style grid items */
section.video .gallery-item.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

section.video .gallery-item.video-item .video-thumb {
  display: block;
  position: relative;
  color: inherit;
}

section.video .gallery-item.video-item .video-thumb video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.3s;
  pointer-events: none;
}

section.video .gallery-item.video-item .video-thumb:hover video {
  transform: scale(1.05);
}

section.video .gallery-item.video-item .video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

section.video .gallery-item.video-item .video-thumb:hover .video-play-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 50%, var(--background-color) 100%);
}

.call-to-action .cta-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 93%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  overflow: hidden;
}

.call-to-action .background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .background-pattern .wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 30%, color-mix(in srgb, var(--accent-color), transparent 98%) 70%, transparent 100%);
  transform: skewX(-15deg) translateX(20%);
}

.call-to-action .background-pattern .geometric-shape {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .background-pattern .geometric-shape.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: 5%;
  left: 10%;
  animation: floatRotate 8s ease-in-out infinite;
}

.call-to-action .background-pattern .geometric-shape.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: 10%;
  right: 15%;
  animation: floatRotate 6s ease-in-out infinite reverse;
}

.call-to-action .content-section {
  position: relative;
  z-index: 2;
}

.call-to-action .content-section .label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 10%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .content-section .label-badge i {
  font-size: 1.1rem;
}

.call-to-action .content-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.call-to-action .content-section p {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.call-to-action .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.call-to-action .features-grid .feature-item .feature-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features-grid .feature-item span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.call-to-action .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-to-action .cta-actions .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 12px;
}

.call-to-action .cta-actions .btn.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 15%));
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 85%), 0 0 0 0 var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent-color), transparent 80%), 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .cta-actions .btn.btn-cta-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-actions .btn.btn-cta-secondary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: var(--accent-color);
}

.call-to-action .cta-actions .btn.btn-cta-secondary i {
  font-size: 1.2rem;
}

.call-to-action .cta-actions .secondary-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-to-action .cta-actions .secondary-action .note {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
}

.call-to-action .image-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .image-section .main-image-wrapper {
  position: relative;
  max-width: 450px;
}

.call-to-action .image-section .main-image-wrapper .main-img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  top: -20px;
  right: -30px;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action .image-section .main-image-wrapper .overlay-circle.circle-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 88%), color-mix(in srgb, var(--heading-color), transparent 96%));
  bottom: -15px;
  left: -25px;
  animation: pulse 3s ease-in-out infinite;
}

.call-to-action .image-section .stats-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 90%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 3;
}

.call-to-action .image-section .stats-card .stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
}

.call-to-action .image-section .stats-card .stat-content h6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.call-to-action .image-section .stats-card .stat-content span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.call-to-action .image-section .stats-card.card-1 {
  top: 15%;
  left: -20px;
  animation: float1 6s ease-in-out infinite;
}

.call-to-action .image-section .stats-card.card-2 {
  bottom: 20%;
  right: -25px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes floatRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .cta-wrapper {
    padding: 3rem 2rem;
  }

  .call-to-action .content-section h2 {
    font-size: 2.25rem;
  }

  .call-to-action .content-section p {
    font-size: 1rem;
  }

  .call-to-action .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .call-to-action .cta-actions .btn.btn-cta-primary {
    width: 100%;
  }

  .call-to-action .cta-actions .secondary-action {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .call-to-action .image-section {
    margin-top: 3rem;
  }

  .call-to-action .image-section .stats-card.card-1 {
    top: 10%;
    left: 0;
  }

  .call-to-action .image-section .stats-card.card-2 {
    bottom: 10%;
    right: 0;
  }
}

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

  .call-to-action .cta-wrapper {
    padding: 2rem 1.5rem;
  }

  .call-to-action .content-section h2 {
    font-size: 1.875rem;
  }

  .call-to-action .content-section .label-badge {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .call-to-action .stats-card {
    padding: 0.75rem 1rem;
  }

  .call-to-action .stats-card .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .call-to-action .stats-card .stat-content h6 {
    font-size: 1.1rem;
  }

  .call-to-action .stats-card .stat-content span {
    font-size: 0.8rem;
  }

  .call-to-action .overlay-circle {
    transform: scale(0.8);
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .events-list {
  margin-bottom: 2rem;
}

.events .events-list .event-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events .events-list .event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.events .events-list .event-item .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 0;
  text-align: center;
}

.events .events-list .event-item .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.events .events-list .event-item .event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.events .events-list .event-item .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events .events-list .event-item .event-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.events .events-list .event-item .event-content .event-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.events .events-list .event-item .event-content .event-meta i {
  margin-right: 0.25rem;
}

.events .events-list .event-item .event-content .event-meta p {
  margin: 0;
}

.events .events-list .event-item .event-content p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.events .events-list .event-item .event-content .btn-event {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--accent-color);
}

.events .events-list .event-item .event-content .btn-event i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.events .events-list .event-item .event-content .btn-event:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .events-list .event-item .event-content .btn-event:hover i {
  transform: translateX(5px);
}

.events .events-list .event-item .event-content .event-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .events-list .event-item .event-content .event-share .share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 0.25rem;
}

.events .events-list .event-item .event-content .event-share .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.events .events-list .event-item .event-content .event-share .share-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.events .events-list .event-item .event-content .event-share .share-btn i {
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .events .events-list .event-item {
    flex-direction: column;
  }

  .events .events-list .event-item .event-date {
    width: 100%;
    flex-direction: row;
    padding: 0.75rem;
  }

  .events .events-list .event-item .event-date .day {
    margin-right: 0.5rem;
  }

  .events .events-list .event-item .event-content .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.events .pagination-wrapper {
  margin-top: 2rem;
}

.events .pagination-wrapper .pagination .page-link {
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transition: all 0.3s ease;
  margin: 0 3px;
  background-color: var(--background-color);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events .pagination-wrapper .pagination .page-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--accent-color);
}

.events .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events .pagination-wrapper .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.events .sidebar .sidebar-item {
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.events .sidebar .sidebar-item .sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
}

.events .sidebar .sidebar-item .sidebar-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 60px;
  background: var(--accent-color);
}

.events .sidebar .sidebar-item.featured-event .featured-event-content img {
  border-radius: 6px;
  margin-bottom: 1rem;
}

.events .sidebar .sidebar-item.featured-event .featured-event-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.events .sidebar .sidebar-item.featured-event .featured-event-content p {
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 0.95rem;
}

.events .sidebar .sidebar-item.featured-event .featured-event-content p i {
  color: var(--accent-color);
  margin-right: 0.25rem;
}

.events .sidebar .sidebar-item.featured-event .featured-event-content .btn-register {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.events .sidebar .sidebar-item.featured-event .featured-event-content .btn-register:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.events .sidebar .sidebar-item .categories ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.events .sidebar .sidebar-item .categories ul li {
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.events .sidebar .sidebar-item .categories ul li:last-child {
  border-bottom: none;
}

.events .sidebar .sidebar-item .categories ul li a {
  display: flex;
  justify-content: space-between;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

.events .sidebar .sidebar-item .categories ul li a:hover {
  color: var(--accent-color);
}

.events .sidebar .sidebar-item .categories ul li a span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 50px;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
}

.events .sidebar .sidebar-item .categories ul li a:hover span {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.events .sidebar .event-calendar .calendar-header {
  margin-bottom: 0.75rem;
  text-align: center;
}

.events .sidebar .event-calendar .calendar-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.events .sidebar .event-calendar .calendar-body .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 85%);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.events .sidebar .event-calendar .calendar-body .weekdays div {
  padding: 0.25rem;
}

.events .sidebar .event-calendar .calendar-body .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.events .sidebar .event-calendar .calendar-body .days .day {
  padding: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px auto;
  transition: all 0.2s ease;
}

.events .sidebar .event-calendar .calendar-body .days .day:hover:not(.other-month) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.events .sidebar .event-calendar .calendar-body .days .day.has-event {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
}

.events .sidebar .event-calendar .calendar-body .days .day.has-event:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .sidebar .event-calendar .calendar-body .days .day.other-month {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: default;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
}

.cards .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cards .card-item:hover .card-img img {
  transform: scale(1.1);
}

.cards .card-item:hover .card-img .card-overlay {
  opacity: 1;
  visibility: visible;
}

.cards .card-item:hover .card-img .card-overlay .card-overlay-content {
  transform: translateY(0);
}

.cards .card-item .card-img {
  position: relative;
  overflow: hidden;
}

.cards .card-item .card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cards .card-item .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), color-mix(in srgb, var(--accent-color), transparent 30%));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cards .card-item .card-img .card-overlay .card-overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

.cards .card-item .card-img .card-overlay .card-overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cards .card-item .card-img .card-overlay .card-overlay-content p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(45deg);
}

.cards .card-item .card-img .card-overlay .card-overlay-content .btn-link i {
  font-size: 1.2rem;
}

.cards .card-item .card-content {
  padding: 2rem;
}

.cards .card-item .card-content .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards .card-item .card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

.cards .card-item .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Instagram Section - last 3 posts embed */
.instagram-section .section-title p a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.instagram-section .section-title p a:hover {
  text-decoration: underline;
}

.instagram-section .card-item .card-img.instagram-embed-wrapper {
  padding: 0;
  overflow: visible;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.instagram-section .card-item .card-img.instagram-embed-wrapper iframe {
  max-width: 100%;
}

/* Original Instagram-style follow link (no blue button) */
.instagram-section .instagram-follow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #262626;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.2s ease;
}

.instagram-section .instagram-follow-link:hover {
  color: #262626;
  text-decoration: none;
  opacity: 0.7;
}

.instagram-section .instagram-follow-link i {
  font-size: 1.25rem;
  color: #262626;
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery-2 .gallery-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 70%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery-2 .gallery-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
}

.gallery-2 .gallery-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .gallery-2 .gallery-filters {
    justify-content: center;
    margin-bottom: 25px;
  }

  .gallery-2 .gallery-filters li {
    margin: 2px;
    padding: 6px 12px;
    font-size: 13px;
  }
}

.gallery-2 .gallery-item .gallery-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-2 .gallery-item .gallery-wrap:hover {
  transform: translateY(-5px);
}

.gallery-2 .gallery-item .gallery-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.gallery-2 .gallery-item .gallery-wrap:hover .gallery-info {
  opacity: 1;
  bottom: 0;
}

.gallery-2 .gallery-item .gallery-wrap img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-2 .gallery-item .gallery-wrap .gallery-info {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  padding: 20px 20px 25px;
  transition: all 0.3s ease;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0 0 8px 8px;
}

.gallery-2 .gallery-item .gallery-wrap .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-2 .gallery-item .gallery-wrap .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin: 0 0 10px 0;
}

.gallery-2 .gallery-item .gallery-wrap .gallery-info .gallery-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.gallery-2 .gallery-item .gallery-wrap .gallery-info .gallery-links a:hover {
  background: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

.gallery-2 .isotope-container {
  margin-top: 15px;
}

@media (max-width: 768px) {
  .gallery-2 .isotope-container {
    margin-top: 10px;
  }
}

.gallery-2 .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}