@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Josefin Sans",  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 */
/* Nova Rides Kenya - Brand Color System */
:root {

  /* Brand Colors */
  --primary-color: #2d98ce;       /* Azure - main brand blue */
  --accent-color: #f38720;        /* Orange - highlight */
  --accent-soft-color: #f8b174;   /* Soft pastel orange */

  /* Text Colors */
  --heading-color: #223246;       /* Dark gray blue - strong headings */
  --default-color: #40524d;       /* Neutral text body */
  --contrast-color: #ffffff;      /* Light text on dark backgrounds */

  /* Backgrounds & Surfaces */
  --background-color: #f1f3f4;    /* Light Azure - soft page background */
  --surface-color: #ffffff;       /* Card surfaces, clean sections */

  /* Navigation */
  --nav-color: rgba(255, 255, 255, 0.7);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #223246;
  --nav-dropdown-hover-color: #2d98ce;

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

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

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

  /*--------------------------------------------------------------
  # Nova Rides Navbar – Glass + Premium
  --------------------------------------------------------------*/
  .nr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .nr-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .nr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    color: var(--heading-color);
    transition: all 0.3s ease;
  }

  .nr-logo:hover {
    opacity: 0.9;
  }

  .nr-logo .logo-img {
    height: 44px;
    width: auto;
  }

  .nr-logo .sitename {
    font-family: var(--heading-font, "Playfair Display", serif);
    letter-spacing: -0.5px;
  }

  /* Desktop Nav */
  .nr-nav {
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .nr-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
    padding: 0;
  }

  .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--accent-color);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform: translateX(-50%);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }

  .nr-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
  }

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

  /* Mobile Burger */
  .nr-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 10000;
  }

  .nr-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--heading-color);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nr-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nr-burger.active span:nth-child(2) {
    opacity: 0;
  }

  .nr-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile Drawer */
  .nr-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--surface-color);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9998;
    overflow-y: auto;
  }

  .nr-drawer.open {
    right: 0;
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
  }

  .drawer-logo img {
    height: 40px;
  }

  .drawer-close {
    font-size: 28px;
    color: var(--default-color);
    cursor: pointer;
    transition: color 0.3s;
  }

  .drawer-close:hover {
    color: var(--accent-color);
  }

  .drawer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .drawer-nav a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .drawer-nav a:hover {
    color: var(--accent-color);
    padding-left: 8px;
  }

  .drawer-btn {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }

  /* Overlay */
  .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9997;
  }

  .drawer-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .nr-nav {
      display: none;
    }
    .nr-burger {
      display: flex;
    }
  }

  @media (max-width: 576px) {
    .nr-container {
      padding: 0 16px;
      height: 76px;
    }
    .nr-logo .sitename {
      font-size: 21px;
    }
  }
/*--------------------------------------------------------------
# Nova Rides Footer – Premium Glass Style
--------------------------------------------------------------*/
.nova-footer {
  background: linear-gradient(135deg, #1f2f40 0%, #0e1a28 100%);
  color: #fff;
  padding: 80px 0 30px;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}

.nova-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/misc/footer-wave.svg') top center no-repeat;
  background-size: cover;
  opacity: 0.18;  /* Increased visibility */
  mix-blend-mode: screen; /* Makes white waves glow */
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand,
.footer-links,
.footer-social {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.footer-brand:hover,
.footer-links:hover,
.footer-social:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo {
  height: 52px;
  /* filter: brightness(0) invert(1); */
}

.footer-brand h3 {
  font-family: var(--heading-font);
  font-size: 24px;
  margin: 0 0 12px 0;
  font-weight: 700;
  color:var(--contrast-color)
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 10px 0;
  font-size: 14.5px;
}

.footer-contact a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

/* Titles */
.footer-links h4,
.footer-social h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--accent-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

.footer-links ul li {
  margin: 12px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 4px;
}

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

/* Social Icons */
.footer-social p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #fff;
  font-size: 19px;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}

.social-icons a:hover {
  background: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14.5px;
  opacity: 0.9;
}

.footer-bottom .separator {
  margin: 0 10px;
  opacity: 0.6;
}

.footer-bottom i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .nova-footer {
    padding: 70px 0 30px;
    margin-top: 80px;
  }
  
  .footer-grid {
    gap: 30px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-social {
    padding: 24px;
  }
  
  .footer-brand h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-logo-link {
    justify-content: center;
  }
}
/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper */
.loader-wrapper {
  position: relative;
  width: 120px;
  height: 60px;
}

/* Car icon */
.car-icon {
  font-size: 2.2rem;
  animation: car-move 1.4s ease-in-out infinite;
  position: absolute;
  left: 0;
  top: 5px;
}

/* Road line */
.road {
  width: 100%;
  height: 6px;
  background: color-mix(in srgb, var(--primary-color), transparent 65%);
  border-radius: 6px;
  position: absolute;
  bottom: 10px;
  overflow: hidden;
}

.road::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--accent-color);
  animation: road-slide 1.4s linear infinite;
}

/* Animations */
@keyframes car-move {
  0% { transform: translateX(0) rotate(-1deg); }
  50% { transform: translateX(65px) rotate(1deg); }
  100% { transform: translateX(0) rotate(-1deg); }
}

@keyframes road-slide {
  0% { left: -40%; }
  100% { left: 100%; }
}

#preloader::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: url('assets/img/icons/palm.svg') no-repeat center/contain;
  opacity: 0.08;
}

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

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

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Nova Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Nova Hero Section
--------------------------------------------------------------*/
.nova-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.nova-hero .hero-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.nova-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.nova-hero .container {
  position: relative;
  z-index: 3;
}

.nova-hero .hero-content {
  position: relative;
  z-index: 2;
}

.nova-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
}

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

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

.nova-hero .hero-content .lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

@media (max-width: 768px) {
  .nova-hero .hero-content .lead {
    font-size: 1.1rem;
  }
}

.nova-hero .hero-booking-box {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.nova-hero .hero-booking-box .form-group {
  margin-bottom: 1rem;
}

.nova-hero .hero-booking-box .input-with-icon {
  position: relative;
}

.nova-hero .hero-booking-box .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 1.2rem;
}

.nova-hero .hero-booking-box .input-with-icon input,
.nova-hero .hero-booking-box .input-with-icon select {
  padding-left: 40px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.nova-hero .hero-booking-box .btn.btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

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

@media (max-width: 576px) {
  .nova-hero .hero-booking-box .row .col-md-9 .text-end {
    text-align: center !important;
  }
}

.nova-hero .hero-features {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 576px) {
  .nova-hero .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}

.nova-hero .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--contrast-color);
}

.nova-hero .hero-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .nova-hero {
    height: auto;
    padding: 4rem 0;
  }
}/*--------------------------------------------------------------
# Featured and RAHA Section
--------------------------------------------------------------*/
.featured-and-raha .mt-6 {
  margin-top: 5rem;
}

.featured-and-raha .vehicle-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.featured-and-raha .vehicle-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.featured-and-raha .vehicle-card .image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.featured-and-raha .vehicle-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-and-raha .vehicle-card .image-wrapper:hover img {
  transform: scale(1.04);
}

.featured-and-raha .vehicle-card .image-wrapper .zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.featured-and-raha .vehicle-card .image-wrapper .zoom-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.featured-and-raha .vehicle-card .image-wrapper .cta-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.featured-and-raha .vehicle-card .image-wrapper .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.featured-and-raha .vehicle-card .vehicle-info {
  padding: 20px;
  text-align: center;
}

.featured-and-raha .vehicle-card .vehicle-info h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.featured-and-raha .vehicle-card .vehicle-info .category {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.featured-and-raha .vehicle-card .vehicle-info .price {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
}

/*  */
/* Custom Swiper Navigation – Premium Glassy Buttons */
.featured-and-raha .swiper-button-next,
.featured-and-raha .swiper-button-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.featured-and-raha .swiper-button-next:hover,
.featured-and-raha .swiper-button-prev:hover {
  background: #fff;
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  color: var(--heading-color);
}

.featured-and-raha .swiper-button-next::after,
.featured-and-raha .swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
}

.featured-and-raha .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.featured-and-raha .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.featured-and-raha .raha-container {
  margin-top: 4rem;
}

.featured-and-raha .raha-tile {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background-color: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.featured-and-raha .raha-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.featured-and-raha .raha-tile .letter-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0 auto 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-and-raha .raha-tile h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0;
}

.featured-and-raha .explore-all-link {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.featured-and-raha .explore-all-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .featured-and-raha .raha-grid .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .featured-and-raha .vehicle-card .image-wrapper {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .featured-and-raha .raha-tile .letter-circle {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .featured-and-raha .raha-tile h5 {
    font-size: 0.9rem;
  }
  .featured-and-raha .swiper-button-next,
 .featured-and-raha .swiper-button-prev {
  display:none;
 }
}

/*--------------------------------------------------------------
# Testimonials Section – Nova Rides Style
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.testimonials .testimonials-bg .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.testimonials .testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .section-title h2,
.testimonials .section-title p,
.testimonials .section-title span {
  color: #fff !important;
}

.testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 35px;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: none;
  transition: all 0.4s ease;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonials .quote-mark {
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.2;
  top: 10px;
  left: 20px;
}

.testimonials .testimonial-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 25px;
}

.testimonials .testimonial-author img {
  width: 65px;
  height: 65px;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonials .testimonial-author .author-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.testimonials .testimonial-author .author-info span {
  font-size: 0.95rem;
  color: var(--accent-color);
  font-weight: 500;
}

/* Custom Swiper Navigation – Premium Glassy Buttons */
.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.testimonialsSwiper .swiper-button-next:hover,
.testimonialsSwiper .swiper-button-prev:hover {
  background: #fff;
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  color: var(--heading-color);
}

.testimonialsSwiper .swiper-button-next::after,
.testimonialsSwiper .swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
}

.testimonialsSwiper .swiper-pagination.testimonials-pagination {
  bottom: 20px;
}

.testimonialsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 100px 0;
  }
  .testimonials .testimonial-card {
    padding: 35px 25px;
  }
  .testimonials .testimonial-content p {
    font-size: 1.05rem;
  }
    .testimonialsSwiper .swiper-button-next,
 .testimonialsSwiper .swiper-button-prev {
  display:none;
 }
}
/* Make ghost title softer on testimonials background */
.testimonials .section-title span {
  font-size: 38px; /* smaller */
  opacity: 0.15;   /* softer */
  color: rgba(255, 255, 255, 0.12); /* match white theme softly */
}


/*--------------------------------------------------------------
# FAQs Section – Fixed Background + Clean Accordion
--------------------------------------------------------------*/



.faq-section .section-title p,
.faq-section .section-title span {
  color: var(--heading-color);
}
.faq-section .section-title span {
  color: var(--heading-color);
  opacity: 0.09; /* very faint like other sections */
}

.faq-section .section-title .lead {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Accordion Styling */
.faq-accordion .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.faq-accordion .faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background 0.3s ease;
}

.faq-accordion .faq-question h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.4;
}

.faq-accordion .faq-question .toggle-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

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

.faq-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fafafa;
}

.faq-accordion .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 24px;
}

.faq-accordion .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-section.with-fixed-bg {
    padding: 100px 0;
  }
  .faq-section .faq-bg .bg-image {
    background-attachment: scroll;
  }
  .faq-accordion .faq-question h4 {
    font-size: 1.05rem;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
#about-intro {
  position: relative;
  overflow: hidden;
}

#about-intro .container {
  position: relative;
  z-index: 1;
}

#about-intro .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

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

#about-intro .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

#about-intro .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

#about-intro .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

#about-intro .features-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

#about-intro .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  #about-intro .cta-buttons {
    flex-direction: column;
  }
}

#about-intro .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

#about-intro .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

#about-intro .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#about-intro .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

#about-intro .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

#about-intro .image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#about-intro .image-wrapper:hover img {
  transform: scale(1.05);
}

#about-intro .image-wrapper .overlay-content {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}

#about-intro .image-wrapper .special-offer {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

#about-intro .image-wrapper .special-offer .label {
  display: block;
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 0.9;
}

#about-intro .image-wrapper .special-offer .discount {
  display: block;
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  #about-intro .image-wrapper {
    margin-top: 2rem;
  }

  #about-intro .image-wrapper .overlay-content {
    top: 20px;
    right: 20px;
  }

  #about-intro .image-wrapper .special-offer {
    padding: 12px 16px;
  }

  #about-intro .image-wrapper .special-offer .label {
    font-size: 0.8rem;
  }

  #about-intro .image-wrapper .special-offer .discount {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  #about-intro .content {
    margin-bottom: 2rem;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-stack {
  position: relative;
}

.about .image-stack .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about .image-stack .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about .image-stack .main-image-wrapper .floating-card {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.about .image-stack .main-image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.about .image-stack .main-image-wrapper .floating-card .card-icon i {
  color: #b8860b;
  font-size: 1.2rem;
}

.about .image-stack .main-image-wrapper .floating-card h6 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .image-stack .main-image-wrapper .floating-card p {
  font-size: 0.85rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .image-stack .secondary-image {
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 200px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid var(--surface-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about .image-stack .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .content-wrapper {
  padding-left: 3rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.about .content-wrapper .badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .content-wrapper h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.about .content-wrapper .lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .content-wrapper p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .milestone-timeline {
  margin: 3rem 0;
}

.about .milestone-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .milestone-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about .milestone-item .milestone-year {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

.about .milestone-item .milestone-content h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

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

.about .action-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about .action-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.about .action-buttons .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about .action-buttons .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.about .action-buttons .btn-video {
  background: transparent;
  color: var(--accent-color);
  padding: 14px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about .action-buttons .btn-video:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-showcase {
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.about .features-showcase .features-header h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about .features-showcase .features-header h3 {
    font-size: 2rem;
  }
}

.about .features-showcase .features-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about .feature-card {
  margin-bottom: 2rem;
}

.about .feature-card .feature-visual {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 1.5rem;
}

.about .feature-card .feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .feature-card .feature-visual .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about .feature-card .feature-visual .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .feature-card .feature-visual .feature-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

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

.about .feature-card .feature-visual:hover img {
  transform: scale(1.05);
}

.about .feature-card .feature-details h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

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

.about .achievements-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 25px;
}

.about .achievements-section .achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .about .achievements-section .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about .achievements-section .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about .achievements-section .achievement-stat {
  text-align: center;
}

.about .achievements-section .achievement-stat .stat-counter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.about .achievements-section .achievement-stat .stat-description {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 500;
}

@media (max-width: 992px) {
  .about .image-stack {
    margin-bottom: 2rem;
  }

  .about .image-stack .secondary-image {
    position: static;
    width: 100%;
    height: 200px;
    margin-top: 1rem;
  }
}

/*--------------------------------------------------------------
# Rooms 2 Section
--------------------------------------------------------------*/
.rooms-2 .room-filters {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.rooms-2 .room-filters .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.rooms-2 .room-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.rooms-2 .room-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.rooms-2 .rooms-grid .room-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
  height: 100%;
}

.rooms-2 .rooms-grid .room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.rooms-2 .rooms-grid .room-card .room-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.rooms-2 .rooms-grid .room-card .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rooms-2 .rooms-grid .room-card .room-image:hover img {
  transform: scale(1.05);
}

.rooms-2 .rooms-grid .room-card .room-image .room-features {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.ocean {
  background-color: #007bff;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.popular {
  background-color: #ff6b35;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.business {
  background-color: #6c757d;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.family {
  background-color: #28a745;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.garden {
  background-color: #20c997;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.romantic {
  background-color: #e91e63;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.premium {
  background-color: #ffc107;
  color: var(--default-color);
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.city {
  background-color: #17a2b8;
}

.rooms-2 .rooms-grid .room-card .room-image .room-features .feature-badge.luxury {
  background-color: #6f42c1;
}

.rooms-2 .rooms-grid .room-card .room-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rooms-2 .rooms-grid .room-card .room-content .room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.rooms-2 .rooms-grid .room-card .room-content .room-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-header .room-rating {
  display: flex;
  gap: 3px;
  font-size: 14px;
  color: #ffd700;
}

.rooms-2 .rooms-grid .room-card .room-content .room-description {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.rooms-2 .rooms-grid .room-card .room-content .room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.rooms-2 .rooms-grid .room-card .room-content .room-amenities span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--default-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-amenities span i {
  color: var(--accent-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price .price-from {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price .price-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .room-price .price-period {
  font-size: 14px;
  color: var(--default-color);
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .btn-room-details {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.rooms-2 .rooms-grid .room-card .room-content .room-footer .btn-room-details:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.rooms-2 .load-more-section {
  margin-top: 50px;
}

.rooms-2 .load-more-section .btn-load-more {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.rooms-2 .load-more-section .btn-load-more i {
  font-size: 18px;
}

.rooms-2 .load-more-section .btn-load-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .rooms-2 .room-filters {
    padding: 20px;
  }

  .rooms-2 .rooms-grid .room-card .room-content {
    padding: 20px;
  }

  .rooms-2 .rooms-grid .room-card .room-content .room-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .rooms-2 .rooms-grid .room-card .room-content .room-footer .btn-room-details {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Room Details Section
--------------------------------------------------------------*/
.room-details .room-header-image {
  position: relative;
}

.room-details .room-header-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-details .room-header-image .room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.room-details .room-header-content {
  padding-left: 30px;
}

@media (max-width: 992px) {
  .room-details .room-header-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

.room-details .room-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.room-details .room-rating .rating-score {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}

.room-details .room-rating .stars {
  color: #ffc107;
  font-size: 18px;
}

.room-details .room-rating .stars i {
  margin-right: 2px;
}

.room-details .room-rating .reviews-count {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.room-details .room-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .room-details .room-title {
    font-size: 2rem;
  }
}

.room-details .room-tagline {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.room-details .room-capacity {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.room-details .room-capacity .capacity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.room-details .room-capacity .capacity-item i {
  color: var(--accent-color);
  font-size: 16px;
}

.room-details .room-price {
  margin-bottom: 25px;
}

.room-details .room-price .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.room-details .room-price .price-period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 8px;
}

.room-details .btn-book-now {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.room-details .btn-book-now:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

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

.room-details .room-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .room-details .room-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.room-details .room-gallery .gallery-main img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.room-details .room-gallery .gallery-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.room-details .room-gallery .gallery-thumbnails img {
  border-radius: 8px;
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform 0.3s;
}

.room-details .room-gallery .gallery-thumbnails img:hover {
  transform: scale(1.05);
}

.room-details .room-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-details .highlight-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
}

.room-details .highlight-box .highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.room-details .highlight-box .highlight-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.room-details .highlight-box h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.room-details .highlight-box .quote-author {
  margin-top: 15px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.room-details .room-amenities .amenity-category h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.room-details .room-amenities .amenity-category ul {
  list-style: none;
  padding: 0;
}

.room-details .room-amenities .amenity-category ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}

.room-details .room-amenities .amenity-category ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.room-details .room-tabs .nav-tabs {
  border: none;
  margin-bottom: 30px;
}

.room-details .room-tabs .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--default-color);
  padding: 15px 30px;
  font-weight: 500;
  border-radius: 8px;
  margin-right: 10px;
}

.room-details .room-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.room-details .room-tabs .nav-tabs .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.room-details .room-tabs .tab-content-wrapper {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.room-details .room-tabs .tab-content-wrapper h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.room-details .room-tabs .tab-content-wrapper ul {
  list-style: none;
  padding: 0;
}

.room-details .room-tabs .tab-content-wrapper ul li {
  padding: 5px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.room-details .room-addons .addon-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.room-details .room-addons .addon-card:hover {
  transform: translateY(-5px);
}

.room-details .room-addons .addon-card .addon-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.room-details .room-addons .addon-card .addon-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.room-details .room-addons .addon-card h5 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.room-details .room-addons .addon-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.room-details .room-addons .addon-card .addon-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
}

.room-details .booking-cta .booking-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 40px;
  border-radius: 15px;
}

.room-details .booking-cta .booking-card h4 {
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.room-details .booking-cta .booking-card p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
}

.room-details .booking-cta .booking-card .price-display {
  margin-bottom: 20px;
  text-align: right;
}

@media (max-width: 992px) {
  .room-details .booking-cta .booking-card .price-display {
    text-align: center;
    margin-top: 20px;
  }
}

.room-details .booking-cta .booking-card .price-display .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
}

.room-details .booking-cta .booking-card .price-display .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  display: block;
}

.room-details .booking-cta .booking-card .btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
}

.room-details .booking-cta .booking-card .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
}

/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/
.amenities .amenity-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.amenities .amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.amenities .amenity-card .amenity-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.amenities .amenity-card .amenity-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 85%) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.amenities .amenity-card:hover .amenity-image::after {
  opacity: 1;
}

.amenities .amenity-card .amenity-content {
  padding: 30px;
}

.amenities .amenity-card .amenity-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities .amenity-card .amenity-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.amenities .amenity-card .amenity-content .amenity-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities .amenity-card .amenity-content .amenity-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--default-color);
}

.amenities .amenity-card .amenity-content .amenity-features li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.amenities .amenity-card .amenity-content .amenity-features li:last-child {
  margin-bottom: 0;
}

.amenities .amenities-grid {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.amenities .amenities-grid h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
}

.amenities .amenities-grid .service-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.amenities .amenities-grid .service-item:hover {
  transform: translateY(-3px);
}

.amenities .amenities-grid .service-item .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.amenities .amenities-grid .service-item .service-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.amenities .amenities-grid .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.amenities .amenities-grid .service-item:hover .service-icon::before {
  opacity: 1;
  transform: scale(1);
}

.amenities .amenities-grid .service-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.amenities .amenities-grid .service-item p {
  color: var(--default-color);
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .amenities .amenity-card .amenity-content {
    padding: 20px;
  }

  .amenities .amenity-card .amenity-content h3 {
    font-size: 20px;
  }

  .amenities .amenities-grid {
    padding: 30px 20px;
  }

  .amenities .amenities-grid h3 {
    font-size: 28px;
  }

  .amenities .amenities-grid .service-item {
    padding: 15px;
  }

  .amenities .amenities-grid .service-item .service-icon {
    width: 60px;
    height: 60px;
  }

  .amenities .amenities-grid .service-item .service-icon i {
    font-size: 24px;
  }

  .amenities .amenities-grid .service-item h4 {
    font-size: 16px;
  }

  .amenities .amenities-grid .service-item p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Offers Section
--------------------------------------------------------------*/
.offers .offer-card {
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.offers .offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.offers .offer-card .offer-image {
  position: relative;
  overflow: hidden;
}

.offers .offer-card .offer-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.offers .offer-card .offer-image .offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.offers .offer-card .offer-image .offer-badge .discount {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(54, 144, 231, 0.3);
}

.offers .offer-card .offer-content {
  padding: 30px;
}

.offers .offer-card .offer-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.offers .offer-card .offer-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.offers .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.offers .offer-card .offer-content .offer-details {
  margin-bottom: 25px;
}

.offers .offer-card .offer-content .offer-details .price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.offers .offer-card .offer-content .offer-details .price-info .original-price {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

.offers .offer-card .offer-content .offer-details .price-info .discounted-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.offers .offer-card .offer-content .offer-details .price-info .per-night {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.offers .offer-card .offer-content .offer-details .validity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.offers .offer-card .offer-content .offer-details .validity i {
  color: var(--accent-color);
}

.offers .offer-card .offer-content .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.offers .offer-card .offer-content .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.offers .offer-card .offer-content .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.offers .offer-card .offer-content .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.offers .offer-card .offer-content .btn.btn-outline-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.offers .offer-card.compact .offer-image img {
  height: 180px;
}

.offers .offer-card.compact .offer-content {
  padding: 25px;
}

.offers .offer-card.compact .offer-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.offers .offer-card.compact .offer-content p {
  font-size: 14px;
  margin-bottom: 15px;
}

.offers .offer-card.compact .offer-content .offer-details {
  margin-bottom: 20px;
}

.offers .offer-card.compact .offer-content .btn {
  padding: 10px 25px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .offers .offer-card .offer-content {
    padding: 25px 20px;
  }

  .offers .offer-card .offer-content h3 {
    font-size: 22px;
  }

  .offers .offer-card .offer-content .offer-details .price-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .offers .offer-card .offer-content .offer-details .price-info .discounted-price {
    font-size: 24px;
  }

  .offers .offer-card.compact .offer-content {
    padding: 20px 15px;
  }
}

/*--------------------------------------------------------------
# Restaurant Section
--------------------------------------------------------------*/
.restaurant .about-content h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.restaurant .about-content .fst-italic {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.restaurant .about-content .feature-item {
  margin-bottom: 1.5rem;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.restaurant .about-content .feature-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: inline-block;
}

.restaurant .about-content .feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.restaurant .about-content .feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.restaurant .about-content .signature .chef-name {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 5px;
}

.restaurant .about-content .signature img {
  max-width: 180px;
  height: auto;
  margin-top: 5px;
}

.restaurant .about-gallery {
  position: relative;
}

.restaurant .about-gallery .years-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.restaurant .about-gallery .years-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.restaurant .about-gallery .years-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.restaurant .about-gallery img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.restaurant .about-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .restaurant .about-gallery {
    margin-top: 2rem;
  }

  .restaurant .about-gallery .years-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .restaurant .about-gallery .years-badge .number {
    font-size: 2rem;
  }

  .restaurant .about-gallery .years-badge .text {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .restaurant .about-gallery .years-badge {
    bottom: 15px;
    right: 15px;
  }

  .restaurant .about-content .signature img {
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu .menu-filters ul li {
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 25px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.menu .menu-filters ul li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .menu .menu-filters ul {
    gap: 8px;
  }

  .menu .menu-filters ul li {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

.menu .menu-container {
  position: relative;
}

.menu .specials-badge {
  margin-bottom: 15px;
}

.menu .specials-badge span {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 20px;
}

.menu .specials-badge span i {
  color: var(--accent-color);
  margin-right: 8px;
}

.menu .specials-container {
  margin-bottom: 2rem;
}

.menu .special-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  background-color: var(--surface-color);
}

.menu .special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.menu .special-item .menu-item-img {
  position: relative;
  overflow: hidden;
}

.menu .special-item .menu-item-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.menu .special-item .menu-item-img .menu-item-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
}

.menu .special-item .menu-item-img .menu-item-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu .special-item .menu-item-img .menu-item-badges .badge-special {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-img .menu-item-badges .badge-vegan {
  background-color: color-mix(in srgb, green, transparent 30%);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-img .menu-item-badges .badge-spicy {
  background-color: color-mix(in srgb, red, transparent 30%);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-content {
  padding: 20px;
}

.menu .special-item .menu-item-content h4 {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 1.25rem;
}

.menu .special-item .menu-item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.menu .special-item .menu-item-content .menu-item-price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.menu .menu-item {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.menu .menu-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.menu .menu-item .menu-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

.menu .menu-item .menu-content {
  flex: 1;
}

.menu .menu-item .menu-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.menu .menu-item .menu-content .menu-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
}

.menu .menu-item .menu-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.menu .menu-item .menu-content .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.menu .download-menu {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.menu .download-menu i {
  margin-right: 8px;
}

.menu .download-menu:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .menu .menu-item .menu-img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .menu .specials-container .row {
    flex-direction: column;
  }
}

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

  .menu .menu-item .menu-img {
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
}

.booking .reservation-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.booking .reservation-header {
  margin-bottom: 4rem;
}

.booking .reservation-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .booking .reservation-header h2 {
    font-size: 2rem;
  }
}

.booking .reservation-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
  margin: 0 auto;
}

.booking .booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .booking .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.booking .booking-form-section .form-container {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 2.5rem;
}

@media (max-width: 768px) {
  .booking .booking-form-section .form-container {
    padding: 2rem;
  }
}

.booking .reservation-form .form-section {
  margin-bottom: 2.5rem;
}

.booking .reservation-form .form-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--heading-color);
}

.booking .reservation-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .booking .reservation-form .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.booking .reservation-form .form-grid .full-width {
  grid-column: 1/-1;
}

.booking .reservation-form .form-group {
  margin-bottom: 1.5rem;
}

.booking .reservation-form .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking .reservation-form input[type=date],
.booking .reservation-form input[type=text],
.booking .reservation-form input[type=email],
.booking .reservation-form input[type=tel],
.booking .reservation-form textarea,
.booking .reservation-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.booking .reservation-form input[type=date]:focus,
.booking .reservation-form input[type=text]:focus,
.booking .reservation-form input[type=email]:focus,
.booking .reservation-form input[type=tel]:focus,
.booking .reservation-form textarea:focus,
.booking .reservation-form select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.125rem color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.booking .reservation-form input[type=date]::placeholder,
.booking .reservation-form input[type=text]::placeholder,
.booking .reservation-form input[type=email]::placeholder,
.booking .reservation-form input[type=tel]::placeholder,
.booking .reservation-form textarea::placeholder,
.booking .reservation-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.9rem;
}

.booking .reservation-form textarea {
  resize: vertical;
  min-height: 100px;
}

.booking .reservation-form .form-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.booking .reservation-form .btn-primary {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
}

.booking .reservation-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000000 10%);
  transform: translateY(-1px);
}

.booking .reservation-form .btn-primary:focus {
  box-shadow: 0 0 0 0.125rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.booking .hotel-showcase .showcase-image {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.booking .hotel-showcase .showcase-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.booking .hotel-showcase .hotel-highlights {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.booking .hotel-showcase .hotel-highlights h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking .hotel-showcase .hotel-highlights .highlights-grid {
  display: grid;
  gap: 1.5rem;
}

.booking .hotel-showcase .hotel-highlights .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.4;
}

.booking .hotel-showcase .booking-guarantees {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
  .booking .hotel-showcase .booking-guarantees {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.booking .hotel-showcase .booking-guarantees .guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.booking .hotel-showcase .booking-guarantees .guarantee-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .booking .hotel-showcase {
    order: -1;
  }

  .booking .hotel-showcase .showcase-image img {
    height: 240px;
  }

  .booking .hotel-showcase .hotel-highlights .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content h5 {
    font-size: 0.95rem;
  }

  .booking .hotel-showcase .hotel-highlights .highlight-item .highlight-content p {
    font-size: 0.85rem;
  }

  .booking .hotel-showcase .booking-guarantees {
    justify-content: center;
  }

  .booking .hotel-showcase .booking-guarantees .guarantee-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .booking .hotel-highlights .highlights-grid {
    grid-template-columns: 1fr;
  }
}

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

.gallery .hotel-filters li {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery .hotel-filters li:hover,
.gallery .hotel-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .gallery .hotel-filters li {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery .gallery-item .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

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

@media (max-width: 576px) {
  .gallery .gallery-item .gallery-wrapper img {
    height: 250px;
  }
}

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

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-overlay a {
  color: var(--contrast-color);
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery .gallery-overlay a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

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

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .hero-content {
  margin-bottom: 60px;
}

.events .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.events .hero-content .lead {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.events .event-venues-grid {
  margin-bottom: 80px;
}

.events .event-venues-grid .venue-card {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.events .event-venues-grid .venue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.events .event-venues-grid .venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.events .event-venues-grid .venue-card:hover .venue-overlay {
  opacity: 1;
}

.events .event-venues-grid .venue-card .venue-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.events .event-venues-grid .venue-card .venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info {
  text-align: center;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info .capacity {
  font-size: 1rem;
  opacity: 0.9;
}

.events .features-section {
  margin-bottom: 80px;
}

.events .features-section .features-content h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .features-section .features-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .features-section .feature-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.events .features-section .feature-list .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.events .features-section .feature-list .feature-item .feature-icon i {
  font-size: 1.7rem;
  color: var(--contrast-color);
}

.events .features-section .feature-list .feature-item .feature-details h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.events .features-section .feature-list .feature-item .feature-details p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.events .features-section .features-gallery .gallery-main {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.events .features-section .features-gallery .gallery-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.events .features-section .features-gallery .gallery-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .events .features-section .row {
    flex-direction: column-reverse;
  }

  .events .features-section .features-gallery {
    margin-bottom: 40px;
  }
}

.events .event-packages {
  margin-bottom: 80px;
}

.events .event-packages .section-header {
  margin-bottom: 60px;
}

.events .event-packages .section-header h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .event-packages .section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-packages .package-item {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
}

.events .event-packages .package-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.events .event-packages .package-item.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.events .event-packages .package-item.featured .featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.events .event-packages .package-item .package-content {
  text-align: center;
}

.events .event-packages .package-item .package-content .package-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.events .event-packages .package-item .package-content .package-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.events .event-packages .package-item .package-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.events .event-packages .package-item .package-content p {
  line-height: 1.6;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-packages .package-item .package-content .package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}

.events .event-packages .package-item .package-content .package-highlights .highlight {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.events .event-packages .package-item .package-content .package-price {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .event-packages .package-item .package-content .package-price strong {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 700;
}

.events .event-packages .package-item .package-content .btn-package {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.events .event-packages .package-item .package-content .btn-package:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.events .planning-services .planning-content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .planning-services .planning-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .planning-services .planning-content .btn-contact {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.events .planning-services .planning-content .btn-contact:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.events .planning-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.events .planning-services .services-grid .service-box {
  background: var(--surface-color);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.events .planning-services .services-grid .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.events .planning-services .services-grid .service-box .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.events .planning-services .services-grid .service-box .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.events .planning-services .services-grid .service-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.events .planning-services .services-grid .service-box p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .events .hero-content {
    margin-bottom: 40px;
  }

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

  .events .event-venues-grid,
  .events .features-section,
  .events .event-packages,
  .events .planning-services {
    margin-bottom: 60px;
  }

  .events .venue-card {
    height: 250px;
  }

  .events .features-gallery .gallery-main img {
    height: 250px;
  }

  .events .features-gallery .gallery-thumbnails .thumbnail-item img {
    height: 100px;
  }

  .events .package-item {
    padding: 30px 20px;
  }

  .events .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events .services-grid .service-box {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Hotel Location Section
--------------------------------------------------------------*/
.hotel-location .location-content {
  padding: 40px 0;
}

.hotel-location .location-content .location-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
}

.hotel-location .location-content .location-badge i {
  margin-right: 8px;
  font-size: 16px;
}

.hotel-location .location-content .location-title {
  font-size: 42px;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hotel-location .location-content .location-description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hotel-location .location-content .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.hotel-location .location-content .info-grid .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hotel-location .location-content .info-grid .info-item .info-icon {
  background: var(--surface-color);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
  flex-shrink: 0;
}

.hotel-location .location-content .info-grid .info-item .info-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.hotel-location .location-content .info-grid .info-item .info-text h6 {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.hotel-location .location-content .info-grid .info-item .info-text p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

.hotel-location .location-content .action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hotel-location .location-content .action-buttons .btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hotel-location .location-content .action-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hotel-location .location-content .action-buttons .btn.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.hotel-location .location-content .action-buttons .btn.btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hotel-location .location-content .action-buttons .btn.btn-outline:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
  border-color: var(--heading-color);
  transform: translateY(-2px);
}

.hotel-location .map-container {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hotel-location .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hotel-location .map-container .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hotel-location .map-container .hotel-marker {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-location .map-container .hotel-marker i {
  font-size: 18px;
}

.hotel-location .transportation-hub {
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 25px;
  padding: 60px 40px;
  margin: 80px 0;
}

.hotel-location .transportation-hub .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.hotel-location .transportation-hub .section-header h3 {
  color: var(--heading-color);
  font-size: 36px;
  margin-bottom: 15px;
}

.hotel-location .transportation-hub .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 16px;
  margin: 0;
}

.hotel-location .transportation-hub .transport-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.hotel-location .transportation-hub .transport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hotel-location .transportation-hub .transport-card .transport-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box i {
  color: var(--accent-color);
  font-size: 24px;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-title h5 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 5px;
}

.hotel-location .transportation-hub .transport-card .transport-header .transport-title .transport-time {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.hotel-location .transportation-hub .transport-card .transport-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hotel-location .transportation-hub .transport-card .transport-details .transport-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hotel-location .transportation-hub .transport-card .transport-details .transport-features .feature-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.hotel-location .attractions-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.hotel-location .attractions-section .section-header h3 {
  color: var(--heading-color);
  font-size: 36px;
  margin-bottom: 15px;
}

.hotel-location .attractions-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 16px;
  margin: 0;
}

.hotel-location .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.3s ease;
}

.hotel-location .attractions-section .attraction-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hotel-location .attractions-section .attraction-item:hover .attraction-photo img {
  transform: scale(1.05);
}

.hotel-location .attractions-section .attraction-item .attraction-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hotel-location .attractions-section .attraction-item .attraction-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-location .attractions-section .attraction-item .attraction-photo .distance-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-location .attractions-section .attraction-item .attraction-photo .distance-badge i {
  font-size: 12px;
}

.hotel-location .attractions-section .attraction-item .attraction-info {
  padding: 25px;
}

.hotel-location .attractions-section .attraction-item .attraction-info h5 {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 10px;
}

.hotel-location .attractions-section .attraction-item .attraction-info .walk-time {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-location .attractions-section .attraction-item .attraction-info .walk-time i {
  font-size: 13px;
}

.hotel-location .attractions-section .attraction-item .attraction-info p:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

@media (max-width: 992px) {
  .hotel-location .location-content {
    padding: 30px 0;
  }

  .hotel-location .location-content .location-title {
    font-size: 36px;
  }

  .hotel-location .location-content .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hotel-location .map-container {
    height: 400px;
    margin-bottom: 40px;
  }

  .hotel-location .transportation-hub {
    padding: 50px 30px;
    margin: 60px 0;
  }
}

@media (max-width: 768px) {
  .hotel-location .location-content .location-title {
    font-size: 32px;
  }

  .hotel-location .location-content .action-buttons {
    flex-direction: column;
  }

  .hotel-location .location-content .action-buttons .btn {
    text-align: center;
  }

  .hotel-location .map-container {
    height: 350px;
  }

  .hotel-location .map-container .hotel-marker {
    top: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hotel-location .transportation-hub {
    padding: 40px 20px;
  }

  .hotel-location .transportation-hub .section-header h3 {
    font-size: 28px;
  }

  .hotel-location .transportation-hub .transport-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .hotel-location .transportation-hub .transport-card .transport-header {
    gap: 15px;
  }

  .hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box {
    width: 50px;
    height: 50px;
  }

  .hotel-location .transportation-hub .transport-card .transport-header .transport-icon-box i {
    font-size: 20px;
  }

  .hotel-location .attractions-section .section-header h3 {
    font-size: 28px;
  }

  .hotel-location .attractions-section .attraction-item .attraction-photo {
    height: 200px;
  }

  .hotel-location .attractions-section .attraction-item .attraction-info {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hotel-location .transportation-hub .transport-card .transport-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

.contact .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 180px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 13px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-info-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.3s;
  height: 100%;
}

.contact .contact-info-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-5px);
}

.contact .contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-card .icon-box i {
  font-size: 26px;
}

.contact .contact-info-card .info-content h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact .contact-info-card .info-content p {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

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

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

@media (max-width: 768px) {
  .contact .contact-form-wrapper {
    padding: 30px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact .contact-info-card {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact .contact-info-card .icon-box {
    margin-bottom: 15px;
  }

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

@media (max-width: 576px) {
  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 22px;
  }

  .contact .contact-info-card {
    padding: 20px;
  }

  .contact .map-container iframe {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

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

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}


/*--------------------------------------------------------------
# Under construction Page
--------------------------------------------------------------*/

    
    .under-construction {
      text-align: center;
      padding: 40px 20px;
      max-width: 720px;
      z-index: 2;
      position: relative;
    }

    .car-animated {
      width: 140px;
      height: auto;
      margin-bottom: 30px;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
      animation: drive 4s infinite ease-in-out;
    }

    @keyframes drive {
      0%, 100% { transform: translateY(0) rotate(0); }
      25% { transform: translateY(-12px) rotate(-2deg); }
      75% { transform: translateY(-8px) rotate(2deg); }
    }

    .under-construction h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin: 0 0 20px;
      background: linear-gradient(90deg, #fff, var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .under-construction p {
      font-size: 1.3rem;
      line-height: 1.7;
      opacity: 0.95;
      margin-bottom: 40px;
      max-width: 600px;
    }

    .btn-primary {
      background: var(--accent-color);
      color: white;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      transition: all 0.4s ease;
    }

    .btn-primary:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
      background: color-mix(in srgb, var(--accent-color), black 15%);
    }

    /* Floating Background Elements */
    .bg-shape {
      position: absolute;
      opacity: 0.07;
      pointer-events: none;
      animation: float 20s infinite linear;
    }

    .bg-shape:nth-child(1) { top: 10%; left: 10%; width: 300px; }
    .bg-shape:nth-child(2) { bottom: 15%; right: 10%; width: 400px; animation-delay: -10s; }

    @keyframes float {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(100px, -100px) rotate(360deg); }
    }

    @media (max-width: 768px) {
      .under-construction h1 { font-size: 2.8rem; }
      .under-construction p { font-size: 1.15rem; }
      .car-animated { width: 110px; }
    }

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