/* The Consorts Hotels Website - Main Stylesheet */

/* ===== VARIABLES ===== */
:root {
  /* Color Palette */
  --primary-blue: #2b5A9D;
  --primary-turquoise: #38bfbf;
  --secondary-sand: #E8E0D5;
  --secondary-white: #F9F9F9;
  --secondary-charcoal: #333333;
  --accent-orange: #FF7D4D;
  --accent-purple: #7D6B91;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--secondary-charcoal);
  background-color: var(--secondary-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--primary-turquoise);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--primary-blue);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

p {
  margin-bottom: var(--spacing-md);
}

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

.subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--primary-turquoise);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  
  .col {
    width: 100%;
    margin-bottom: var(--spacing-lg);
  }
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-lg {
  padding: var(--spacing-xxl) 0;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
}

.nav-desktop li {
  margin-left: var(--spacing-lg);
}

.nav-desktop a {
  font-family: var(--font-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-turquoise);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-mobile {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--primary-blue);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 9px;
}

.hamburger span:nth-child(4) {
  top: 18px;
}

.hamburger.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-mobile {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  
  .nav-mobile.open {
    height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-mobile ul {
    list-style: none;
    padding: var(--spacing-lg);
  }
  
  .nav-mobile li {
    margin-bottom: var(--spacing-md);
  }
  
  .nav-mobile a {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    display: block;
    padding: var(--spacing-sm) 0;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 600;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: white;
}

.btn-primary:hover {
  background-color: #e86a3a;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: rgba(43, 85, 146, 0.1);
  color: var(--primary-blue);
  transform: translateY(-2px);
}
.hero-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 1)!important;
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  margin-top: 80px; /* Header height */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
}

.booking-widget {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--spacing-lg);
}

.booking-widget h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.booking-form .form-group {
  flex: 1 1 200px;
}

.booking-form label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.booking-form input, .booking-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.booking-form .btn {
  margin-top: 24px;
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    min-height: 350px;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .booking-form {
    flex-direction: column;
  }
}

/* ===== ROOM CARDS ===== */
.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
/*   box-shadow: var(--shadow-md); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: var(--spacing-lg);
  background-color: white;
  box-shadow: none;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  height: 250px;
  overflow: hidden;
}

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

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

.room-card-content {
  padding: var(--spacing-lg);
}

.room-card h3 {
  margin-bottom: var(--spacing-sm);
}
.room-card h3 {
    font-size: 30px;
}


.room-card-price {
  font-family: var(--font-accent);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
  gap: var(--spacing-sm);
  font-size: 15px;
}

.room-card-feature {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-right: var(--spacing-md);
}

.room-card-feature i {
  margin-right: var(--spacing-xs);
  color: var(--primary-turquoise);
}

.room-card-buttons {
  display: flex;
  gap: var(--spacing-md);
}

@media (max-width: 576px) {
  .room-card-buttons {
    flex-direction: column;
  }
}

#room-carousel .owl-nav {
  position: absolute;
  top: 45%;
  left: -30px;
  right: -30px;
  width: calc(100% + 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 10;
}
#room-carousel .owl-nav button.owl-prev,
#room-carousel .owl-nav button.owl-next {
  background: #30c5b5;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.3s;
}
#room-carousel .owl-nav button.owl-prev:hover,
#room-carousel .owl-nav button.owl-next:hover {
  background: #1a8378;
  transform: scale(1.1);
}

/* Responsive adjustments for mobile and tablet */
@media (max-width: 768px) {
  #room-carousel .owl-nav {
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
  }
  #room-carousel .owl-nav button.owl-prev,
  #room-carousel .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #room-carousel .owl-nav {
    left: -10px;
    right: -10px;
    width: calc(100% + 20px);
  }
  #room-carousel .owl-nav button.owl-prev,
  #room-carousel .owl-nav button.owl-next {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* ===== FEATURES SECTION ===== */
.features {
  background-color: var(--secondary-white);
}

.owl-carousel {
  .owl-stage {
    display: flex;
  }
  .owl-item {
    display: flex;
    flex: 1 0 auto;
  }
  .thumbnail {
    display: flex;
    flex-direction: column;
    margin: 0 15px;
    .caption {
      display: flex;
      flex: 1 0 auto;
      flex-direction: column;
      .flex-text {
        flex-grow: 1;
      }
    }
  }
}
#owl-demo-2.owl-carousel {
  padding-left: 10px;
  padding-right: 10px;
}

/* Each Feature Card */
#owl-demo-2 .thumbnail.item {
  background: #fff;
  border-radius: 16px;
/*   box-shadow: 0 6px 24px rgba(30,197,181,0.09); */
  padding: 32px 24px 28px 24px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 320px;
  height: 100%;
  margin: 16px 8px;
  transition: box-shadow 0.3s, transform 0.2s;
}


/* Icon Styling */
#owl-demo-2 .feature-icon {
  font-size: 2.5rem;
  color: #30c5b5;
  margin-bottom: 16px;
}

#owl-demo-2 h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 14px;
}

#owl-demo-2 p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Carousel Nav Styling */
#owl-demo-2 .owl-nav {
  position: absolute;
  top: 50%;
  left: -50px;
  right: -50px;
  width: calc(100% + 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 2;
}
#owl-demo-2 .owl-nav button.owl-prev,
#owl-demo-2 .owl-nav button.owl-next {
  background: #30c5b5;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 0 4px 18px rgba(30,197,181,0.12);
  transition: background 0.3s, color 0.3s;
}
#owl-demo-2 .owl-nav button.owl-prev:hover,
#owl-demo-2 .owl-nav button.owl-next:hover {
  background: #1a8378;
  color: #fff;
}

/* Carousel Dots Styling */
#owl-demo-2 .owl-dots {
  text-align: center;
  margin-top: 24px;
}
#owl-demo-2 .owl-dot {
  display: inline-block;
  margin: 0 5px;
}
#owl-demo-2 .owl-dot span {
  width: 12px;
  height: 12px;
  display: block;
  background: #e0f5f3;
  border-radius: 50%;
  transition: background 0.3s;
}
#owl-demo-2 .owl-dot.active span {
  background: #30c5b5;
}

/* Responsive Styling */
@media (max-width: 900px) {
  #owl-demo-2 .thumbnail.item {
    min-height: 240px;
    padding: 18px 6px 16px 6px;
  }
  #owl-demo-2 .owl-nav {
    left: -28px;
    right: -28px;
    width: calc(100% + 56px);
  }
  #owl-demo-2 .owl-nav button.owl-prev,
  #owl-demo-2 .owl-nav button.owl-next {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  #owl-demo-2 .thumbnail.item {
    max-width: 100%;
    min-width: 0;
    padding: 12px 2px;
    min-height: 160px;
  }
  #owl-demo-2 .owl-nav {
    left: -12px;
    right: -12px;
    width: calc(100% + 24px);
  }
  #owl-demo-2 .owl-nav button.owl-prev,
  #owl-demo-2 .owl-nav button.owl-next {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
/*   height: 500px; */
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.about-content {
  padding: var(--spacing-lg);
}

@media (min-width: 992px) {
  .about-content {
    padding: var(--spacing-xl);
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: var(--secondary-sand);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  margin: 0 var(--spacing-md);
}

.testimonial-content {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  top: -40px;
  left: -20px;
  color: rgba(48, 197, 181, 0.2);
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--spacing-md);
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 700;
}

.testimonial-author-title {
  font-size: 0.9rem;
  color: #777;
}

#testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -32px;
  right: -32px;
  width: calc(100% + 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 10;
}
#testimonial-carousel .owl-nav button.owl-prev,
#testimonial-carousel .owl-nav button.owl-next {
  background: #30c5b5;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 0 4px 18px rgba(30,197,181,0.12);
  transition: background 0.3s, color 0.3s;
  outline: none;
}
#testimonial-carousel .owl-nav button.owl-prev:hover,
#testimonial-carousel .owl-nav button.owl-next:hover {
  background: #1a8378;
  color: #fff;
}

/* Make nav arrows smaller and closer on mobile */
@media (max-width: 900px) {
  #testimonial-carousel .owl-nav {
    left: -18px;
    right: -18px;
    width: calc(100% + 36px);
  }
  #testimonial-carousel .owl-nav button.owl-prev,
  #testimonial-carousel .owl-nav button.owl-next {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  #testimonial-carousel .owl-nav {
    left: -8px;
    right: -8px;
    width: calc(100% + 16px);
  }
  #testimonial-carousel .owl-nav button.owl-prev,
  #testimonial-carousel .owl-nav button.owl-next {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

/* ===== LOCAL EXPLORER ===== */
.explorer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
/*   box-shadow: var(--shadow-md); */
  transition: transform 0.3s ease;
  margin-bottom: var(--spacing-lg);
  background-color: white;
  box-shadow: none;
}

.explorer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.explorer-card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.explorer-card-content {
  padding: var(--spacing-lg);
}

.explorer-card-distance {
  display: inline-block;
  background-color: var(--primary-turquoise);
  color: white;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
}

.explorer-card h3 {
  margin-bottom: var(--spacing-sm);
}

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

.explorer-card-content p{
  font-size: 15px;
}

.explorer-card-tip {
  background-color: rgba(48, 197, 181, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-top: var(--spacing-md);
  font-style: italic;
}

.explorer-card-tip strong {
  color: var(--primary-turquoise);
}
#explorer-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -30px;
  right: -30px;
  width: calc(100% + 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 10;
}
#explorer-carousel .owl-nav button.owl-prev,
#explorer-carousel .owl-nav button.owl-next {
  background: #30c5b5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
#explorer-carousel .owl-nav button.owl-prev:hover,
#explorer-carousel .owl-nav button.owl-next:hover {
  background: #1a8378;
}

/* Dots */
#explorer-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
#explorer-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}
#explorer-carousel .owl-dot.active span {
  background: #30c5b5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #explorer-carousel .owl-nav {
    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
  }
  #explorer-carousel .owl-nav button.owl-prev,
  #explorer-carousel .owl-nav button.owl-next {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #explorer-carousel .owl-nav {
    left: -10px;
    right: -10px;
    width: calc(100% + 20px);
  }
  #explorer-carousel .owl-nav button.owl-prev,
  #explorer-carousel .owl-nav button.owl-next {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}
/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 250px;
}

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

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 85, 146, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-overlay i {
  color: white;
  font-size: 2rem;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== CONTACT ===== */
.contact-info {
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.contact-item i {
  color: var(--primary-turquoise);
  font-size: 1.5rem;
  margin-right: var(--spacing-md);
  margin-top: 5px;
}

.contact-form .form-group {
  margin-bottom: var(--spacing-md);
}

.contact-form label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-blue);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer h4 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-turquoise);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-xl);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background-color: var(--primary-turquoise);
  padding: var(--spacing-xl) 0;
  color: white;
}

.newsletter h2 {
  color: white;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-family: var(--font-body);
}

.newsletter-form button {
  background-color: var(--accent-orange);
  color: white;
  border: none;
  padding: 0 var(--spacing-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-accent);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e86a3a;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
  }
  
  .newsletter-form button {
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
  }
}

/* ===== WHY BOOK DIRECT ===== */
.book-direct {
  background-color: var(--secondary-white);
}

.benefit-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 125, 77, 0.1);
  border-radius: 50%;
  color: var(--accent-orange);
  font-size: 1.8rem;
}

.benefit-card h3 {
  margin-bottom: var(--spacing-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: var(--spacing-md);
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background-color: var(--primary-blue);
  color: white;
  font-family: var(--font-accent);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(232, 224, 213, 0.3);
}

.comparison-table .highlight {
  background-color: rgba(48, 197, 181, 0.1);
}

.comparison-table .check {
  color: var(--primary-turquoise);
  font-size: 1.2rem;
}

.comparison-table .times {
  color: #ff6b6b;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: var(--spacing-sm);
  }
}

/* ===== UTILITIES ===== */
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-xxl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-xxl); }

.text-center { text-align: center; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.bg-white { background-color: white; }
.bg-light { background-color: var(--secondary-white); }

.rounded { border-radius: var(--radius-md); }
.shadow { box-shadow: var(--shadow-md); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

/* Add animation delay classes */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }




/* tabraiz */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    color: #fff;
    z-index: 10;
}

.hero-buttons a {
    margin: 10px;
}

.slider-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-nav button {
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
}

.slider-nav button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Gradient overlay in the background */
.hero-slider .slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
    pointer-events: none;
}

/* Container holds image slides – stays behind gradient */
.slider-container {
    position: relative;
    height: 100%;
    z-index: 0;
}

/* Slides stay in the background */
.slider {
    display: flex;
    height: 100%;
}

/* Hero text stays on top */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* make sure this is higher than the ::before */
}

.usp-grid {
    display: grid;
    grid-column-gap: 50px;
    grid-template-columns: repeat(4, auto);
}
.usp-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s;
}

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

.usp-icon {
  font-size: 2rem;
  color: #30c5b5;
  margin-bottom: 10px;
}

.usp-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.usp-item p {
  font-size: 0.95rem;
  color: #555;
}

.instagram-grid {
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: repeat(3, auto);
}

.h-100{
  height: 100% !important;
}

.instagram-item {
    position: relative;
    width: 350px;           /* ✅ fixed width */
    height: 350px;          /* ✅ fixed height */
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* ✅ ensures image covers box without stretching */
    display: block;
    transition: transform 0.3s ease;
}


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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.instagram-overlay a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}


/* room-filters */

.room-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    flex: 1;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.filter-group select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #fff;
}

.btn.btn-primary {
    padding: 12px 24px;
    background-color: #30c5b5;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer
}

.amenities-grid {
    display: grid;
    grid-column-gap: 50px;
    grid-template-columns: repeat(4, auto);
}



/* gallery-filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}

.filter-btn {
    padding: 10px 20px;
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #30c5b5;
    color: #fff;
    border-color: #30c5b5;
}

.filter-btn.active {
    background-color: #30c5b5;
    color: #fff;
    border-color: #30c5b5;
    font-weight: 600;
}


@media (max-width: 600px) {
    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
}
/* lightbox */

/* .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    margin: auto;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
    color: white;
    position: absolute;
    top: 50%;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transform: translateY(-50%);
}

.lightbox .close {
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    transform: none;
}

.lightbox .prev {
    left: 30px;
}

.lightbox .next {
    right: 30px;
}
 */

/* virtual-tour */
.virtual-tour-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.virtual-tour-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    max-height: 320px;
    object-fit: cover;
}

/* Overlay container */
.virtual-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* Black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.virtual-tour-image:hover .virtual-tour-overlay {
    opacity: 1;
}

/* Button style */
.virtual-tour-btn {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.virtual-tour-btn:hover {
    background-color: #30c5b5;
    border-color: #30c5b5;
    transform: scale(1.05);
    color: #ffff;
}





/* attraction card */
.attraction-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
    padding: 20px;
}

.attraction-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.attraction-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.attraction-content h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #1e3a5f;
}

.attraction-distance {
    font-size: 0.95rem;
    color: #666;
    margin-top: 5px;
}

.attraction-content p {
    margin: 15px 0;
    color: #333;
    line-height: 1.6;
}

.attraction-details {
    display: flex;
/*     flex-wrap: wrap; */
    gap: 30px;
    margin: 20px 0;
}

.attraction-detail h4 {
    font-size: 1.1rem;
    color: #30c5b5;
    margin-bottom: 10px;
}

.attraction-detail ul {
    padding-left: 20px;
    margin: 0;
    color: #444;
}

.attraction-detail li {
    margin-bottom: 6px;
    list-style: none;
}

.attraction-insider {
    background: #f9f9f9;
    padding: 15px 20px;
    border-left: 4px solid #30c5b5;
    border-radius: 8px;
}

.attraction-insider h4 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: #333;
}

.attraction-insider i {
    color: #ffc107;
    margin-right: 8px;
}



/* Local Area Guide tabs */

/* Tabs Container */
.tabs {
    margin-top: 40px;
    font-family: 'Segoe UI', sans-serif;
}

/* Tab Navigation */
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.tab-btn:hover {
    background-color: #30c5b5;
    color: #fff;
}

.tab-btn.active {
    background-color: #30c5b5;
    color: #fff;
    font-weight: 600;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

/* Tab Header */
.tab-header h3 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.tab-header p {
    color: #555;
    margin-bottom: 30px;
}

/* Local Cards */
.local-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.local-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #30c5b5;
}

.local-meta {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.local-meta i {
    margin-right: 6px;
}

.local-highlight {
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-left: 4px solid #30c5b5;
    margin-top: 10px;
    border-radius: 6px;
}

/* Essential Services List */
.service-list {
    padding-left: 20px;
    list-style-type: disc;
    color: #444;
}

.service-list li {
    margin-bottom: 10px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grid for Rows and Cols */


/* Responsive Stacking */
@media (max-width: 768px) {
    .tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }

    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .col {
        flex: 1 1 100%;
    }
}



.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.team-member-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.team-member-content {
    padding: 20px;
    text-align: center;
}

.team-member-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #1e3a5f;
}

.team-member-title {
    font-size: 0.95rem;
    color: #30c5b5;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.award-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.award-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #f7f7f7;
    padding: 10px;
}

.award-content h3 {
    font-size: 1.1rem;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.award-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}
@media (max-width: 600px) {
    .award-icon img {
        width: 80px;
        height: 80px;
    }

    .award-content h3 {
        font-size: 1rem;
    }

    .award-content p {
        font-size: 0.9rem;
    }
}
.sustainability-section {
    padding: 60px 20px;
    background-color: #fff;
}

.sustainability-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.sustainability-image {
    flex: 1 1 400px;
    max-width: 600px;
}

.sustainability-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.sustainability-content {
    flex: 1 1 500px;
    max-width: 700px;
}

.subtitle {
    font-weight: bold;
    color: #30c5b5;
    margin-bottom: 10px;
    font-size: 1rem;
    display: inline-block;
    border-bottom: 2px solid;
}

.sustainability-content h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.sustainability-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features Grid */
.sustainability-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sustainability-feature {
    display: flex;
    gap: 15px;
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 10px);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #30c5b5;
}

.feature-content h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #1e3a5f;
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .sustainability-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .sustainability-feature {
        flex: 1 1 100%;
    }
}
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    align-items: flex-start;
}

.contact-icon i {
    font-size: 1.4rem;
    color: #30c5b5;
    min-width: 24px;
    margin-top: 5px;
}

.contact-details h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #1e3a5f;
}

.contact-details p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 1.2rem;
    color: #1e3a5f;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #30c5b5;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

/* Checkbox Styles */
.contact-form .checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    gap: 10px;
    line-height: 1.4;
}

.contact-form .checkbox input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
}

/* Submit Button */
.contact-form .btn {
    padding: 12px 24px;
    background-color: #30c5b5;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}
.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    align-items: flex-start;
}
.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    align-items: flex-start;
}

.contact-icon i {
    font-size: 1.4rem;
    color: #30c5b5;
    min-width: 24px;
    margin-top: 5px;
}

.contact-details h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    color: #1e3a5f;
}

.contact-details p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Responsive: stack in one column on mobile */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .contact-method {
        flex: 1 1 100%;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form .checkbox {
        flex-direction: column;
    }

    .contact-form .checkbox input[type="checkbox"] {
        margin-top: 0;
    }
}
/* Container */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

/* Hide default checkbox */
.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom checkbox style */
.checkbox-container .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: 0.2s;
}

/* On check */
.checkbox-container input:checked ~ .checkmark {
    background-color: #30c5b5;
    border-color: #30c5b5;
}

/* Checkmark tick */
.checkbox-container .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .checkbox-container {
        font-size: 0.9rem;
    }
}
/* Section Layout */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Map Styling */
.map-container {
    /* flex: 1 1 500px; */
    position: relative;
    /* max-width: 600px; */
    width: 100%;
}
.map-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.map-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.map-overlay .btn {
  background-color: #1e3a5f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* Directions Layout */
.directions-content {
  flex: 1 1 500px;
}

.directions-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #1e3a5f;
}

/* Grid for the 4 boxes */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.direction-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.direction-box h4 {
  font-size: 1.1rem;
  color: #30c5b5;
  margin-bottom: 10px;
}

.direction-box i {
  margin-right: 6px;
}

.direction-box p,
.direction-box ol {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.direction-box ol {
  padding-left: 18px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .location-grid {
    flex-direction: column;
  }

  .map-overlay {
    position: static;
    margin-top: 10px;
  }
}
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.faq-column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Item Styling */
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.05rem;
  margin: 0;
  color: #1e3a5f;
}

.faq-toggle i {
  font-size: 1.2rem;
  color: #30c5b5;
}

.faq-answer {
  display: none;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Optional: toggle open by default */
.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-toggle i {
  transform: rotate(45deg); /* Plus becomes an X */
}

/* Responsive */
@media (max-width: 768px) {
  .faq-grid {
    flex-direction: column;
  }

  .faq-column {
    flex: 1 1 100%;
  }
}
.room-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Image */
.room-detail-image {
  flex: 1 1 45%;
}

.room-detail-image img {
  width: 100%;
  border-radius: 10px;
}

/* Right side info */
.room-detail-info {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Internal 2-column split */
.room-detail-split {
  display: flex;
  
  gap: 30px;
}

/* Summary + Features */
.room-summary,
.room-detail-features {
  flex: 1 1 48%;
}

/* Typography */
.room-detail-header h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #1e3a5f;
}

.room-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.room-detail-price {
  margin: 10px 0;
  font-size: 1rem;
  color: #30c5b5;
}

.room-detail-price .price {
  font-size: 1.4rem;
  font-weight: bold;
}

.room-detail-features h3 {
  font-size: 1.6rem;
  color: #1e3a5f;
  margin-bottom: 10px;
}

.room-detail-features ul {
  padding-left: 20px;
  margin: 0;
  color: #444;
}

.room-detail-features li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Buttons */
.room-detail-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background-color: #30c5b5;
  color: #fff;
}

.btn-secondary {
  background-color: #f0f0f0;
  color: #1e3a5f;
}

/* Responsive */
@media (max-width: 768px) {
  .room-detail-row {
    flex-direction: column;
  }

  .room-detail-split {
    flex-direction: column;
  }

  .room-summary,
  .room-detail-features {
    flex: 1 1 100%;
  }

  .room-detail-buttons {
   flex-direction: column; */
        /* align-items: flex-start; */
        /* display: flow; */
        display: flex !important;
        gap: 20px !important;
        justify-content: space-around !important;
  }
}


.d-none{
  display: none !important;
}

.btn.btn-primary-1 {
    padding: 12px 24px;
    background-color: #30c5b5;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}
.btn-primary-1:hover {
    background-color: #e86a3a !important;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* for_phone */

@media (max-width: 767px) {

.section {
    padding: var(--spacing-sm) 0 !important;
}
.section {
    padding: var(--spacing-sm) 0 !important;
}
.feature-card {
    text-align: center;
    padding: var(--spacing-sm) !important;
    transition: transform 0.3s ease;
}
.btn.btn-primary-1 {
    padding: 12px 24px;
    background-color: #30c5b5;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: none  !important;
}

.usp-grid {
    display: grid;
    grid-column-gap: 50px;
    grid-template-columns: repeat(1, auto) !important;
}

.instagram-item {
   position: relative !important;
  width: 100% !important;
    height: 130px !important;
    overflow: hidden !important;
}

.amenities-grid {
    display: grid;
    grid-column-gap: 50px;
    grid-template-columns: repeat(1, auto) !important;
}

.gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

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

}




@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.usp-icon {
    font-size: 2rem;
}


.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 5px 10px;
    width: 70px;
    height: 70px;
}
.video-play-button i {
    width: 5px;
    height: 5px;
    text-align: center;
    line-height: 60px;
    border-radius: 100rem;
    position: relative;
    left: 10px;
}
.video-thumbnail .video-play-button {
    display: flex;
    cursor: pointer;
    transition: all 0.5s linear;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    margin: auto;
    width: 80%;
    max-width: 800px;
    background-color: #000;
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 999999;
}


.video-thumbnail img {
    height: 300px;
    object-fit: cover;
}

.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.fixed-popup-btn {
  position: fixed;
  bottom: 20px; /* Footer level */
  right: 20px;
  z-index: 1000;
  padding: 12px 20px;
/*   background-color: #25d366; */
  color: white;
  border: none;
  border-radius: 25px;
/*   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
  font-size: 15px;
  cursor: pointer;
  background: none;
}

/* .fixed-popup-btn:hover {
  background-color: #1eb95d;
} */

/* Modal Background */
.popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

/* Modal Image */
.popup-image {
  display: block;
  margin: 7% auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.popup-close:hover {
  color: #f44336;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .fixed-popup-btn {
    bottom: 15px;
    right: 15px;
    font-size: 13px;
    padding: 10px 18px;
  }

  .popup-close {
    top: 20px;
    right: 25px;
    font-size: 32px;
  }

  .book-1{
    display: none !important;
  }
}

.fixed-popup-btn img {
  width: 140px;      /* 👈 Reduced from 80px to 50px */
  height: auto;
  border-radius: 8px;
/*   box-shadow: 0 4px 10px rgba(0,0,0,0.3); */
  transition: transform 0.3s ease;
}


.btn.btn-primary-1 {
    padding: 12px 24px;
    background-color: #30c5b5;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary-1:hover {
    background-color: #e86a3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.terms-container {
 
  margin: 50px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.terms-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 28px;
  border-bottom: 2px solid #30c5b5;
  display: inline-block;
  padding-bottom: 5px;
}

.terms-container ul {
  list-style: none;
  padding-left: 0;
  counter-reset: term-counter;
}

.terms-container ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  border-left: 4px solid #30c5b5;
  padding: 15px 20px 15px 40px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.terms-container ul li::before {
  content: counter(term-counter) ".";
  counter-increment: term-counter;
  position: absolute;
  left: 15px;
  top: 18px;
  font-weight: bold;
  color: #30c5b5;
  font-size: 16px;
}

.contact-details a {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}
ul{
  list-style: none;
}
.amenity-paragraph {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 12px;
  padding: 10px 0;
  position: relative;
}

.amenity-paragraph span,
.amenity-paragraph .extra-features span {
  display: inline-flex;
  align-items: center;
  background: #f1f3f5;
  padding: 7px 12px;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.amenity-paragraph i {
  margin-right: 8px;
  color: #007bff;
  font-size: 15px;
}

.extra-features.hidden {
  display: none;
}

.toggle-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .amenity-paragraph {
    gap: 8px 10px;
    font-size: 14px;
  }

  .amenity-paragraph span {
    padding: 6px 10px;
  }

  .toggle-btn {
    font-size: 14px;
  }
}
.additional-facilities {
  padding: 40px 20px;
  background-color: #fff;
}

.facility-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #2b5a9d; /* Your secondary color */
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.facility-item {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #2b5a9d; /* Text with your theme */
  border-left: 4px solid #38bfbf; /* Accent */
  transition: transform 0.2s ease, background 0.3s ease;
}

.facility-item i {
  font-size: 20px;
  color: #38bfbf; /* Icon in primary theme */
  min-width: 22px;
}

.facility-item:hover {
  transform: translateY(-4px);
  background: #e8fafa;
}

.values-grid {
    display: grid;
    grid-column-gap: 50px;
    grid-template-columns: repeat(4, auto);
}
video#popupVideo {
    height: 400px;
    object-fit: cover;
}

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

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

.hero-buttons .btn {
        font-size: 0.95rem;
        padding: 10px 20px;
        width: 160px;
        /* font-size: 15px; */
    }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 60vh;
    min-height: 480px;
  }


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

  .hero-content p {
    font-size: 0.95rem;
  }

  .slider-nav button {
    font-size: 24px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px){
  .hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 240px !important;
}

   .usp-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

.slide {
    min-width: 100%;
    height: 72vh !important;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
}

.usp-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s;
    margin-bottom: 15px !important;
    margin-top: 15px !important;
}
}

.section-amenities {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-header .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.section-header .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.amenity-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 30px 20px;
  transition: 0.3s ease-in-out;
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  font-size: 2rem;
  color: #30c5b5;
  margin-bottom: 15px;
}

.amenity-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.amenity-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 576px) {
  .amenity-item {
    padding: 20px 15px;
  }

  .section-header .section-title {
    font-size: 1.5rem;
  }
}

.policy-section {
  padding: 60px 20px;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.policy-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 25px 20px;
  transition: 0.3s ease-in-out;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.policy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-card p,
.policy-card ul {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.policy-card ul {
  padding-left: 20px;
}

.subtitle {
  text-transform: uppercase;
  color: #30c5b5;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.section-values {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-values .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.section-values .section-subtitle {
  font-size: 1rem;
  color: #666;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.value-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.value-icon {
  font-size: 2rem;
  color: #30c5b5;
  margin-bottom: 15px;
}

.value-item h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 576px) {
  .section-values .section-title {
    font-size: 1.5rem;
  }

  .value-item {
    padding: 25px 15px;
  }
}

@media (min-width: 769px) {
    .usp-carousel {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .usp-item {
        border: 1px solid #ddd;
        padding: 15px;
        text-align: center;
        background-color: #fff;
    }
}

.feature-card {
      background: #fff;
      border-radius: 10px;
      padding: 2rem 1.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      height: 100%;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .feature-icon {
      font-size: 2.5rem;
      color: #007B8A;
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin: 0.5rem 0;
      color: #333;
    }

    .feature-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }