* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Responsive Base */
@media (max-width: 1200px) {
  html { font-size: 15px; }
}
@media (max-width: 767px) {
  html { font-size: 14px; }
}

body {
  font-family: "Outfit", sans-serif;
  background: #051622;
  color: #CCD6F6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 1000px;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #D4AF37;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.tagline {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #D4AF37;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1200;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to bottom, rgba(5, 22, 34, 0.8) 0%, rgba(5, 22, 34, 0) 100%);
}

/* Hide header logo when menu is open to avoid duplication */
body.menu-open .header__logo {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

/* Ensure toggle stays visible and premium on dark menu */
body.menu-open .header__toggle span {
  background: #FFFFFF;
}

.header.sticky {
  padding: 15px 50px;
  background: rgba(5, 22, 34, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
  transition: height 0.3s ease, transform 0.3s ease;
}

.header.sticky .logo-img {
  height: 70px;
}

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

.logo-img-footer {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  .logo-img {
    height: 65px;
  }
}

.header__nav {
  display: flex;
  gap: 40px;
}

.header__nav a {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4AF37;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__lang {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.header__lang a {
  opacity: 0.6;
}

.header__lang a.active {
  color: #D4AF37;
  opacity: 1;
}

@media (max-width: 1023px) {
  .header {
    padding: 12px 20px;
    background: rgba(5, 22, 34, 0.95);
  }

  .header__nav {
    display: none;
  }

  .header__nav {
    display: none;
  }
}

.footer {
  background: rgba(5, 22, 34, 0.85);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(212, 175, 55, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 80px 50px 40px;
  color: #CCD6F6;
  margin-top: 100px;
  position: relative;
  z-index: 10;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.footer__brand h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__col h3 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer__col ul li {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer__col ul li a {
  opacity: 0.6;
}

.footer__col ul li a:hover {
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1023px) {
  .footer {
    padding: 60px 30px 40px;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 10px;
}

.btn--primary {
  background: #D4AF37;
  color: #051622;
}

.btn--primary:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
}

.btn--outline:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.05);
}

.btn--sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .btn--sticky {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
}

.wa-widget {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: wa-pulse 2s infinite;
}

.wa-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: none;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-widget svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.card {
  background: rgba(5, 22, 34, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card:hover img {
  transform: scale(1.08);
}

.card__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card__image .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(5, 22, 34, 0.8);
  color: #D4AF37;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.card__body {
  padding: 25px;
}

.card__body h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.card__body p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: rgba(204, 214, 246, 0.8);
  line-height: 1.4;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 25px;
}

.card__footer .price {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #D4AF37;
  font-size: 1.2rem;
}

.card__footer .price span {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(204, 214, 246, 0.6);
  text-transform: uppercase;
  margin-left: 5px;
}

.hero {
  min-height: 100vh;
  padding: 180px 50px 140px;
  /* Ample space to clear fixed header and booking bar */
  position: relative;
  overflow: hidden;
  background: #051622 url("../images/galle.jpg") no-repeat center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767px) {
  .hero {
    padding: 140px 20px 80px;
    background-attachment: scroll; /* Fixed backgrounds often glitch on mobile */
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 22, 34, 0.9) 0%, rgba(5, 22, 34, 0.4) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  animation: fadeIn 1.2s ease-out;
}

.hero__content .tagline {
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hero__content h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

@media (max-width: 1023px) {
  .hero__content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .hero__content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}

.hero__content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #CCD6F6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .hero__content p {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.hero__content .hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero__content .hero__actions {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
  }
}

.section {
  padding: 120px 50px;
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
}

.section--alt {
  background: rgba(5, 22, 34, 0.4);
}

.section__header {
  margin-bottom: 60px;
  max-width: 700px;
}

.section__header .tagline {
  display: inline-block;
  margin-bottom: 15px;
}

.section__header h2 {
  margin-bottom: 20px;
}

.section__header p {
  opacity: 0.8;
  font-size: 1.15rem;
}

@media (max-width: 767px) {
  .section {
    padding: 80px 25px;
  }
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* --- Luxury Amenities --- */
.amenities-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

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

@media (max-width: 480px) {
  .amenities-container {
    grid-template-columns: 1fr;
  }
}

.amenity-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  transition: 0.3s ease;
}

/* --- Landmarks Premium Grid (About Page) --- */
.landmarks-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.landmark-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: #051622;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.landmark-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landmark-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
  filter: brightness(0.7);
}

.landmark-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 10;
  background: linear-gradient(to top, rgba(5, 22, 34, 0.95) 20%, rgba(5, 22, 34, 0) 100%);
  transform: translateY(20px);
  transition: 0.5s ease;
}

.landmark-card__content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #D4AF37;
  margin-bottom: 12px;
}

.landmark-card__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease 0.1s;
}

.landmark-card:hover {
  transform: translateY(-15px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.landmark-card:hover .landmark-card__image img {
  transform: scale(1.1);
  filter: brightness(0.5);
}

.landmark-card:hover .landmark-card__content {
  transform: translateY(0);
}

.landmark-card:hover .landmark-card__content p {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .landmarks-premium-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .landmark-card {
    height: 400px;
  }
}

.amenity-item:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.05);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
}

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

.amenity-item p {
  font-size: 0.9rem;
  color: rgba(204, 214, 246, 0.6);
  line-height: 1.5;
}

/* --- Luxury Rooms Masonry --- */
.rooms-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.room-card {
  background: rgba(5, 22, 34, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: 0.4s ease;
}

.room-card--wide {
  grid-column: span 3;
}

.room-card--wide .room-card__img {
  height: auto;
  aspect-ratio: 21 / 9;
  /* Cinematic wide ratio */
  background: #000;
  /* Cinematic black bars if image ratio differs */
}

.room-card--wide .room-card__img img {
  object-fit: contain;
}

.room-card:hover {
  transform: translateY(-10px);
  border-color: #D4AF37;
}

.room-card__img {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #051622;
}

.room-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Luxury Vignette & Overlay */
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 40%, rgba(5, 22, 34, 0.4) 100%),
    linear-gradient(to bottom, rgba(5, 22, 34, 0) 50%, rgba(5, 22, 34, 0.6) 100%);
  pointer-events: none;
  z-index: 2;
}

.room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  /* Professional Color Grading */
  filter: brightness(0.85) contrast(1.15) saturate(1.1) sepia(0.1);
}

.room-card:hover .room-card__img img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.1) saturate(1.2) sepia(0);
}

.room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 175, 55, 0.9);
  color: #051622;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.room-card__details {
  padding: 30px;
}

.room-card__details h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.room-card__details p {
  color: rgba(204, 214, 246, 0.7);
  font-size: 1rem;
  margin-bottom: 20px;
}

.room-card__price {
  font-size: 1.4rem;
  color: #D4AF37;
  font-weight: 600;
}

.room-features, .villa-features {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 15px;
}

.room-features li, .villa-features li {
  font-size: 0.85rem;
  color: rgba(204, 214, 246, 0.8);
  position: relative;
  padding-left: 18px;
}

.room-features li::before, .villa-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  color: #D4AF37;
}

.room-card__price span {
  font-size: 0.85rem;
  color: rgba(204, 214, 246, 0.5);
  font-weight: 300;
}

/* --- Testimonials --- */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #D4AF37;
  font-size: 1.2rem;
}

.testimonial-author span {
  color: rgba(204, 214, 246, 0.5);
  font-size: 0.9rem;
}

/* --- Direct Booking Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.benefit-item {
  background: rgba(212, 175, 55, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .rooms-masonry {
    grid-template-columns: 1fr;
  }

  .room-card--wide {
    grid-column: span 1;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Entire Villa Feature --- */
.villa-feature {
  background: #051622;
  padding: 100px 5%;
}

.villa-feature-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
}

.villa-feature__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: #051622;
}

/* Overlapping Slider Styles */
.villa-feature__image-slider {
  position: relative;
  height: 550px;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlapping-slider {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: #051622;
}

.overlapping-slider--vtl {
  width: 280px;
  height: 420px;
  left: 0;
  top: 0;
  z-index: 1;
}

.overlapping-slider--hrz {
  width: 420px;
  height: 280px;
  right: 0;
  bottom: 0;
  z-index: 2;
}

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

.slider-track img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 2s ease-in-out;
  transform: scale(1.1);
  filter: brightness(0.85) contrast(1.1);
}

.slider-track img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.overlapping-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 22, 34, 0) 50%, rgba(5, 22, 34, 0.4) 100%);
  pointer-events: none;
  z-index: 3;
}

.villa-feature__image::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Luxury Vignette & Overlay matching room-card */
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 40%, rgba(5, 22, 34, 0.4) 100%),
    linear-gradient(to bottom, rgba(5, 22, 34, 0) 50%, rgba(5, 22, 34, 0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.villa-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  /* Professional Color Grading matching room-card */
  filter: brightness(0.85) contrast(1.15) saturate(1.1) sepia(0.1);
}

.villa-feature-container:hover .villa-feature__image img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1) saturate(1.2) sepia(0);
}

.villa-feature__content h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.1;
}

.villa-feature__content p {
  font-size: 1.2rem;
  color: rgba(204, 214, 246, 0.8);
  margin-bottom: 40px;
}

.villa-price-tag {
  background: rgba(212, 175, 55, 0.1);
  padding: 20px 30px;
  border-radius: 15px;
  display: inline-block;
  border-left: 5px solid #D4AF37;
}

.price-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #D4AF37;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.price-value span {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.6;
}

@media (max-width: 1023px) {
  .villa-feature-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .villa-feature__image-slider {
    height: 400px;
    margin-bottom: 20px;
  }

  .overlapping-slider--vtl {
    width: 180px;
    height: 280px;
  }

  .overlapping-slider--hrz {
    width: 280px;
    height: 180px;
    right: 0;
  }

  .villa-feature__image {
    height: 350px;
  }

  .villa-feature__content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .villa-feature__image-slider {
    height: 300px;
  }

  .overlapping-slider--vtl {
    width: 140px;
    height: 210px;
  }

  .overlapping-slider--hrz {
    width: 210px;
    height: 140px;
  }
}

/* --- Detailed Services Grid (Services Page) --- */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.service-detail-item {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.02);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  align-items: flex-start;
  transition: 0.3s ease;
}

.service-detail-item:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.04);
}

.service-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-icon svg {
  width: 28px;
  height: 28px;
}

.service-detail-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-detail-info p {
  color: rgba(204, 214, 246, 0.7);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-item {
    padding: 25px;
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background: #051622 url("../images/galle.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 0;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 22, 34, 0.7), rgba(5, 22, 34, 0.9));
}

.about-hero__content {
  position: relative;
  z-index: 10;
}

.section--split {
  padding: 100px 50px;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.split-content {
  max-width: 600px;
}

.split-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 5;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

@media (max-width: 1023px) {
  .split-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .split-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 767px) {
  .section--split {
    padding: 80px 20px;
  }

  .split-container {
    gap: 40px;
  }

  .image-wrapper {
    aspect-ratio: 4 / 3;
  }
}

.history-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1023px) {
  .section--split {
  padding: 100px 50px;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.split-content {
  max-width: 600px;
}

.split-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4 / 5;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

@media (max-width: 1023px) {
  .split-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .split-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 767px) {
  .section--split {
    padding: 80px 20px;
  }

  .split-container {
    gap: 40px;
  }

  .image-wrapper {
    aspect-ratio: 4 / 3;
  }
}

.history-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.history-section__image {
  position: relative;
}

.history-section__image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #D4AF37;
  z-index: -1;
}

.history-section__image img {
  width: 100%;
  border-radius: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
}

@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.service-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 40px;
  background: rgba(5, 22, 34, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 12px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.03);
}

.service-item__icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.service-item__icon svg {
  width: 30px;
  height: 30px;
  fill: #D4AF37;
}

.service-item__content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.service-item__content p {
  font-size: 1rem;
  color: rgba(204, 214, 246, 0.7);
  margin: 0;
}

@media (max-width: 767px) {
  .service-item {
    flex-direction: column;
    padding: 30px;
  }
}

.contact-hero {
  height: 50vh;
  position: relative;
  overflow: hidden;
  background: #051622 url("../images/galle.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 0;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 22, 34, 0.7), rgba(5, 22, 34, 0.9));
}

.contact-hero__content {
  position: relative;
  z-index: 10;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}

@media (max-width: 1023px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .contact-layout form div {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .contact-hero {
    height: 40vh;
  }
}

.map-container {
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 60px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* --- Mobile Menu Styles --- */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  padding: 5px;
}

.header__toggle span {
  width: 25px;
  height: 2px;
  background: #D4AF37;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

@media (max-width: 1023px) {
  .header__toggle {
    display: flex;
  }

  .header__lang {
    display: none;
  }
}

/* Open state for toggle */
.header__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.header__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 22, 34, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1150;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  padding: 60px 0;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  align-items: center;
  width: 100%;
  min-height: min-content;
}

.mobile-menu__logo {
  margin-bottom: 20px;
}

.mobile-logo-img {
  height: 80px;
  width: auto;
}

.mobile-menu__content a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}

.mobile-menu__content a:hover {
  color: #D4AF37;
}

.mobile-menu__content a.active {
  color: #D4AF37;
}

.mobile-menu__lang {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobile-menu__lang a {
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  opacity: 0.6;
  font-weight: 600;
}

.mobile-menu__lang a.active {
  opacity: 1;
  color: #D4AF37;
}

/* Prevents scrolling when menu is open */
body.menu-open {
  overflow: hidden;
}

/* --- FAQ Section --- */
.faq-section {
  background: rgba(5, 22, 34, 0.4);
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 30px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: #D4AF37;
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 0 30px 20px;
  color: rgba(204, 214, 246, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

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

/*# sourceMappingURL=style.css.map */