/* Fonts */
@font-face {
  font-family: 'shlopregular';
  src: url('/shlop_rg-webfont.woff2') format('woff2'),
       url('/shlop_rg-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
:root {
  --default-font: "Montserrat",  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: "M PLUS Rounded 1c",  sans-serif;
  --nav-font: 'Playfair Display', 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: rgba(34, 34, 34, 0.8); /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e0e9f2; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #b92d2d; /* 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: #3c3c3ccc; /* 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.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #ff3333; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #3c3c3ccc; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #3c3c3ccc; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff3333; /* 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: rgba(60, 60, 204, 0.235);
  --surface-color: #565656;
}

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

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

/* Style the video: 100% width and height to cover the entire window */
.myVideo {
  position: fixed;
  /* right: 0; */
  top: 0;
  /* padding: 110px 0; */
  z-index: -5;
  min-width: 100%;
  min-height: 100%;
}

/*--------------------------------------------------------------
# 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(--default-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /* --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color); */
  padding: 15px 0;
  transition: all 0.5s;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  font-family: var(--nav-font);
}

.header .navbar {
  /* background-color: #111; */
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent */
  backdrop-filter: blur(12px);         /* blur effect */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  padding: 1rem 2rem;
  position: sticky;
  /* position: relative; */
  top: 0;
  z-index: 1000;
}

.header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .nav-logo {
  text-align: center;
  line-height: 1.2;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  animation: flicker 3s infinite alternate;
  text-shadow: 0 0 5px crimson, 0 0 10px crimson;
  position: relative;
  cursor: pointer;
  margin-bottom: 1rem;
}

.header .nav-logo span {
  display: block;
  letter-spacing: 2px;
  font-family: 'Nosifer', cursive;
}

.header .nav-logo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 12px;
  background: crimson;
  border-radius: 0 0 50% 50%;
  animation: drip 3s infinite ease-in-out;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; text-shadow: 0 0 15px crimson; }
}

@keyframes drip {
  0%, 100% { height: 12px; transform: translateX(-50%) scaleY(1); }
  50% { height: 18px; transform: translateX(-50%) scaleY(1.3); }
}

.header .nav-logo:hover {
  animation: jumpScare 0.3s ease-in-out;
  color: #ff4d4d;
}

@keyframes jumpScare {
  0% { transform: scale(1); }
  50% { transform: scale(1.3) rotate(2deg); }
  100% { transform: scale(1); }
}

.header .menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: crimson;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.header .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: row;
}

.header .nav-menu a {
  text-decoration: none;
  color: #aaa;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.header .nav-menu a:hover {
  color: #fff;
}

.header .nav-menu a::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: crimson;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  margin-top: 5px;
}

.header .nav-menu a:hover::after {
  transform: scaleX(1);
}

.header .about { font-family: 'Bebas Neue', sans-serif; }
.header .faqs { font-family: 'Pacifico', cursive; }
.header .find-us { font-family: 'Monoton', cursive; }
.header .reviews { font-family: 'Orbitron', sans-serif; }
.header .join-us { font-family: 'Creepster', cursive; }
.header .contact { font-family: 'Playfair Display', serif; }

.header .btn-ticket {
  background: crimson;
  border: none;
  padding: 0.5rem 1rem;
  color: #fff;
  cursor: pointer;
  font-family: 'Creepster', cursive;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 10px crimson;
  margin-left: auto;
}

.header .btn-ticket:hover {
  background: #ff1a1a;
}

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

@media (max-width: 768px) {
  .header .menu-toggle {
    display: block;
  }

  .header .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .header .nav-menu.active {
    display: flex;
    margin-top: 1rem;
  }

  .header .btn-ticket {
    margin-top: 1rem;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent */
  backdrop-filter: blur(16px);         /* blur effect */
  -webkit-backdrop-filter: blur(16px); /* Safari support */
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'shlopregular';
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

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

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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: 120px 0;
  text-align: center;
  position: relative;
}

.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 70%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h1 {
  font-size: 42px;
  font-weight: 700;
  position: relative;
}

/* .section-title h1:before,
.section-title h1:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: in-line;
}

.section-title h1:before {
  margin: 0 15px 10px 0;
}

.section-title h1:after {
  margin: 0 0 10px 15px;
} */

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

@media (max-width: 768px) {
  .section-title h1 {
    font-size: 30px;
  }

  /* .section-title h1:before,
  .section-title h1:after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  } */
}

.index-page h1.section-title {
font-family: 'Nosifer', cursive;
}

.about-trinity-scares-page h1.section-title {
  font-family: 'Bebas Neue', sans-serif;
}

.faqs-page h1.section-title {
  font-family: 'Pacifico', cursive;
}

.how-to-find-trinity-scares-page h1.section-title {
  font-family: 'Monoton', cursive;
}

.trinity-scares-reviews-page h1.section-title {
  font-family: 'Orbitron', sans-serif;
}

.join-the-team-scare-actor-page h1.section-title {
  font-family: 'Creepster', cursive;
}

.contact-trinity-scares-page h1.section-title {
  font-family: 'Playfair Display', serif;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  width: 100%;
  min-height: 20vh;
  position: relative;
  padding: 200px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-2 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero-2 p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero-2 h2 {
    font-size: 32px;
  }

  .hero-2 p {
    font-size: 18px;
  }
}

.hero-2 .countdown {
  margin-top: 25px;
}

.hero-2 .countdown div {
  text-align: center;
  border: 2px solid color-mix(in srgb, var(--default-color), white 90%);
  border-radius: 8px;
  margin: 10px 10px;
  width: 100px;
  padding: 15px 0;
}

.hero-2 .countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-2 .countdown div h4 {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .hero-2 .countdown div {
    width: 70px;
    padding: 10px 0;
    margin: 10px 8px;
  }

  .hero-2 .countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-2 .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

.hero-2 .hero-newsletter {
  margin-top: 15px;
}

.hero-2 .hero-newsletter .brush-wrap {
  position: relative;
  display: inline-block;
  padding: 3rem;
}

.hero-2 .hero-newsletter .brush-wrap:hover {
  clip-path: url(#clip);
}

.hero-2 .hero-newsletter .brush-wrap:before {
  content: '';
  position: absolute;
  height: 70%;
  width: 100%;
  top: 14px;
  left: 0;
  background: #b92d2d;
  clip-path: url(#clip);
}

.hero-2 .hero-newsletter .brush-wrap h3 {
  /* font-size: 2rem; */
  text-transform: uppercase;
  margin: 0;
  color: white;
  z-index: 1;
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 1px;
  font-family: 'shlopregular';
  filter: drop-shadow(0px 0px 2px black);
}

.hero-2 .social-links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-2 .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.hero-2 .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Landing Section
--------------------------------------------------------------*/
.hero-landing {
  padding-top: 113px;
  padding-bottom: 60px;
}

.hero-landing .about-image {
  border-radius: 8px;
  overflow: hidden;
}

.hero-landing .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.hero-landing .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.hero-landing .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-landing .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .hero-landing .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.hero-landing .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-landing .about-content h2 {
    font-size: 1.8rem;
  }
}

.hero-landing .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero-landing .about-content p {
  margin-bottom: 1rem;
}

.hero-landing .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.hero-landing .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-landing .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.hero-landing .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero-landing .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.hero-landing .about-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--contrast-color);
}

.hero-landing .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero-landing .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-landing .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero-landing .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.hero-landing .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.hero-landing .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-landing .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero-landing .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.hero-landing .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.hero-landing .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.hero-landing .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.hero-landing .testimonial-section .testimonial-item .rating {
  color: #ffc107;
  font-size: 1rem;
}

.hero-landing .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-landing .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.hero-landing .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.hero-landing .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Hero2 Section
--------------------------------------------------------------*/
.hero2 {
  padding-top: 100px;
  position: relative;
  min-height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 100px;
}

.hero2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.hero2 .container,
.hero2 .container-fluid {
  position: relative;
  z-index: 2;
}

.hero2 .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero2 .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero2 .agency-name {
  margin-bottom: 1.5rem;
}

.hero2 .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero2 .main-heading {
  margin-bottom: 2rem;
}

.hero2 .main-heading h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
}

@media (max-width: 1200px) {
  .hero2 .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero2 .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero2 .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero2 .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero2 .divider {
    width: 100%;
  }
}

.hero2 .description {
  margin-bottom: 2.5rem;
}

.hero2 .description p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-button {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .cta-button {
    justify-content: center;
  }
}

@media (min-width: 993px) {
  .cta-button {
    justify-content: flex-start;
  }
}

.cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button .btn2 {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  gap: 0.75rem;
}


.cta-button .btn span {
  margin-right: 0.5rem;
}

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

.cta-button .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.cta-button .btn:hover i {
  transform: translateX(5px);
}

.cta-button .btn2 span {
  margin-right: 0.5rem;
}

.cta-button .btn2 i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button .btn2:hover {
  background-color: var(--nav-dropdown-hover-color);
  border-color: var(--nav-dropdown-hover-color);
  color: var(--contrast-color);
}

.cta-button .btn2:hover i {
  transform: translateX(5px);
}

.hero2 .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero2 .visual-content {
    flex-direction: column;
  }
}

.hero2 .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero2 .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.hero2 .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero2 .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero2 .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero2 .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero2 .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero2 .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero2 .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero2 .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

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

.hero .content-area {
  position: relative;
  z-index: 3;
}

@media (max-width: 992px) {
  .hero .content-area {
    margin-bottom: 3rem;
    text-align: center;
  }
}

.hero .hero-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .hero .hero-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-heading {
    font-size: 2.2rem;
  }
}

.hero .hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 992px) {
  .hero .hero-description {
    margin-bottom: 2rem;
  }
}

.hero .action-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero .action-buttons {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .hero .action-buttons {
    justify-content: center;
  }
}

@media (min-width: 993px) {
  .hero .action-buttons {
    justify-content: flex-start;
  }
}

.hero .primary-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

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

@media (max-width: 576px) {
  .hero .primary-btn {
    width: 100%;
    text-align: center;
  }
}

.hero .video-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.hero .video-link:hover {
  color: var(--accent-color);
}

.hero .video-link:hover .play-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.hero .play-text {
  font-weight: 500;
}

.hero .play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hero .image-section {
  position: relative;
}

.hero .hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero .pattern-overlay {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: -1;
}

@media (max-width: 768px) {
  .hero .pattern-overlay {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
  }
}

.hero .main-hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .stats-badge {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  max-width: 200px;
}

@media (max-width: 768px) {
  .hero .stats-badge {
    position: relative;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
  }
}

.hero .stats-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.hero .stats-text {
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--default-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.features .feature-card {
  display: flex;
  gap: 2rem;
  position: relative;
  padding: 2.5rem;
  background: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features .feature-card:hover .icon-wrapper img {
  transform: scale(1.1);
}

.features .feature-card:hover .feature-number {
  color: var(--accent-color);
}

.features .feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

.features .feature-card:nth-child(even) .content {
  text-align: right;
}

.features .feature-card:nth-child(even) .feature-number {
  left: auto;
  right: 0;
}

.features .icon-wrapper {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .icon-wrapper img {
  max-width: 120px;
  transition: transform 0.4s ease-out;
}

.features .content {
  flex: 1;
  position: relative;
}

.features .content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.features .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.features .feature-number {
  font-size: 5rem;
  font-weight: 800;
  position: absolute;
  top: -2.5rem;
  left: 0;
  opacity: 0.08;
  color: var(--heading-color);
  transition: color 0.3s ease;
  font-family: var(--heading-font);
  line-height: 1;
  z-index: 1;
}

@media (max-width: 991px) {
  .features .feature-card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .features .feature-card .icon-wrapper {
    flex: 0 0 100px;
  }

  .features .feature-card .icon-wrapper img {
    max-width: 100px;
  }

  .features .feature-card .feature-number {
    font-size: 4rem;
    top: -2rem;
  }

  .features .feature-card .content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {

  .features .feature-card,
  .features .feature-card:nth-child(even) {
    flex-direction: column;
    padding: 1.75rem;
  }

  .features .feature-card .content,
  .features .feature-card:nth-child(even) .content {
    text-align: center;
  }

  .features .feature-card .icon-wrapper,
  .features .feature-card:nth-child(even) .icon-wrapper {
    margin-bottom: 1rem;
  }

  .features .feature-card .feature-number,
  .features .feature-card:nth-child(even) .feature-number {
    font-size: 3.5rem;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .feature-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 1;
}

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

.cards .feature-card:hover .card-overlay {
  opacity: 1;
}

.cards .feature-card:hover .card-body {
  transform: translateY(0);
  opacity: 1;
}

.cards .feature-card:hover .card-title {
  opacity: 0;
}

.cards .feature-card:hover .icon-wrapper {
  transform: translateY(-20px) scale(0.9);
  background-color: var(--contrast-color);
}

.cards .feature-card:hover .icon-wrapper i {
  color: var(--accent-color);
}

.cards .feature-card .icon-wrapper {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 3;
  transition: all 0.4s ease;
}

.cards .feature-card .card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px 30px;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.4s ease;
  z-index: 3;
}

.cards .feature-card .card-title h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.cards .feature-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cards .feature-card .card-body h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cards .feature-card .card-body p {
  color: var(--contrast-color);
  font-size: 14px;
  margin-bottom: 0;
}

.cards .feature-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.cards .feature-card .card-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, color-mix(in srgb, var(--heading-color), transparent 30%) 100%); */
}

.cards .feature-card .card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

@media (max-width: 1199px) {
  .cards .feature-card {
    height: 300px;
  }

  .cards .feature-card .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: 20px;
    left: 20px;
  }

  .cards .feature-card .card-title,
  .cards .feature-card .card-body {
    padding: 20px 25px;
  }

  .cards .feature-card .card-title h3,
  .cards .feature-card .card-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .cards .feature-card .card-title p,
  .cards .feature-card .card-body p {
    font-size: 13px;
  }

  .cards .feature-card .card-title h3 {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .cards .feature-card {
    height: 280px;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .section-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.about-2 .section-intro .subtitle {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-2 .section-intro .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-2 .section-intro .title {
    font-size: 3rem;
  }
}

.about-2 .section-intro .desc {
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-2 .highlight-cards {
  margin-top: 5rem;
}

.about-2 .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 350px;
}

.about-2 .highlight-cards .highlight-card.elevated {
  transform: translateY(2rem);
}

@media (max-width: 768px) {
  .about-2 .highlight-cards .highlight-card.elevated {
    transform: translateY(0);
  }
}

.about-2 .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-2 .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.about-2 .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  transition: transform 0.3s ease;
}

.about-2 .highlight-cards .highlight-card .card-content .card-title {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.about-2 .highlight-cards .highlight-card:hover img {
  transform: scale(1.1);
}

.about-2 .highlight-cards .highlight-card:hover .card-content {
  transform: translateY(-5px);
}

.about-2 .values-section {
  margin-top: 6rem;
}

.about-2 .values-section .values-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-2 .values-section .values-image img {
  width: 100%;
  transition: transform 0.7s ease;
}

.about-2 .values-section .values-image:hover img {
  transform: scale(1.05);
}

.about-2 .values-section .values-content {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .about-2 .values-section .values-content {
    padding: 0 0 0 2rem;
  }
}

.about-2 .values-section .values-content .values-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-2 .values-section .values-content .values-title {
    font-size: 2.25rem;
  }
}

.about-2 .values-section .values-content .values-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-2 .values-section .values-content .values-list .value-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.about-2 .values-section .values-content .values-list .value-item .value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.about-2 .values-section .values-content .values-list .value-item .value-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-2 .values-section .values-content .values-list .value-item .value-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline;
}

.about-2 .values-section .values-content .values-list .value-item .value-text p {
  display: inline;
  margin-left: 0.5rem;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

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

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .features-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-2 .features-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.features-2 .features-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.features-2 .features-image:hover img {
  transform: scale(1.05);
}

.features-2 .features-image .floating-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.features-2 .features-image .floating-card .card-content {
  display: flex;
  align-items: center;
}

.features-2 .features-image .floating-card .card-content i {
  font-size: 32px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features-2 .features-image .floating-card .card-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.features-2 .features-image .floating-card .card-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 768px) {
  .features-2 .features-image img {
    height: 400px;
  }

  .features-2 .features-image .floating-card {
    bottom: 20px;
    right: 20px;
    padding: 15px;
  }
}

.features-2 .features-content {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .features-2 .features-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.features-2 .features-content h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.features-2 .features-content .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-2 .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.features-2 .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.features-2 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.features-2 .feature-item:hover .feature-icon {
  background: var(--accent-color);
}

.features-2 .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.features-2 .feature-item .feature-content {
  flex: 1;
}

.features-2 .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.features-2 .feature-item .feature-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-2 .feature-item .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.features-2 .feature-item .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .features-2 .features-content h3 {
    font-size: 28px;
  }

  .features-2 .features-content .lead {
    font-size: 16px;
  }

  .features-2 .feature-item {
    padding: 20px;
  }

  .features-2 .feature-item .feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .features-2 .feature-item .feature-icon i {
    font-size: 20px;
  }

  .features-2 .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .features-2 .map-container iframe {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  overflow: hidden;
}

.call-to-action .cta-wrapper {
  background: linear-gradient(to right, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 15px;
  padding: 50px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 30px;
    text-align: center;
  }
}

.call-to-action .cta-book-image {
  position: relative;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.call-to-action .cta-book-image img {
  border-radius: 8px;
  max-width: 100%;
}

.call-to-action .cta-book-image:hover {
  transform: rotate(0) translateY(-10px);
}

@media (max-width: 768px) {
  .call-to-action .cta-book-image {
    margin: 0 auto 30px;
    max-width: 200px;
  }
}

.call-to-action .cta-content {
  position: relative;
  z-index: 1;
}

.call-to-action .cta-content .badge {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.call-to-action .cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .call-to-action .cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 24px;
  }
}

.call-to-action .cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.call-to-action .cta-content .cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.call-to-action .cta-content .cta-features .feature-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.call-to-action .cta-content .cta-features .feature-item i {
  font-size: 18px;
  margin-right: 8px;
}

.call-to-action .cta-content .cta-features .feature-item span {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .call-to-action .cta-content .cta-features {
    justify-content: center;
  }

  .call-to-action .cta-content .cta-features .feature-item {
    margin-right: 0;
  }
}

.call-to-action .cta-content .countdown-timer {
  margin-bottom: 30px;
}

.call-to-action .cta-content .countdown-timer p {
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.9;
}

.call-to-action .cta-content .countdown-timer .countdown {
  display: flex;
  gap: 15px;
}

.call-to-action .cta-content .countdown-timer .countdown div {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 70px;
  text-align: center;
}

.call-to-action .cta-content .countdown-timer .countdown div h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--contrast-color);
}

.call-to-action .cta-content .countdown-timer .countdown div h4 {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 500;
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .call-to-action .cta-content .countdown-timer .countdown div {
    min-width: 50px;
    padding: 8px 10px;
  }

  .call-to-action .cta-content .countdown-timer .countdown div h3 {
    font-size: 18px;
  }

  .call-to-action .cta-content .countdown-timer .countdown div h4 {
    font-size: 10px;
  }
}

.call-to-action .cta-content .cta-buttons {
  display: flex;
  gap: 15px;
}

.call-to-action .cta-content .cta-buttons .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.call-to-action .cta-content .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-3px);
}

.call-to-action .cta-content .cta-buttons .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.call-to-action .cta-content .cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .call-to-action .cta-content .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .call-to-action .cta-content .cta-buttons .btn-primary,
  .call-to-action .cta-content .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.0);
}

.testimonials .review {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .review:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.testimonials .review h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.testimonials .review small {
  color: #ccc;
}

.testimonials .tripadvisor {
  background: rgba(34, 34, 34, 0.8);
  padding: 30px 20px;
  text-align: center;
}

.testimonials .tripadvisor blockquote {
  font-style: italic;
  margin: 0 auto;
  max-width: 800px;
}

.testimonials .links {
  text-align: center;
  margin: 30px 0;
}

.testimonials .links a {
  color: var(--accent-color);
  text-decoration: none;
  margin: 0 10px;
}

.testimonials .cta {
  background: var(--accent-color);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.testimonials .cta h2 {
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .testimonials header h1 {
    font-size: 2rem;
  }

  .testimonials header p {
    font-size: 1rem;
  }

  .testimonials .review {
    padding: 15px;
  }
}

.testimonials .skull-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
  animation: fadeIn 1s ease-in-out;
}

.testimonials .skull-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonials .skull {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 8px #ff0000, 0 0 15px #ff4d4d;
  animation: pulseGlow 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.testimonials .skull:hover {
  transform: scale(1.2) rotate(10deg);
}

.testimonials .rating-text {
  font-size: 1rem;
  color: #eee;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 8px #ff0000, 0 0 15px #ff4d4d;
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 15px #ff4d4d, 0 0 30px #ff4d4d;
    transform: scale(1.1);
  }

  100% {
    text-shadow: 0 0 8px #ff0000, 0 0 15px #ff4d4d;
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Join The Team Section
--------------------------------------------------------------*/
.join-the-team {
  padding-top: 60px;
}

.join-the-team .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .join-the-team .hero-title {
    font-size: 2.5rem;
  }
}

.join-the-team .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.join-the-team .image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .join-the-team .image-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}

.join-the-team .image-grid .grid-item {
  overflow: hidden;
  border-radius: 15px;
}

.join-the-team .image-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.join-the-team .image-grid .grid-item img:hover {
  transform: scale(1.05);
}

.join-the-team .image-grid .item-1 {
  grid-column: 1/4;
  grid-row: 1/2;
}

@media (max-width: 768px) {
  .join-the-team .image-grid .item-1 {
    grid-column: 1/7;
  }
}

.join-the-team .image-grid .item-2 {
  grid-column: 4/7;
  grid-row: 1/2;
}

@media (max-width: 768px) {
  .join-the-team .image-grid .item-2 {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}

.join-the-team .image-grid .item-3 {
  grid-column: 7/13;
  grid-row: 1/3;
}

@media (max-width: 768px) {
  .join-the-team .image-grid .item-3 {
    grid-column: 4/7;
    grid-row: 2/3;
  }
}

.join-the-team .image-grid .item-4 {
  grid-column: 1/3;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .join-the-team .image-grid .item-4 {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

.join-the-team .image-grid .item-5 {
  grid-column: 3/5;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .join-the-team .image-grid .item-5 {
    grid-column: 3/5;
    grid-row: 3/4;
  }
}

.join-the-team .image-grid .item-6 {
  grid-column: 5/7;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .join-the-team .image-grid .item-6 {
    grid-column: 5/7;
    grid-row: 3/4;
  }
}

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/
.contact-us .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact-us .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact-us .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact-us .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact-us .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-us .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 576px) {
  .contact-us .map-container iframe {
    height: 350px;
  }
}