@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap');


body
{
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 400; /* regular weight */
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
}


h1, h2, h3, h4, h5, h6 {

  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
  letter-spacing: 1px;
}

a
{
  text-decoration: none;
  color: var(--primary);
}
p
{
  margin-bottom: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}


/* ========== Color Variables ========== */
:root {
  --primary: #ED2224;
  --accent: #FFED00;
  --text-color: #222;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #e0e0e0;
  --dark-gray: #444444;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*loader CSS STart*/
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  transform: translateY(-20%);
}

.loader-image {
  width: 150px;
  animation: pulse 2s infinite ease-in-out;
}

.loader-image {
  width: 65px;
  height: 65px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.9; }
}

/* Hide when loaded */
body.loaded .site-loader {
  opacity: 0;
  pointer-events: none;
}

.skip-to-content-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5em 1em;
  z-index: 100;
  text-decoration: none;
}

.skip-to-content-link:focus {
  left: 10px;
  top: 10px;
  opacity: 1;
}

/*loader CSS End*/

.container
{
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 15px;

}

/*-----------------------------------------------------------Header CSS Start-----------------------------------------------------------*/

.header {
  position: relative;
  z-index: 100;
}

/* Top Bar Styles */
.top-bar {
  background-color: var(--dark-gray);
  color: var(--text-color);
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
}

.top-bar-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.top-bar-contact-item i
{
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  width: 30px;
  height: 30px;
  display: flex
  ;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray);
}

.top-bar-contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}


.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-bar-social a {
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray);
}

.top-bar-social a:hover {
  transform: translateY(-2px);
}

/* Main Header Styles */
.main-header {
  position: relative;
  width: 100%;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: var(--white);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Enhanced Logo Styles */
.logo {
  position: relative;
  z-index: 10;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}


/* Add a subtle shine effect to logo */
.logo::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

/*.logo:hover::after {
  opacity: 1;
}*/

/* Navigation Styles */
.main-menu {
  display: flex;
  align-items: center;
}

.menu-wrapper {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
}

.menu-wrapper li a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
}

.menu-wrapper li a:hover {
  /*color: var(--primary);*/
}

.menu-wrapper li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

.menu-wrapper li a:hover:after {
  width: 100%;
}

.current-menu-item a:after {
  width: 100% !important; 
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
}

.book-now-btn {
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 1px solid var(--primary);
  font-size: 20px;
}

.book-now-btn:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  color: var(--white);
}

.button-icon {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.book-now-btn:hover svg path {
  fill: var(--white); /* white on hover */
}

/* Mobile Menu Toggle (Hidden by default) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.toggle-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 5px;
  transition: all 0.3s;
}

.mobile-logo, .top-bar-social.mobile {
  display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .top-bar
  {
    display: none;
  }

  .menu-wrapper {
    gap: 20px;
  }

  .logo-image {
    height: 45px;
  }
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 10px 20px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-menu.active {
    right: 0;
  }

  .menu-wrapper {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .menu-wrapper li {
    width: 100%;
    border-bottom: 1px solid var(--gray);
  }

  .menu-wrapper li a {
    display: block;
    padding: 15px 0;
    color: var(--text-color);
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-logo {
    display: block;
    margin-bottom: 30px;
    text-align: center;
  }

  .mobile-logo .logo-image {
    height: 50px;
  }

  .top-bar-social.mobile {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }

  .top-bar-social.desktop {
    display: none;
  }

  /* Animation for hamburger to X */
  .mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/*----------------------------------------------------------- Header CSS End -----------------------------------------------------------*/

/*----------------------------------------------------------- Home Banner CSS Start -----------------------------------------------------------*/

.home-banner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  z-index: 1;
  animation: zoom-in-zoom-out 10s ease-in-out infinite;
}

@keyframes zoom-in-zoom-out {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.banner-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 30px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  animation: 1.5s ease-out 0s 1 normal none running fadeIn;
  gap: 25px;
  margin: 30px 0;
  border-radius: 15px;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;  
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--primary), var(--dark-gray));
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.banner-btn {
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid var(--primary);
  text-align: center;
  font-size: 20px;
}

.banner-btn:hover {
  background: #ED2224;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


.banner-btn:hover svg path {
  fill: var(--white); /* white on hover */
}

.banner-features {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-direction: column;
}

.banner-features .feature {
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
  padding: 10px;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  transition: 0.3s;
}


.banner-features .feature i {
  color: var(--primary);
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 237, 0, 0.15);
  border-radius: 50%;
}

.banner-features .feature-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 5px;
}
.banner-features .feature-desc {
  color: var(--dark-gray);
  opacity: 0.8;
  font-size: 0.9rem;
  font-weight: 500;
}

.banner-features .feature-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-gray);
}


/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-content
  {
    width: 100%;
  }
  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }

  .banner-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .feature {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.5rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .banner-btn {
    padding: 8px 16px;
    font-size: 1rem;
  }

  .feature {
    width: 100%;
  }
}
/*-----------------------------------------------------------Home Banner CSS End-----------------------------------------------------------*/

/*-----------------------------------------------------------Rooms Listing CSS Start-----------------------------------------------------------*/

.room-listing,
.room-slider,
.slick-list,
.slick-track {
  height: 100%;
}

.slick-track {
  display: flex !important;
  align-items: stretch !important;
}

.slick-slide {
  height: auto !important;
  display: flex !important;
}
.slick-slide > div {
  height: 100%;
  display: flex;
  flex: 1 1 auto;
}

.room-listing {
  padding: 20px;
}

.section-title {
  font-size: 2.5rem;  
  font-weight: 700;
  position: relative;
  background: linear-gradient(90deg, var(--primary), var(--dark-gray));
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Slick slider customization */
.room-slider {
  margin: 0 -15px;
}

.room-slider .slick-list {
  padding: 20px 0;
}

.room-slider .slick-slide {
  padding: 0 15px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.room-slider .slick-slide.slick-active {
  z-index: 1;
}

.room-slider .slick-center {
  transform: scale(1.05);
  z-index: 2;
}

.room-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.room-slider .slick-center .room-card {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.room-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FFED00;
  color: #222;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.room-content {
  padding: 20px;  
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.room-title {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 5px;
  font-weight: 600;
}

.room-rate-info {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.room-price {
  position: absolute;
  z-index: 9999;
  bottom: 10px;
  right: 10px;
  padding: 4px 12px;
  background: #ffffff;
  border-radius: 20px;
}

.price-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}

.price-period {
  font-size: 20px;
  color: #000;
}

.room-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.feature {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
}

.feature i {
  margin-right: 5px;
  color: #ED2224;
}

.book-btn {
  display: block;
  width: 100%;
  padding: 8px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  text-decoration: none;
  margin-top: auto;

}

.book-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.book-btn:hover svg path {
  fill: var(--white); /* white on hover */
}

/* Slick navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-arrow {
  background: #ED2224;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
  border: none;
}

.slider-arrow:hover {
  background: #c81d1f;
  transform: scale(1.1);
}

.slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slick-dots li.slick-active button {
  background: #ED2224;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .room-slider .slick-center {
    transform: scale(1);
  }

  .slider-nav {
    margin-top: 20px;
  }
}

/*-----------------------------------------------------------Rooms Listing CSS End-----------------------------------------------------------*/

/*-----------------------------------------------------------About Us Section CSS Start-----------------------------------------------------------*/

.about-section {
  padding: 20px 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}


.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 25px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hotel-features {
  display: grid;
  gap: 15px;
  margin: 10px 0;
}

.hotel-features .feature {
  display: flex;
  align-items: flex-start;
  background: none;
  padding: 0;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--dark-gray);
  transition: all 0.3s ease;
}

.hotel-features .feature:hover {
  background: none;
  transform: translateX(5px);
}
.hotel-features .feature p
{
  margin: 0;
}

.hotel-features .feature i {
  margin-right: 12px;
  color: var(--primary);
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 237, 0, 0.15);
  border-radius: 50%;
  padding: 15px;
}


.read-more-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  padding: 8px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid var(--primary);
  font-size: 20px;
}

.read-more-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(237, 34, 36, 0.2);
}

.read-more-btn:hover svg path {
  fill: var(--white);
}

.button-icon {
  margin-left: 8px;
  width: 20px;
  height: 20px;
}

.contact-column {
  flex: 1;
  min-width: 300px;
}

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(90deg, var(--primary), #c81d1f);
  color: var(--white);
}

.video-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.play-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text, .contact-column {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .video-header {
    padding: 15px;
  }

  .video-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }


  .hotel-features .feature {
    padding: 10px;
    font-size: 0.95rem;
  }

  .read-more-btn {
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }
}

/*-----------------------------------------------------------About Us Section CSS End-----------------------------------------------------------*/


/*----------------------------------------------------------- CTA Section CSS Start-----------------------------------------------------------*/


.cta-section{
  padding: 20px 0;
}
.cta-section .main-content {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  /*padding: 0;*/
}

.cta-content {
  flex: 1;
  min-width: 300px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cta-section:hover .contact-image img {
  transform: scale(1.05);
}

.contact-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
  background: var(--accent);
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  text-align: center;
  animation: pulse 2s infinite;
  box-shadow: 0 5px 20px rgba(237, 34, 36, 0.3);
}

.contact-title {
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 700;
  position: relative;
}


.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
}

.phone-number { 
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(237, 34, 36, 0.2);
  width: max-content;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
}

.phone-number:hover {
  background: #c81d1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(237, 34, 36, 0.4);
}

.phone-number i {
  margin-right: 12px;
  font-size: 1.3rem;
}

.contact-note {
  color: var(--primary);
  font-style: italic;
  font-size: 1.2rem;
  padding: 15px;
  background: rgba(237, 34, 36, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  font-weight: bold;
}

/* Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(237, 34, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 34, 36, 0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-section {
    flex-direction: column-reverse;
  }

  .contact-image {
    height: 300px;
  }

  .cta-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .cta-content {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 2rem;
  }


  .phone-number {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .phone-number {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
  }
}

/*----------------------------------------------------------- CTA Section CSS End-----------------------------------------------------------*/


/*----------------------------------------------------------- Amenities Section CSS Start -----------------------------------------------------------*/

.amenities-section{
  padding: 20px 0;
}



.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.amenity-item:hover {
  transform: translateY(-10px);
  background: rgb(255 237 0 / 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  background: rgb(255 237 0 / 15%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.amenity-item:hover .amenity-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--white);
}

.amenity-name {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 1.2rem;
  margin-top: 10px;
}

.amenities-section-description
{
  margin-bottom: 20px;
}

/* Animation for items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.amenity-item:nth-child(1) { animation-delay: 0.1s; }
.amenity-item:nth-child(2) { animation-delay: 0.2s; }
.amenity-item:nth-child(3) { animation-delay: 0.3s; }
.amenity-item:nth-child(4) { animation-delay: 0.4s; }
.amenity-item:nth-child(5) { animation-delay: 0.5s; }
.amenity-item:nth-child(6) { animation-delay: 0.6s; }
.amenity-item:nth-child(7) { animation-delay: 0.7s; }
.amenity-item:nth-child(8) { animation-delay: 0.8s; }
.amenity-item:nth-child(9) { animation-delay: 0.9s; }
.amenity-item:nth-child(10) { animation-delay: 1.0s; }

/* Responsive Design */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .amenities-section {
    padding: 20px 0;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .amenity-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .amenity-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .amenity-item {
    padding: 20px 15px;
  }

  .amenity-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .amenity-name {
    font-size: 1rem;
  }
}

/*----------------------------------------------------------- Amenities Section CSS END -----------------------------------------------------------*/

/*Back To Top CSS START*/

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(237, 34, 36, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(237, 34, 36, 0.6);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  fill: var(--white);
  transition: fill 0.3s ease;
}

#back-to-top:hover .arrow-icon {
  fill: var(--dark-gray);
}

/*Back To Top CSS END*/

/*----------------------------------------------------------- Footer Section CSS Start -----------------------------------------------------------*/

.footer {
  background: var(--white);
  border-top: 2px solid var(--primary);
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.footer-column {
  padding: 0 20px;
}

/* First Column: Quick Links (Small) */
.footer-column.quick-links {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Middle Column: Logo & Description (Large) */
.footer-column.logo-column {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
}

/* Third Column: Contact Details (Small) */
.footer-column.contact-details {
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-links-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}


.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--dark-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 12px;
  color: var(--primary);
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

/* Logo Column */
.footer-logo {
  max-width: 130px;
  margin-bottom: 20px;
}

.footer-description {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 400px;
  font-size: 1.05rem;
}


/* Contact Column */
.contact-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 3px;
  min-width: 20px;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-color);
}

.contact-item p, .contact-item address {
  color: var(--dark-gray);
  font-style: normal;
  margin: 0;
  font-size: 0.9rem;
}

.contact-item a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Copyright */
.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
  color: var(--dark-gray);
  font-size: 0.9rem;
  width: 100%;
}
.copyright a
{
  font-weight: bold;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-column.quick-links,
  .footer-column.logo-column,
  .footer-column.contact-details {
    flex: 0 0 100%;
    max-width: 100%;
    border: none;
  }

  .footer-column.logo-column {
    order: -1;
    margin-bottom: 10px;
    align-items: flex-start;
    text-align: left;
  }


  .contact-item {
    justify-content: center;
    gap: 10px;
  }

  .contact-item i {
    margin-right: 0;
    margin-bottom: 8px;
  }

}

@media (max-width: 576px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-links-title, .contact-title {
    font-size: 1.2rem;
  }

  .footer-logo {
    max-width: 180px;
  }
}

/*----------------------------------------------------------- Footer Section CSS End -----------------------------------------------------------*/

/*----------------------------------------------------------- Image Slider Section CSS Start -----------------------------------------------------------*/
.image-slider-section
{
  padding: 20px 0;

}

.image-slider-section .section-slick-slider,
.image-slider-section .slick-slide {
  width: 100%;
  border-radius: 15px;
}

.image-slider-section .slick-slide img {
  width: 100%;
  height: 650px;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

/*----------------------------------------------------------- Image Slider Section CSS End -----------------------------------------------------------*/

/*----------------------------------------------------------- Location Page CSS Start -----------------------------------------------------------*/

.location-section {
  padding: 20px 0;
}


.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.location-text {
  flex: 1;
  min-width: 300px;
}

.location-text p {
  margin-bottom: 25px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hotel-address {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.hotel-address h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: bold;
}

.address-details {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.address-details i {
  color: var(--primary);
  /*margin-right: 10px;*/
  width: 20px;
}

.location-map-container {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#map {
  width: 100%;
  height: 100%;
  border: none;
}

.directions-box {
  background: var(--light-gray);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.directions-box h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
}

.directions-box label
{
  margin-bottom: 5px;
}


.input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.input-group input {
  flex: 1;
  min-width: 200px;
  padding: 15px;
  border: 1px solid var(--dark-gray);
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: var(--primary);
}

.get-directions-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 24px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-directions-btn:hover {
  background: #c81d1f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.get-directions-btn i {
  margin-left: 10px;
}

.map-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
  .location-content {
    flex-direction: column;
  }

  .map-container {
    order: -1;
  }
}

@media (max-width: 768px) {

  .section-title {
    font-size: 2rem;
  }


  .input-group {
    flex-direction: column;
  }

  .get-directions-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .section-title {
    font-size: 1.5rem;
  }

  .hotel-address {
    padding: 20px;
  }

  .directions-box {
    padding: 20px;
  }
  .book-now-btn
  {
    padding: 8px 16px;
  }
  .banner-features .feature-desc
  {
    font-size: 0.8rem;
  }
  .banner-features .feature-title
  {
    font-size: 0.9rem;
  }
  .book-btn
  {
    padding: 8px;
  }
}

/*----------------------------------------------------------- Location Page CSS End -----------------------------------------------------------*/


/*----------------------------------------------------------- Attraction Page CSS Start -----------------------------------------------------------*/

.things-to-do-section {
  padding: 20px 0;
}


.attractions-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;  
  margin-top: 20px;
}

.attraction-category {
  flex: 1;
  min-width: 300px;
  background: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-title {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
}

.category-title i {
  margin-right: 12px;
  font-size: 1.4rem;
}

.attraction-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  gap: 0 10px; /* space between rows and columns */
  list-style: none;
  padding: 0;
  margin: 0;
}

.attraction-item {
  padding: 5px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.attraction-item:last-child {
  border-bottom: none;
}

.attraction-item:hover {
  transform: translateX(5px);
}

.attraction-item i {
  color: var(--primary);
  margin-right: 12px;
  width: 20px;
}

.attraction-name {
  font-weight: 500;
  color: var(--dark-gray);
}

.distance {
  margin-left: auto;
  background: var(--accent);
  color: var(--text-color);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Two-column layout for restaurants */
.restaurants-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.restaurant-column {
  flex: 1;
  min-width: 250px;
}


/* Responsive Design */
@media (max-width: 992px) {
  .attractions-container {
    flex-direction: column;
  }

  .restaurants-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {


  .intro-text {
    font-size: 1rem;
  }

  .attraction-category {
    padding: 20px;
  }
  .attraction-list
  {
    grid-template-columns: none;
  }

  .category-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {


  .attraction-item {
    align-items: flex-start;
  }

  .distance {
    margin-left: 0;
    margin-top: 5px;
  }
}
/*----------------------------------------------------------- Attraction Page CSS End -----------------------------------------------------------*/


/*----------------------------------------------------------- Gallery Page CSS Start -----------------------------------------------------------*/


.gallery-section {
  padding: 20px 0;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}


.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-item a:focus-visible + .gallery-overlay {
  opacity: 1;
  visibility: visible;
  border: 2px solid var(--primary);
}

.view-text {
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  background: rgba(237, 34, 36, 0.8);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  background: var(--primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.lightbox-btn {
  color: var(--white);
  background: rgba(237, 34, 36, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.lightbox-btn:hover {
  background: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}

@media (max-width: 768px) {


  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {



  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .view-text {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

/*----------------------------------------------------------- Gallery Page CSS End -----------------------------------------------------------*/

/*----------------------------------------------------------- Contact Us Page CSS Start -----------------------------------------------------------*/

.contact-section {
  padding: 20px 0;
}


.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 1.6rem;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label
{
  margin-bottom: 5px;
  color: #000;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-gray);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--dark-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 24px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #c81d1f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/*.contact-info {
  flex: 1;
  min-width: 300px;
}*/

.info-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-title {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-icon {
  font-size: 1.2rem;
  margin-right: 15px;

  margin-right: 12px;
    color: var(--primary);
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 237, 0, 0.15);
    border-radius: 50%;
    padding: 15px;
}

.info-text {
  color: var(--dark-gray);
  line-height: 1.6;
}

.info-text a
{
  font-weight: bold;
  font-size: 20px;
}

.info-text strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-gray);
  font-size: 18px;
}

.map-container {
  height: 550px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Section */
.faq-section {
  background: var(--light-gray);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
  font-size: 2rem;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  background: var(--white);
  color: var(--dark-gray);
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  background: var(--white);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-item.active .faq-answer a
{
  font-size: 22px;
  font-weight: bold;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .contact-form, .info-card {
    padding: 20px;
  }

  .faq-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {

  .form-title, .info-title {
    font-size: 1.4rem;
  }

  .faq-title {
    font-size: 1.6rem;
  }
  .footer-column
  {
    padding: 0;
  }
}
.mobile-site-name h1
{
  display: none;
  color: var(--primary);
  margin: 0;
  padding: 0; 
  font-weight: 700; 
  font-size: 20px;
}
/*----------------------------------------------------------- Contact Us Page CSS End -----------------------------------------------------------*/

@media (max-width: 768px) {
  p, .about-text p, .footer-description, .contact-subtitle, .copyright p, .room-description, .amenities-section-description, .location-text p {
    font-size: 0.9rem;
  }
  .room-slider .slick-slide
  {
    padding: 0 10px;
  }
  .room-listing
  {
    padding: 10px;
  }

}

@media (max-width: 991px) {
  .book-now
  {
    display: none;
  }
  .mobile-site-name h1
  {
    display: block;
  }
  .banner-btn, .get-directions-btn, .phone-number, .book-btn, .read-more-btn, .copyright a, .submit-btn
  {
    font-size: 16px;
  }
  .cta-section .main-content
  {
    flex-direction: column;
  }
}

@media(min-width: 992px) and (max-width: 1210px)
{
  .menu-wrapper {
    gap: 10px;
  }
  .menu-wrapper li a
  {
    font-size: 15px;
  }
}