

@charset "UTF-8";

: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: "Raleway",  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: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f95e4d; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #f95e4d; /* 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: #35211f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f95e4d; /* 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: #faf9f6;
  --surface-color: #ffffff;
}

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

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

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

a {
  color:#b9202d;
  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: #b91e2b;
      font-weight: 700;

}

/* 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: rgb(186 31 45);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 3px 0;
  transition: all 0.5s;
  z-index: 997;
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
    padding: 10px;
    margin: 0;
    margin-top: 55px;
    z-index: 1000;
    position: absolute;
    max-height: 108px;
    background: #fff;
}

@media only screen and (max-width: 1024px) {
    #header .logo img {
        padding: 10px;
        margin: 0;
        margin-top: 52px;
        z-index: 1000;
        position: absolute;
        max-height: 78px;
    }
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #ffb900;
    font-size: 22px;
    padding: 5px 24px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 600;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color:#353432;
}

/*--------------------------------------------------------------
# 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: 19px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;font-family: "Cormorant Infant", serif;
  }

  .navmenu a em,
  .navmenu a:focus em {
    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: #ffe000;
  }

  .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: #fff;
  background: #bb202e;
  font-size: 19px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul a {
  color:#ffffff!important;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

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

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

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color:color-mix(in srgb, var(--default-color), #222120 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}
footer#footer a {
    color: #ffb900;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

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

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

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

.scroll-top em {
 font-size: 22px;
    color: #ff5f03;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #ffb900, transparent 20%);
  color: #000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


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

@media (max-width: 1199px) {

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

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

.section-title .ft {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title .ft::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  font-family: "Cormorant Infant", serif;
}
section#featured-tours {
    padding: 20px 0px;
}
/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/travel/showcase-1.webp") center center no-repeat;
  background-size: cover;
  padding: 120px 0;
  min-height: 80vh;
  display: grid;
  place-content: center;
}

.travel-hero .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.travel-hero .content .lead {
  font-size: 1.25rem;
  max-width: 600px;
}

.travel-hero .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-hero .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.travel-hero .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.travel-hero .btn.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.travel-hero .btn.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.travel-hero .booking-form {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.travel-hero .booking-form label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.travel-hero .booking-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  height: auto;
  background-color: transparent;
  color: var(--default-color);
}

.travel-hero .booking-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.travel-hero .booking-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-hero .booking-form .btn-accent {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.travel-hero .booking-form .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

  .travel-hero .content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .travel-hero .content {
    text-align: center;
  }

  .travel-hero .content h1 {
    font-size: 2rem;
  }

  .travel-hero .content .lead {
    font-size: 1rem;
  }

  .travel-hero .d-flex {
    justify-content: center !important;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content-grid {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .why-us .content-grid {
    margin-bottom: 3rem;
  }
}

.why-us .about-block {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.why-us .about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us .about-block .about-header {
  margin-bottom: 2rem;
}

.why-us .about-block .about-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.3;
}

.why-us .about-block .about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.why-us .about-block .feature-list {
  margin-top: 2rem;
}

.why-us .about-block .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.why-us .about-block .feature-list .feature-item i {
  color: #ffb900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-us .about-block .feature-list .feature-item span {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-us .about-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .why-us .about-block .about-header h3 {
    font-size: 1.6rem;
  }
}

.why-us .section-badge {
  display: inline-block;
  background: 
 color-mix(in srgb, #b9212e, #a61d29 85%);
    color: #ffb900;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .image-showcase {
  position: relative;
  height: 100%;
}

.why-us .image-showcase .main-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.why-us .image-showcase .main-image img {
  height: 100%;
  object-fit: cover;
}

.why-us .image-showcase .main-image .overlay-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-us .image-showcase .main-image .overlay-badge .badge-content i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .image-showcase .floating-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.why-us .image-showcase .floating-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.why-us .image-showcase .floating-card .card-content .rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content .rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.why-us .image-showcase .floating-card .card-content .rating span {
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .why-us .image-showcase .main-image {
    min-height: 300px;
  }

  .why-us .image-showcase .overlay-badge {
    top: 15px;
    right: 15px;
    padding: 0.8rem 1rem;
  }

  .why-us .image-showcase .floating-card {
    position: static;
    margin-top: 1rem;
    transform: none;
  }
}

.why-us .why-choose-wrapper {
  margin-top: 6rem;
}

.why-us .why-choose-wrapper .section-header {
  margin-bottom: 4rem;
}

.why-us .why-choose-wrapper .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper .section-header h3 {
    font-size: 2rem;
  }
}

.why-us .why-choose-wrapper .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper {
    margin-top: 4rem;
  }

  .why-us .why-choose-wrapper .section-header {
    margin-bottom: 2.5rem;
  }
}

.why-us .feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--surface-color);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.why-us .feature-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us .feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.why-us .feature-box:hover .feature-icon-wrapper .feature-icon {
  background:#ffb900;
  color: var(--contrast-color);
}

.why-us .feature-box .feature-icon-wrapper {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.why-us .feature-box .feature-icon-wrapper .feature-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: #ff5f03;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-us .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.why-us .feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us .feature-box {
    padding: 1.5rem;
  }

  .why-us .feature-box .feature-icon-wrapper .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .why-us .feature-box h4 {
    font-size: 1.2rem;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

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

.about .content .lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.about .content p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stat-item {
  padding: 1.5rem 0;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .btn-learn-more span {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.about .btn-learn-more i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover {
  color: var(--accent-color);
}

.about .btn-learn-more:hover span {
  border-bottom-color: var(--accent-color);
}

.about .btn-learn-more:hover i {
  transform: translateX(4px);
}

.about .image-stack {
  position: relative;
}

.about .image-stack .image-main {
  position: relative;
  z-index: 1;
}

.about .image-stack .image-main img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-stack .image-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
  max-width: 200px;
}

@media (max-width: 768px) {
  .about .image-stack .image-overlay {
    bottom: -20px;
    right: -20px;
    max-width: 150px;
  }
}

.about .image-stack .image-overlay img {
  border-radius: 8px;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .feature-item {
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease;
}

.about .feature-item:hover {
  transform: translateY(-5px);
}

.about .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about .feature-item h5 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

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

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

  .about .image-stack {
    margin-top: 3rem;
  }

  .about .stat-item {
    padding: 1rem 0;
  }

  .about .stat-item .stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Travel Destinations Section
--------------------------------------------------------------*/
.travel-destinations .filter-tabs {
  text-align: center;
  margin-bottom: 40px;
}

.travel-destinations .filter-tabs .destination-filters {
  display: inline-flex;
  background: var(--surface-color);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  list-style: none;
  margin: 0;
  gap: 4px;
}

@media (max-width: 768px) {
  .travel-destinations .filter-tabs .destination-filters {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 6px;
    gap: 2px;
  }
}

.travel-destinations .filter-tabs .destination-filters li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .travel-destinations .filter-tabs .destination-filters li {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.travel-destinations .filter-tabs .destination-filters li:hover,
.travel-destinations .filter-tabs .destination-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
  transform: translateY(-1px);
}

.travel-destinations .destination-grid .destination-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
  cursor: pointer;
}

.travel-destinations .destination-grid .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-destinations .destination-grid .destination-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 70%) 0%, color-mix(in srgb, var(--default-color), transparent 40%) 100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.travel-destinations .destination-grid .destination-overlay:hover img {
  transform: scale(1.05);
}

.travel-destinations .destination-grid .destination-overlay:hover::before {
  background: linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 80%) 0%, color-mix(in srgb, var(--default-color), transparent 50%) 100%);
}

.travel-destinations .destination-grid .destination-overlay:hover .overlay-content {
  transform: translateY(-8px);
}

.travel-destinations .destination-grid .destination-overlay .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transition: transform 0.3s ease;
  color: #fff;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper {
  margin-bottom: 16px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.featured {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.popular {
  background: linear-gradient(135deg, #4ecdc4, #70e2d9);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.adventure {
  background: linear-gradient(135deg, #ff9f43, #ffb366);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.culture {
  background: linear-gradient(135deg, #c44569, #d76894);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.luxury {
  background: linear-gradient(135deg, #6c5ce7, #8b7ded);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.romantic {
  background: linear-gradient(135deg, #ff6b9d, #ff8bb5);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.vibrant {
  background: linear-gradient(135deg, #ff9f43, #ffb366);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.scenic {
  background: linear-gradient(135deg, #00b894, #00d2aa);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper {
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  color: #fff;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--heading-font);
  color: #fff;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-excerpt {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .info-item i {
  font-size: 14px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .tours-count {
  font-size: 13px;
  opacity: 0.8;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .price,
.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .price-tag {
  font-weight: 600;
  font-size: 16px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn:hover {
  color: white;
  transform: translateX(4px);
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn i {
  transition: transform 0.3s ease;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn:hover i {
  transform: translateX(4px);
}

.travel-destinations .destination-grid .destination-large .destination-overlay {
  height: 480px;
}

@media (max-width: 992px) {
  .travel-destinations .destination-grid .destination-large .destination-overlay {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-large .destination-overlay {
    height: 300px;
  }
}

.travel-destinations .destination-grid .destination-medium .destination-overlay {
  height: 320px;
}

@media (max-width: 992px) {
  .travel-destinations .destination-grid .destination-medium .destination-overlay {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-medium .destination-overlay {
    height: 250px;
  }
}

.travel-destinations .destination-grid .destination-small .destination-overlay {
  height: 238px;
}

@media (max-width: 992px) {
  .travel-destinations .destination-grid .destination-small .destination-overlay {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-small .destination-overlay {
    height: 180px;
  }
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content {
  padding: 16px;
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info {
  margin-bottom: 0;
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info .tours-count,
.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info .price {
  font-size: 12px;
}

.travel-destinations .explore-more {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
  padding: 40px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-destinations .explore-more h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.travel-destinations .explore-more p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.6;
}

.travel-destinations .explore-more .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.travel-destinations .explore-more .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.travel-destinations .explore-more .btn-explore:hover i {
  transform: translateX(4px);
}

.travel-destinations .explore-more .btn-explore i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

@media (max-width: 768px) {
  .travel-destinations .explore-more {
    padding: 30px 20px;
  }

  .travel-destinations .explore-more h4 {
    font-size: 20px;
  }

  .travel-destinations .explore-more p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-overlay .overlay-content {
    padding: 16px;
  }

  .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h3 {
    font-size: 20px;
  }

  .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-excerpt {
    font-size: 13px;
  }
}



/*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
.gallery-slider {
  overflow: hidden;
}

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

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

.gallery-slider .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

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

.gallery-slider .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-slider .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

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

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

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

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

.gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

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

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

@media (max-width: 991px) {
  .gallery-slider .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery-slider .swiper-button-next,
  .gallery-slider .swiper-button-prev {
    display: none;
  }
}

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

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 70px 0;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

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

@media (min-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

.gallery .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery .gallery-item.featured {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery .gallery-item.featured {
    grid-column: span 2;
  }
}

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

.gallery .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.gallery .btn-view-more {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery .btn-view-more i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.gallery .btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.gallery .btn-view-more:hover i {
  transform: translateX(5px);
}


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

.title2 {
    font-size: 25px;
    font-weight: 700;
    color: #ffb900;
    font-family: "Cormorant Infant", serif;
}
.cta {
   font-weight: 700;
    padding: 1px 0;
    background: #e9e6df;
    color: #b9202d;
    font-size: 20px;
}

.container-fluid.bg {
    background: linear-gradient(135deg, #353432, #83807c);
}
.title3 {
    color: #fff;
}.para {
    color: #fff;
}

.agileits_reservation {
    z-index: 0;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: -130px;
    position: relative;
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;padding-right: 15px;
    padding-left: 15px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 16px;
    padding: 10px 20px 10px 20px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;    font-weight: 700;

}
.agileits_reservation em.bi {
    position: absolute;
    color: #ffb900;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 5px;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background: #ff5f03;
    color: #ffffff;
    padding: 6px 0;
    border: none;
    font-size: 20px;
    outline: none;
    font-weight: 700;
    letter-spacing: 2px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
@media (max-width: 480px){
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 46px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}}

@media (max-width: 480px){
.col-xs-12.span1_of_1.book_date {
    width: 100% !important;
}
.agileits_reservation {
    z-index: 0;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: 20px!important;
    
}
}
@media only screen and (max-width: 768px){
.col-lg-2.col-sm-4.col-xs-12.span1_of_1.book_date.both {
    clear: both;
}

.agileits_reservation {
    z-index: 0;
    background-image: linear-gradient(to bottom, #f1f7f417 16%, #1c1d1cd1 68%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 5px 8px 5px rgb(24 24 23 / 42%);
    margin-top: -197px;
    position: relative;
}
}



























































/* ---- Sub Pages Codes Starting ---- */
.active-nav-link {
    color: #ffb900 !important;
}

/* ---- AMENITIES SECTION STYLES ---- */
#amenities {
    position: relative;
    overflow: hidden;
}
.amenities-content-wrapper {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    margin-bottom: -40px;
}

/* ---- HORIZONTAL TIMELINE FOR AMENITIES ---- */
.timeline-container {
    position: relative;
    padding-top: 50px;
    margin-bottom: 50px;
}
.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ba1f2d, #ba1f2d);
    transform: translateY(-50%);
    z-index: 1;
}
.timeline-progress {
    position: absolute;
    top: 50px;
    left: 0;
    height: 4px;
    background: #ffb900;
    transform: translateY(-50%);
    z-index: 2;
    width: 0%;
    transition: width 0.5s ease;
}
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}
.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.timeline-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid #ba1f2d;
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
    transition: all 0.3s ease-in-out;
}
.timeline-item.active .timeline-marker {
    background: #ffb900;
    border-color: #ffb900;
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(255, 185, 0, 0.2);
}
.timeline-content {
    text-align: center;
    opacity: 0.7;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    width: 160px;
}
.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateY(0);
}
.timeline-icon {
    font-size: 2rem;
    color: #ba1f2d;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}
.timeline-item.active .timeline-icon {
    color: #ffb900;
    transform: scale(1.2);
}
.timeline-content h3 {
    color: #ba1f2d;
    margin-bottom: 8px;
}

/* ---- AMENITY DETAIL BOXES ---- */
.amenity-details-wrapper {
    position: relative;
    min-height: 400px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.amenity-detail {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(186, 31, 45, 0.1);
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-sizing: border-box;
}
.amenity-detail.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}
.detail-image {
    width: 45%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(186, 31, 45, 0.15);
    flex-shrink: 0;
}
.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.amenity-detail:hover .detail-image img {
    transform: scale(1.05);
}
.detail-content {
    width: 55%;
    padding-left: 40px;
    box-sizing: border-box;
}
.detail-content h3 {
    color: #ffb900;
    margin-bottom: 15px;
}
.detail-content p {
    color: black;
    margin-bottom: 20px;
}

/* ---- RESPONSIVE ADJUSTMENTS ---- */
@media (max-width: 992px) {
    .amenity-detail {
        flex-direction: column;
        padding: 30px;
        align-items: stretch;
    }
    .detail-image {
        width: 100%;
        height: 250px;
        margin-bottom: 25px;
    }
    .detail-content {
        width: 100%;
        padding: 0;
    }
    .timeline-line, .timeline-progress { display: none; }
    .timeline { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .timeline-item { width: calc(33.33% - 30px); margin-bottom: 20px; }
    .timeline-container { padding-top: 0; }
}
@media (max-width: 768px) {
    .amenity-details-wrapper { min-height: 500px; }
    .timeline-item { width: calc(50% - 20px); }
}
@media (max-width: 576px) {
    #amenities { padding: 60px 15px; }
    .timeline-item { width: 100%; max-width: 250px; margin: 0 auto 15px; }
    .amenity-detail { padding: 20px; }
    .detail-image { height: 200px; }
}

/* Reset and base styles - scoped to our amenities section */
.amenities-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.amenities-bg {
    position: relative;
    background-color: #353432;
    z-index: 1;
    overflow: hidden;
    margin-top: 30px;
}
.amenities-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Section container */
.amenities-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

/* Section header */
.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}
.amenities-header h2 {
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.amenities-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffb900;
    border-radius: 2px;
}
.amenities-header p {
    color: #dddddd;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Flip card container */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 220px;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.flip-card-front {
    background-color: #ffffff;
    color: #ba1f2d;
    border: 2px solid #ffb900;
}
.flip-card-back {
    background-color: #ffb900;
    color: #000000;
    transform: rotateY(180deg);
}
.amenity-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.amenity-name {
    /* Styles removed for global font settings */
}
.amenity-description {
    /* Styles removed for global font settings */
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .flip-card {
        height: 200px;
    }
    .amenities-section {
        padding: 60px 15px;
    }
}

/* BUBBLE ANIMATION STYLES */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bubble {
    position: absolute;
    list-style: none;
    display: block;
    border-radius: 50%;
    background-color: #ffb900;
    bottom: -150px;
    animation: fall 25s linear infinite;
    opacity: 0.3;
    box-shadow: 0 0 10px #ffb900, 0 0 5px #ffb900;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        top: -10%;
    }
    100% {
        transform: translateY(0) rotate(720deg);
        opacity: 0;
        top: 110%;
    }
}
.bubble:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.bubble:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.bubble:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.bubble:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.bubble:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.bubble:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.bubble:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.bubble:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.bubble:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.bubble:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 21s; }
.bubble:nth-child(11) { left: 5%; width: 40px; height: 40px; animation-delay: 5s; animation-duration: 30s; }
.bubble:nth-child(12) { left: 90%; width: 30px; height: 30px; animation-delay: 8s; animation-duration: 15s; }


/* =================================================================
   1. STYLES FOR THE "ATTRACTIONS" SECTION
   ================================================================= */
.attractions-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}
.attractions-container .category {
    border-radius: 16px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    background-color: #fff;
}
.attractions-container .category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}
.attractions-container .category-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 4px solid #ffb900;
}
.attractions-container .category-header {
    padding: 20px;
    background-color: #ba1f2d;
    color: white;
    position: relative;
    margin-top: -4px;
}
.attractions-container .category-header h2 {
    color: white;
    margin: 0;
}
.attractions-container .attraction-list {
    padding: 20px;
}
.attractions-container .attraction {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.attractions-container .attraction:last-child {
    border-bottom: none;
}
.attractions-container .attraction-info {
    flex: 1;
}
.attractions-container .attraction-name {
    margin-bottom: 4px;
    color: #000;
}
.attractions-container .attraction-type {
    color: #000;
}
.attractions-container .attraction-distance {
    background-color: #ffb900;
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}
.attractions-container .attraction:hover .attraction-distance {
    background-color: #ba1f2d;
    color: white;
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .attractions-container {
        grid-template-columns: 1fr;
    }
    .attractions-container .category {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* =================================================================
   2. STYLES FOR THE "ROOSEVELT AMENITIES" SECTION
   ================================================================= */
.roosevelt-amenities *, .roosevelt-amenities *::before, .roosevelt-amenities *::after {
    box-sizing: border-box;
}
.roosevelt-amenities {
    width: 100%;
    padding: 2rem 0;
}
.roosevelt-amenities-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}
.roosevelt-category-section {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.roosevelt-category-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.roosevelt-category-title {
    color: #ba1f2d;
    margin-top: 0;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
    font-size: 35px;
}
.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ffb900;
    margin: 0.8rem auto 0;
    border-radius: 2px;
}
.roosevelt-category-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.roosevelt-category-image:hover img {
    transform: scale(1.08);
}
.roosevelt-amenities-features-grid {
    width: 100%;
}
.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.roosevelt-amenities-feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(186, 31, 45, 0.15);
    transition: all 0.3s ease-in-out;
}
.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(255, 185, 0, 0.05);
    padding-left: 15px;
}
.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}
.roosevelt-amenities-feature-icon {
    color: #ffb900;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    min-width: 28px;
    text-align: center;
}
.roosevelt-amenities-feature-text {
    color: #000 !important;
    font-size: 20px;
}
@media (max-width: 1280px) {
    .roosevelt-amenities-container {
        padding: 0 1.5rem;
    }
}
@media (max-width: 992px) {
    .roosevelt-amenities {
        padding: 4rem 0;
    }
    .roosevelt-amenities .roosevelt-categories-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 576px) {
    .roosevelt-amenities .roosevelt-category-title:after {
        width: 50px;
        height: 3px;
    }
}


/* =================================================================
   3. LOCATION SECTION
   ================================================================= */
.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: white;
}
.location-title {
    text-align: center;
    color: #ba1f2d;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}
.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffb900;
}
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}
.location-info {
    flex: 1;
    min-width: 300px;
}
.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(186, 31, 45, 0.1);
    border: 1px solid rgba(186, 31, 45, 0.1);
}
.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ba1f2d;
}
.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}
.coordinate i {
    color: #ffb900;
    font-size: 1.2rem;
}
.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(186, 31, 45, 0.1);
    border: 1px solid rgba(186, 31, 45, 0.1);
}
.directions-form label {
    color: #ba1f2d;
    text-align: left;
}
.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.directions-form input:focus {
    outline: none;
    border-color: #ba1f2d;
    box-shadow: 0 0 0 3px rgba(186, 31, 45, 0.2);
}
.directions-form button {
    background: #ba1f2d;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.directions-form button:hover {
    background: #ffb900;
    color: black;
    transform: translateY(-2px);
}
.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(186, 31, 45, 0.1);
    border: 1px solid rgba(186, 31, 45, 0.1);
    transition: transform 0.3s ease;
}
.location-map:hover {
    transform: translateY(-5px);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    .location-info, .location-map {
      width: 100%;
    }
}


/* =================================================================
   4. CONTACT SECTION
   ================================================================= */
.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
}
.contact-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: auto;
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-card h2 {
    color: #ba1f2d;
    margin-bottom: 25px;
    position: relative;
}
.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ffb900;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.info-item em {
    color: #ffb900;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 25px;
}
.info-text .title {
    margin-bottom: 5px;
    color: #ba1f2d;
}
.info-text p, .info-text a {
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
    font-weight: 500;
}
.info-text a:hover {
    color: #ba1f2d;
}
.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    .map-container {
        height: 350px;
    }
}


/* =================================================================
   5. HOTEL NAVIGATION SECTION
   ================================================================= */
#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}
#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}
#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ba1f2d;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #ffb900;
    height: 120px;
}
#hotel-navigation-section .nav-link:hover {
    background: #ba1f2d;
    color: white;
    box-shadow: 0 8px 16px rgba(186, 31, 45, 0.2);
    transform: translateY(-3px);
}
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffb900;
    transition: all 0.3s ease;
}
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}
#hotel-navigation-section .nav-text {
    margin-bottom: 5px;
}
#hotel-navigation-section .nav-desc {
    opacity: 0.8;
}
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    #hotel-navigation-section {
        padding: 30px 0;
    }
}


/* =================================================================
   6. FAQ SECTION
   ================================================================= */
.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-header h2 {
    color: #ba1f2d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ba1f2d, #ffb900);
    border-radius: 2px;
}
.faq-header p {
    color: black;
    max-width: 700px;
    margin: 0 auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}
.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #ba1f2d;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}
.faq-icon {
    width: 40px;
    height: 40px;
    background: #ffb900;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}
.faq-question-text {
    color: #333;
}
.faq-answer {
    padding: 25px;
    position: relative;
}
.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ba1f2d, transparent);
}
.faq-answer p {
    margin: 0;
    color: #555;
}
.faq-answer a {
    color: #ba1f2d;
    text-decoration: none !important;
}
.faq-answer a:hover {
    color: #ffb900;
    border-bottom-color: #ffb900;
}
.faq-answer .fa-caret-right {
    color: #ffb900;
    margin-right: 8px;
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question, .faq-answer {
        padding: 20px;
    }
}


/* =================================================================
   7. HIGHLIGHTED ATTRACTION SECTION
   ================================================================= */
.highlighted-attraction-section {
    color: black;
    text-align: center;
}
.highlighted-container {
    max-width: 1200px;
    margin: 40px auto;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
}
.highlighted-header {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f7f9fc, #dfeaf1);
}
.highlighted-title {
    margin-bottom: 10px;
}
.highlighted-subtitle {
    /* Styles removed for global font settings */
}
.highlighted-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 30px;
}
.highlighted-description {
    flex: 1;
    text-align: left;
}
.highlighted-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.highlighted-features li {
    margin-bottom: 15px;
    color: #444;
    display: flex;
    align-items: center;
}
.highlighted-features li strong {
    color: #ffb900;
}
.highlighted-text {
    color: #444;
    margin-bottom: 15px;
}
.highlighted-reservation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ffb900;
    color: #000 !important;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.highlighted-reservation-btn:hover {
    background: #ba1f2d;
    color: #fff !important;
    transform: translateY(-3px);
}
.highlighted-image {
    flex: 1;
    max-height: 300px;
    overflow: hidden;
}
.highlighted-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlighted-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .highlighted-content {
        flex-direction: column;
    }
}
.btn-get-started {
    background: #ba1f2d;
    padding: 10px 25px;
    margin-right: 15px;
    border-radius: 8px;
    color: #fff;
}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  background: linear-gradient(color-mix(in srgb, #03101361, transparent 30%), color-mix(in srgb, #031013, transparent 30%)), url(../img/exterior.webp) center center no-repeat;
  background-size: cover;
  padding: 120px 0;
  min-height: 80vh;
  display: grid;
  place-content: center;
}

.travel-hero .content .h-1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffb900;
}

.travel-hero .content .lead {
  font-size: 1.25rem;
  max-width: 600px;
  color: #fff;
}

.travel-hero .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-hero .btn.btn-primary {
  background-color: #ffb900;
  border: 2px solid #ba1f2d;
  color: #ba1f2d;
  font-size: 20px;
}

.travel-hero .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.travel-hero .btn.btn-outline-light {
  background-color: transparent;
  border: 2px solid #ffb900;
  color: #ffffff;
  font-size: 20px;
}

@media (max-width: 992px) {
  .travel-hero {
    padding: 80px 0;
  }
  .travel-hero .content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .travel-hero .content {
    text-align: center;
  }
  .travel-hero .content h1 {
    font-size: 2rem;
  }
  .travel-hero .content .lead {
    font-size: 1rem;
  }
  .travel-hero .d-flex {
    justify-content: center !important;
  }
}
.content {
    padding-top: 110px;
}

.hero-2 {
  padding: 100px 0 60px;
}
.hero-2 .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.hero-2 .hero-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .hero-2 .hero-heading {
    font-size: 2.2rem;
  }
}
.hero-2 .hero-description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-2 .hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-2 .hero-actions .btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 19px;
  font-weight: 600;
  color: #ba1f2d;
  background-color: #ffb900;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero-2 .hero-actions .btn-primary-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.hero-2 .hero-actions .btn-primary-action i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.hero-2 .hero-actions .btn-primary-action:hover i {
  transform: translateX(4px);
}
.hero-2 .hero-actions .btn-outline-action {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero-2 .hero-actions .btn-outline-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}
.hero-2 .hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-2 .hero-stats .stat-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.15rem;
}
.hero-2 .hero-stats .stat-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-weight: 500;
}
.hero-2 .mosaic-gallery {
  display: flex;
  gap: 1rem;
  position: relative;
}
@media (max-width: 576px) {
  .hero-2 .mosaic-gallery {
    gap: 0.75rem;
  }
}
.hero-2 .mosaic-gallery .mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
@media (max-width: 576px) {
  .hero-2 .mosaic-gallery .mosaic-col {
    gap: 0.75rem;
  }
}
.hero-2 .mosaic-gallery .mosaic-col-left {
  padding-top: 2.5rem;
}
@media (max-width: 576px) {
  .hero-2 .mosaic-gallery .mosaic-col-left {
    padding-top: 1.5rem;
  }
}
.hero-2 .mosaic-gallery .mosaic-col-right {
  padding-bottom: 2.5rem;
}
@media (max-width: 576px) {
  .hero-2 .mosaic-gallery .mosaic-col-right {
    padding-bottom: 1.5rem;
  }
}
.hero-2 .mosaic-gallery .mosaic-img {
  overflow: hidden;
  border-radius: 16px;
}
.hero-2 .mosaic-gallery .mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-2 .mosaic-gallery .mosaic-img img:hover {
  transform: scale(1.06);
}
.hero-2 .mosaic-gallery .mosaic-large {
  flex: 1.6;
}
.hero-2 .mosaic-gallery .mosaic-small {
  flex: 1;
}
.hero-2 .mosaic-gallery .floating-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background-color: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  white-space: nowrap;
  z-index: 2;
}
.hero-2 .mosaic-gallery .floating-badge i {
  font-size: 1.25rem;
  color: var(--accent-color);
}
.hero-2 .mosaic-gallery .floating-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading-color);
}
.featured-destinations {
    padding: 0px 20px;
}
/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .destination-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-destinations .destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-destinations .destination-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.featured-destinations .destination-card:hover .explore-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.featured-destinations .image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.featured-destinations .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-destinations .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent 50%);
}

.featured-destinations .image-wrapper .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .image-wrapper .badge.featured {
  background: #ba1f2d;
  color: white;
}

.featured-destinations .image-wrapper .badge.new {
  background: #28a745;
}

.featured-destinations .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.featured-destinations .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.featured-destinations .content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.featured-destinations .features {
  margin-bottom: 20px;
}

.featured-destinations .features .feature-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-right: 6px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-destinations .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.featured-destinations .card-footer .tours-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-destinations .card-footer .explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-destinations .card-footer .explore-btn i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.featured-destinations .destinations-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, #ba1f2d, #ba1f2d 95%) 0%, color-mix(in srgb, #ba1f2d, #0000000a 90%) 100%);
  border-radius: 16px;
  text-align: center;
}

.featured-destinations .destinations-cta h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffb900;
}

.featured-destinations .destinations-cta p {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-destinations .destinations-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-destinations .destinations-cta .btn {
  padding: 8px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  font-size: 20px;
  background: #ffb900;
}

.featured-destinations .destinations-cta .btn.btn-primary {
  background: #ffb900;
  color: #ba1f2d;
  border-color: #ffb900;
}

.featured-destinations .destinations-cta .btn.btn-primary:hover {
  background: #ffb900;
  border-color: #ba1f2d;
  transform: translateY(-2px);
}

.featured-destinations .destinations-cta .btn.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ba1f2d;
}

.featured-destinations .destinations-cta .btn.btn-outline:hover {
  background: #ffb900;
  color: #ba1f2d;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-destinations .destination-card .image-wrapper {
    height: 200px;
  }
  .featured-destinations .destination-card .content {
    height: calc(100% - 200px);
    padding: 16px;
  }
  .featured-destinations .destination-card .content h4 {
    font-size: 16px;
  }
  .featured-destinations .destination-card .content p {
    font-size: 13px;
  }
  .featured-destinations .destination-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .featured-destinations .destination-card .card-footer .explore-btn {
    text-align: center;
    justify-content: center;
  }
  .featured-destinations .destinations-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }
  .featured-destinations .destinations-cta h3 {
    font-size: 24px;
  }
  .featured-destinations .destinations-cta p {
    font-size: 14px;
  }
  .featured-destinations .destinations-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .featured-destinations .destinations-cta .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .featured-destinations .features .feature-tag {
    font-size: 10px;
    padding: 2px 6px;
    margin-right: 4px;
  }
}


/* App Layout */
.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MODIFIED DESKTOP STYLES --- */
@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(6, 1fr);
    }
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}
/* --- END OF MODIFIED STYLES --- */


/* Card Styles */
.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(255, 185, 0, 0.1);
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
   font-size: 26px;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ba1f2d;
}

.New-attraction-card-description {
    font-size: 20px;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;font-size: 18px;
    font-weight: 600;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

.New-attraction-card-details i {
    color: #ffb900;
    font-size: 16px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.New-attraction-card-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
    color: #ffb900;
}


.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 0px auto;
    padding: 20px;
    margin-top: -40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(186, 31, 45, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(186, 31, 45, 0.3);
}

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

/* --- Lightbox Styling --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 10, 15, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(186, 31, 45, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

#lightbox-caption {
    text-align: center;
    color: #ffb900;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    transition: opacity 0.4s ease-in-out;
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: #ffb900;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #ffd060;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    padding: 16px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}.tp {
    margin-top:70px;
}
.section-badge {
    display: inline-block;
    background: 
 color-mix(in srgb, #b9212e, #a61d29 85%);
    color: #ffb900;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ba1f2d;
--bs-btn-border-color: #ffc107;}

