/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #c2703e;
  --primary-dark: #8B2500;
  --primary-light: #d4915e;
  --accent-golden: #D4A032;
  --accent-cream: #f5e6cc;
  --bg-dark: #1a1209;
  --bg-services: #2a1a0f;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.text-justify {
  text-align: justify;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 88px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-dark);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(245, 230, 204, 0.85);
  padding: 10px 0;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

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

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

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #000;
  border: 2px solid var(--primary-color);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: black;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 7s ease-in-out;
}

#hero .carousel-item.active {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 12, 10, 0.4) 0%, rgba(15, 12, 10, 0.85) 100%);
  z-index: 1;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

#hero .carousel-content {
  text-align: center;
  max-width: 900px;
  box-sizing: border-box;
  padding: 90px 20px 70px;
}

#hero .hero-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-golden);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(212, 160, 50, 0.5);
  border-radius: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.3s;
}

#hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.5s;
}

#hero h1 span {
  color: var(--accent-golden);
  display: inline-block;
}

#hero p {
  width: 70%;
  margin: 0 auto 35px auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
  overflow-wrap: break-word;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.7s;
}

#hero .hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.9s;
}

#hero .btn-book {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.4s ease;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(194, 112, 62, 0.4);
}

#hero .btn-book:hover {
  background: linear-gradient(135deg, var(--accent-golden) 0%, #b8942d 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 160, 50, 0.5);
  color: #fff;
}

#hero .btn-call {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.4s ease;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

#hero .btn-call:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}

#hero:hover .carousel-control-prev,
#hero:hover .carousel-control-next {
  opacity: 1;
}

#hero .carousel-control-prev {
  left: 30px;
}

#hero .carousel-control-next {
  right: 30px;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background-size: 20px 20px;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background-color: var(--accent-golden);
  border-color: var(--accent-golden);
  transform: scale(1.1);
}

#hero .carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#hero .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

#hero .carousel-indicators li.active {
  background: var(--accent-golden);
  border-color: var(--accent-golden);
  opacity: 1;
  transform: scale(1.2);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

/* Responsive Hero Styles */
@media (max-width: 992px) {
  #hero .carousel-control-prev {
    left: 15px;
  }

  #hero .carousel-control-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 60vh;
    min-height: 480px;
  }

  #hero .carousel-item {
    height: 60vh;
    min-height: 480px;
    background-position: center center;
    transition: none;
  }

  #hero .carousel-item.active {
    transform: none;
  }

  #hero .carousel-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
  }

  #hero .carousel-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  #hero .hero-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 6px 15px;
    margin-bottom: 12px;
  }

  #hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.25;
  }

  #hero p {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  #hero .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  #hero .btn-book,
  #hero .btn-call {
    width: min(240px, 100%);
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 40px;
    height: 40px;
    opacity: 1;
  }

  #hero .carousel-control-prev {
    left: 5px;
  }

  #hero .carousel-control-next {
    right: 5px;
  }

  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    width: 32px;
    height: 32px;
    background-size: 16px 16px;
  }

  #hero .carousel-indicators {
    bottom: 15px;
    gap: 8px;
    margin: 0;
  }

  #hero .carousel-indicators li {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 28px;
  }

  #hero p {
    font-size: 14px;
    line-height: 1.5;
  }

  #hero .btn-book,
  #hero .btn-call {
    width: min(220px, 100%);
    padding: 12px 20px;
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--accent-cream);
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
}

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

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #263d4d;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.why-us {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
}

.why-us .content {
  padding: 30px;
  background: var(--primary-color);
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: var(--primary-color);
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
}

.about .container .about-us-content {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

.about .content {
  font-size: 15px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 35px;
  color: #263d4d;
}

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

/*--------------------------------------------------------------
# places Boxes
--------------------------------------------------------------*/
.places-boxes {
  background: url("../img/places-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.places-boxes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(245, 230, 204, 0.92);
  z-index: 9;
}

.places-boxes .container,
.places-boxes .container-fluid {
  position: relative;
  z-index: 10;
}

.places-boxes .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.places-boxes .card .card-img-top {
  height: 257px;
}

.places-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
}

.places-boxes .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: var(--accent-golden);
  border-radius: 4px;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.places-boxes .card-body {
  padding-top: 12px;
}

.places-boxes .card-title {
  font-weight: 700;
  text-align: center;
}

.places-boxes .card-title a {
  color: #15222b;
}

.places-boxes .card-title a:hover {
  color: var(--primary-color);
}

.places-boxes .card-text {
  color: #5e5e5e;
}

.places-boxes .card:hover .card-icon i {
  background: #fff;
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  .places-boxes {
    background-attachment: scroll;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: var(--bg-services);
  padding-bottom: 80px;
}

.services .section-title h2,
.services .section-title p {
  color: #fff;
}

.services .section-title h2::after {
  background: rgba(255, 255, 255, 0.2);
}

.services .image-box {
  padding: 11px 18px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
  border-radius: 5px;
  text-align: center;
}

.services .image-box:hover {
  transform: scale(1.08);
}

.services .image {
  margin-bottom: 15px;
}

.services .image img {
  background: #eff2f8;
  padding: 8px;
  border-radius: 27px;
  transition: all 0.3s;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: var(--primary-color);
  transition: 0.3s;
}

.services .title a:hover {
  color: var(--primary-dark);
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.gallery .gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(139, 37, 0, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.gallery .gallery-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
  height: 276px;
  width: 100%;
}

.gallery .gallery-wrap .gallery-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.gallery .gallery-wrap .gallery-links a {
  color: var(--primary-color);
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.gallery .gallery-wrap .gallery-links a i {
  font-size: 20px;
}

.gallery .gallery-wrap .gallery-links a:hover {
  background: var(--primary-color);
  color: #fff;
}

.gallery .gallery-wrap:hover::before {
  left: 0;
}

.gallery .gallery-wrap:hover .gallery-links {
  opacity: 1;
  top: calc(50% - 16px);
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.service-details {
  padding-top: 40px;
}

.service-details .service-details-slider img {
  width: 100%;
}

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

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary-color);
}

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

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

.service-details .service-description p {
  padding: 0;
  text-align: justify;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #000;
  font-weight: 700;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #000;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: var(--primary-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: var(--primary-color);
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid var(--primary-color);
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid var(--accent-golden);
}

.pricing .featured .get-started-btn {
  background: var(--accent-golden);
  color: #fff;
  border-color: var(--accent-golden);
}

.pricing .featured .get-started-btn:hover {
  background: var(--primary-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--primary-color);
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: var(--primary-dark);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--primary-dark);
}

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--accent-cream);
  min-height: 40px;
  margin-top: 111px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #263d4d;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 52px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--bg-dark);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(139, 37, 0, 0.3);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-logo {
  margin-bottom: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--primary-color);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  transition: 0.3s;
}

.features .content+.content {
  margin-top: 100px;
}

.features .content h3 {
  font-weight: 700;
  font-size: 30px;
}

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

.features .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

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

/* Premium Mobile Fixed Footer - Sleek Bottom Sheet Design */
.fixed-footer {
  display: flex;
  align-items: center;
  background: #111 !important;
  position: fixed !important;
  width: 100% !important;
  bottom: 0;
  left: 0;
  justify-content: space-around;
  padding: 8px 0 8px 0 !important;
  text-align: center;
  margin: 0;
  z-index: 999;
  border-radius: 20px 20px 0 0;
  border-top: 1px solid rgba(212, 160, 50, 0.5);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
}

ul.fixed-footer {
  list-style: none;
  padding-left: 0;
}

.fixed-footer li {
  flex: 1;
  position: relative;
}

/* Vertical Gold Separators */
.fixed-footer li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 160, 50, 0.3), transparent);
}

/* Hide br tags to fix height issues in flexbox */
.fixed-footer a br {
  display: none;
}

.fixed-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fixed-footer a i {
  font-size: 20px;
  margin-bottom: 3px;
  color: var(--accent-golden, #d4a032);
  background: -webkit-linear-gradient(top, #f3d078, #d4a032);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.fixed-footer a:hover {
  color: #fff;
}

.fixed-footer a:hover i {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 2px 5px rgba(212, 160, 50, 0.4));
}

@media (max-width: 575px) {
  .fixed-footer {
    padding: 6px 0 6px 0 !important;
  }
  .fixed-footer a {
    font-size: 10px;
  }
  .fixed-footer a i {
    font-size: 18px;
    margin-bottom: 2px;
  }
}



/* Custom  */

@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }

  .section-title p {
    font-size: 22px;
  }

  .why-us .content {
    padding: 10px;
  }

  .why-us .icon-boxes .icon-box {
    padding: 10px;
  }

  .why-us .icon-boxes .icon-box h4 {
    margin: 0 0 12px 0;
  }

  .why-us .icon-boxes .icon-box i {
    display: none;
  }

  .about .content h3 {
    font-size: 25px;
  }

  .places-boxes {
    padding: 20px 0 30px 0;
  }

  .pricing .row {
    padding-top: 0;
  }

  .pricing .box {
    padding: 25px;
  }

  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .gallery .gallery-wrap img {
    height: 100%;
    width: 100%;
  }

  .places-boxes .card .card-img-top {
    height: 100%;
  }
}

/*--------------------------------------------------------------
# Theme Enhancements - Logo Based
--------------------------------------------------------------*/
.btn-book,
.btn-contact {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-book:hover,
.btn-contact:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

.navbar .getstarted {
  border-color: var(--accent-golden) !important;
  color: var(--accent-golden) !important;
}

.navbar .getstarted:hover {
  background: var(--accent-golden) !important;
  color: #fff !important;
}

.why-us .content {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.why-us .content .more-btn:hover {
  color: var(--primary-dark);
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.contact .info-box i {
  color: var(--accent-golden);
}


/*--------------------------------------------------------------
# Premium Services Pages Redesign
--------------------------------------------------------------*/
.premium-section {
  padding: 80px 0;
  background-color: var(--accent-cream);
}

.premium-section.bg-white {
  background-color: #ffffff;
}

.gold-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-golden), transparent);
  margin: 20px auto 40px;
  width: 50%;
  opacity: 0.7;
}

.gold-divider-left {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-golden), transparent);
  margin: 15px 0 30px;
  width: 50%;
  opacity: 0.7;
}

.text-gold {
  color: var(--accent-golden) !important;
}

.premium-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--accent-golden);
}

.premium-card h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.premium-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

.img-luxury {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  width: 100%;
}

.img-luxury:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Premium Hero Breadcrumbs
--------------------------------------------------------------*/
.premium-hero-breadcrumbs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 400px;
  margin-top: 111px;
}

.premium-hero-breadcrumbs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.premium-hero-breadcrumbs>.container {
  z-index: 1;
}

@media (max-width: 991px) {
  .premium-hero-breadcrumbs {
    min-height: 300px;
    margin-top: 108px;
  }

  .premium-hero-breadcrumbs h1,
  .premium-hero-breadcrumbs h2 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 575px) {
  .premium-hero-breadcrumbs {
    min-height: 250px;
  }

  .premium-hero-breadcrumbs h1,
  .premium-hero-breadcrumbs h2 {
    font-size: 2rem !important;
  }
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.premium-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-golden);
  font-size: 18px;
}

.premium-content h2 {
  font-size: 32px;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 15px;
}

.premium-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.premium-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
  display: inline-block;
  padding: 10px 20px;
  background: rgba(212, 160, 50, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--accent-golden);
}

/*--------------------------------------------------------------
# Premium Footer
--------------------------------------------------------------*/
.premium-footer {
  background: var(--bg-dark);
  color: var(--accent-cream);
  padding: 60px 0 30px 0;
  font-size: 15px;
  border-top: 4px solid var(--accent-golden);
}

.premium-footer .footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212, 160, 50, 0.2);
}

.premium-footer h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-golden);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-footer h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.premium-footer p {
  color: rgba(245, 230, 204, 0.8);
}

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

.premium-footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.premium-footer .footer-links ul i {
  padding-right: 8px;
  color: var(--accent-golden);
  font-size: 18px;
}

.premium-footer .footer-links ul a {
  color: var(--accent-cream);
  transition: 0.3s;
  text-decoration: none;
}

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

.premium-footer .social-links a {
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-golden);
  line-height: 1;
  padding: 10px;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  text-decoration: none;
}

.premium-footer .social-links a:hover {
  background: var(--accent-golden);
  color: var(--bg-dark);
}

.premium-footer .copyright-area {
  padding-top: 30px;
  text-align: center;
  color: rgba(245, 230, 204, 0.7);
}

.premium-footer .copyright-area a {
  color: var(--accent-golden);
  font-weight: 600;
  text-decoration: none;
}

.premium-footer .copyright-area a:hover {
  color: #fff;
}