* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  ;
}


html {
  --s: 12px;
  /* control the size*/
  --c1: #f5e6ca;
  --c2: #ededed;

  --g: var(--c1) 3.125%, var(--c2) 0 9.375%,
    var(--c1) 0 15.625%, var(--c2) 0 21.875%,
    var(--c1) 0 28.125%, #0000 0;
  background:
    linear-gradient(225deg, #0000 3.125%, var(--c2) 0 9.375%,
      #0000 0 78.125%, var(--c2) 0 84.375%, #0000 0) 0 calc(var(--s)/2),
    linear-gradient(45deg, var(--g)) 0 var(--s),
    linear-gradient(45deg, var(--g)) calc(var(--s)/-2) calc(var(--s)/-2),
    linear-gradient(225deg, var(--g)) var(--s) 0,
    linear-gradient(225deg, var(--g)) calc(var(--s)/2) var(--s),
    repeating-linear-gradient(-45deg, var(--c1) -3.125% 3.125%, var(--c2) 0 9.375%);
  background-size: calc(2*var(--s)) calc(2*var(--s));
}

/* body {
  
  background-color: #D3BD94;

  background: linear-gradient(45deg, #f5e6ca 25%, transparent 25%), linear-gradient(315deg, #f5e6ca 25%, #c1c1c100 25%), linear-gradient(45deg, #fff0 24%, #7d7d7d00 25%, #7d7d7d0a 30%, transparent 31%, transparent 39%, #7d7d7d00 40%, #7d7d7d12 45%, transparent 45%), linear-gradient(315deg, transparent 24%, #7d7d7d00 25%, #7d7d7d0d 30%, transparent 31%, transparent 39%, #7d7d7d08 40%, #7d7d7d08 45%, transparent 45%);
  background-size: 2em 2em;
  background-color: #f5e6ca;

  background-size: 30px 30px;

  background-position: 0 0, 0 0, 0 0, 0 0;
  min-height: 100vh;
  margin: 0;
} */

:root {
  --heading-font: "Josefin Sans", sans-serif;
  --text-font: "Montserrat", sans-serif;
  --dark-gray: #333333;
  --accent-red: #52131E;
  --border-light: #f2f0e0;
  --border-light: #e0decb;
  --white: #ffff;
  --sand: #D3BD94;
  --footer-text-color: rgba(255, 255, 255, 0.8);
  --bg-white: #ffffff;
  --border-light: #eeeeee;
}


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.56);
}


/* Logo */
.nav-logo img {
  height: 50px;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  transition: 0.3s;
}

/* Hover underline */
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #52131E;
  transform: translateX(-50%);
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #52131E;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

/* Right Button */
.nav-btn button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn button:hover {
  background: #52131E;
  color: var(--white);
}

/* Dropdown Menu */
.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu .dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  min-width: 180px;
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav-menu .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.nav-menu .dropdown-menu li {
  padding: 0;
}

.nav-menu .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.nav-menu .dropdown-menu li a:hover {
  background: rgba(82, 19, 30, 0.8);
  color: white;
  padding-left: 25px;
}

.nav-menu .dropdown-menu li a::after {
  display: none;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }


  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 750px;

    /* --- Glassy Blur Effect --- */
    background: rgba(80, 80, 80, 0.46);
    /* Light transparent base */
    backdrop-filter: blur(15px);
    /* This creates the glass effect */
    -webkit-backdrop-filter: blur(15px);
    /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    /* --- Initial Hidden State for Animation --- */
    display: flex;
    /* Always flex, but hidden via opacity/transform */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    /* Starts slightly higher */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth "ease" curve */
    pointer-events: none;
    /* Prevents clicking links when menu is hidden */
  }

  /* --- Active State with Smooth Entrance --- */
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Slides down to original position */
    pointer-events: auto;
  }

  .nav-menu li {
    padding: 20px 0;
    width: 100%;
    text-align: center;
    /* Optional: Fade in individual items slightly slower */
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
    transition-delay: 0.1s;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-btn {
    display: none;
    /* Ensure button is visible on mobile */
    cursor: pointer;
  }

  /* Mobile Dropdown Styles */
  .nav-menu .dropdown {
    position: relative;
    width: 100%;
  }

  .nav-menu .dropdown-toggle {
    justify-content: center;
  }

  .nav-menu .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
  }

  .nav-menu .dropdown.active .dropdown-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
  }

  .nav-menu .dropdown-menu li {
    padding: 10px 0;
  }

  .nav-menu .dropdown-menu li a {
    padding: 10px 20px;
  }

  .nav-menu .dropdown-menu li a:hover {
    padding-left: 20px;
  }
}



.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slides */
.slides {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slides.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Text Content */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.content h1 {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 1px;
}

.content h1 span {
  color: var(--sand);
}

.content p {
  font-size: 18px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .content h1 {
    font-size: 34px;
  }

  .content p {
    font-size: 15px;
  }
}





.experience-section {
  padding: 80px 20px;
  text-align: center;
  /* background-color: #f9f7eb;  */
}

/* Headings */
.main-heading {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #000;
  margin-bottom: 10px;
}

.sub-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.sub-heading {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--dark-gray);
  white-space: nowrap;
}

.line {
  height: 1px;
  background: #e0decb;
  flex-grow: 1;
  max-width: 150px;
}

/* Features Grid */
.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  flex: 1;
  min-width: 200px;
  padding: 40px 20px;
  border-left: 1px solid var(--border-light);
  transition: all 0.4s ease;
  /* Smooth animation */
}

.feature-item:last-child {
  border-right: 1px solid var(--border-light);
}

/* Icon Styles */
.icon-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.icon-circle i {
  color: var(--accent-red);
  font-size: 24px;
}

.feature-item p {
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Hover Animation */
.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px);
}

.feature-item:hover .icon-circle {
  transform: scale(1.1);
  background-color: var(--accent-red);
}

.feature-item:hover .icon-circle i {
  color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
  }

  .feature-item {
    border-left: none;
    border-bottom: 1px solid var(--border-light);
  }

  .line {
    display: none;
    /* Simplifies mobile view */
  }
}

.luxury-card-section {
  padding: 40px 20px;
  /* background-color: var(--bg-cream);  */
}

.card-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
}

/* Banner Layout */
.banner-top {
  display: flex;
  min-height: 400px;
}

.banner-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-image {
  flex: 1.2;
  background: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Soft white fade from image to text */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, #fff 0%, transparent 40%);
}

/* Typography & UI */
.badge {
  background: #fdf5e6;
  padding: 4px 12px;
  font-family: var(--text-font);
  font-size: 11px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.brand-logo img {
  height: 70px;
  margin-bottom: 5px;
}

.intro-title {
  font-family: var(--heading-font);
  font-size: 26px;
  color: #000;
  margin-bottom: 15px;
}

.intro-text {
  font-family: var(--text-font);
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
  background: var(--accent-red);
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-family: var(--text-font);
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Offers Section */
.offers-section {
  padding: 40px 50px;
}

.section-label {
  font-family: var(--heading-font);
  font-size: 20px;
  margin-bottom: 30px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.offer-item h4 {
  font-family: var(--heading-font);
  margin: 15px 0 5px;
  font-size: 16px;
}

.offer-item p {
  font-family: var(--text-font);
  font-size: 13px;
  color: var(--dark-gray);
  line-height: 1.4;
}

.icon-red {
  color: var(--accent-red);
  font-size: 20px;
}

/* Bottom Bar */
.bottom-bar {
  background: #f8fafb;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.bottom-text {
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--dark-gray);
}

/* Mobile Responsive */
@media (max-width: 850px) {
  .banner-top {
    flex-direction: column;
  }

  .banner-image {
    min-height: 250px;
    order: -1;
  }

  .image-overlay {
    background: linear-gradient(to top, #fff 0%, transparent 40%);
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bottom-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.feedback-outer-wrapper {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background-color: var(--bg-cream);
}

/* Boxed Container */
.feedback-boxed-container {
  max-width: 1100px;
  width: 100%;
  background: transparent;
  /* Changed from #ffffff */
  padding: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  /* Changed to visible so circles can be seen if they overlap */
  /* Border and shadow removed as requested */
}

/* Header Section */
.feedback-header {
  flex: 0 0 35%;
  z-index: 2;
  border-right: 1px solid var(--border-color);
  padding-right: 40px;
}

.feedback-header .title {
  font-family: var(--heading-font);
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.feedback-header .subtitle {
  font-family: var(--text-font);
  color: var(--dark-gray);
  font-size: 15px;
  margin-bottom: 20px;
}

/* Testimonial Fader Centered */
.testimonial-fader {
  flex: 1;
  position: relative;
  height: 250px;
  /* Adjust height based on content */
  display: flex;
  align-items: center;
  /* Vertically centers the cards */
  justify-content: center;
  /* Horizontally centers the cards */
  padding-left: 40px;
}

.testimonial-card {
  position: absolute;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  /* Centers the text and user info */
  animation: fadeLoop 12s infinite;
  /* 4 items * 3s = 12s total */
}

/* Precise Staggered Delays for 4 items */
.item-1 {
  animation-delay: 0s;
}

.item-2 {
  animation-delay: 3s;
}

.item-3 {
  animation-delay: 6s;
}

.item-4 {
  animation-delay: 9s;
}

@keyframes fadeLoop {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  4% {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  25% {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  29% {
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
  }

  100% {
    opacity: 0;
  }
}

/* Text Styles */
.review-text {
  font-family: var(--text-font);
  font-size: 20px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 25px;
  font-weight: 400;
  font-style: italic;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
}

.username {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

/* Decorative Ring */
.circle-decoration {
  position: absolute;
  top: 180px;
  left: -130px;
  /* Adjust this to move the set of circles left or right */
  transform: translateY(-50%);

  /* The main (outer) circle */
  width: 400px;
  height: 400px;
  border: 1px solid #e0decb;
  border-radius: 50%;
  z-index: -1;

  /* Using box-shadow to create two inner circles perfectly centered */
  /* shadow 1: middle circle | shadow 2: innermost circle */
  box-shadow:
    inset 0 0 0 40px transparent,
    /* The next two lines act as the inner 2 borders */
    0 0 0 -60px transparent,
    inset 0 0 0 1px #e0decb,
    0 0 0 0 transparent;
}

/* Alternative more robust way for the 3 circles using pseudo-elements */
.circle-decoration::before,
.circle-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #e0decb;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Middle Circle */
.circle-decoration::before {
  width: 300px;
  height: 300px;
}

/* Innermost Circle */
.circle-decoration::after {
  width: 200px;
  height: 200px;
}

/* Header border adjustment for transparent background */
.feedback-header {
  flex: 0 0 35%;
  z-index: 2;
  border-right: 1px solid rgba(224, 222, 203, 0.5);
  /* Made more subtle */
  padding-right: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
  .feedback-boxed-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .feedback-header {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 30px 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .testimonial-fader {
    padding-left: 0;
    height: 300px;
  }

  .review-text {
    font-size: 18px;
    margin-top: 200px;
    margin-left: -150px;
    width: 300px;
  }
}



.collections-section {
  /* Updated padding as requested */
  padding: 80px 120px;
  background-color: var(--bg-cream);
}

.collections-header {
  margin-bottom: 40px;
}

.main-title {
  font-family: var(--heading-font);
  font-size: 32px;
  color: #000;
  margin: 0 0 10px 0;
}

.sub-title {
  font-family: var(--text-font);
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* The Grid Container */
.collections-grid {
  display: grid;
  /* 4 columns for desktop */
  grid-template-columns: repeat(4, 1fr);
  /* Base height for each grid row */
  grid-auto-rows: 180px;
  gap: 15px;
  margin: 40px 0px;
}


.grid-item {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Masonry Height logic to match the image */
.tall {
  grid-row: span 2;
}

.tall-2 {
  grid-row: span 2;
}

.tall-3 {
  grid-row: span 2;
}

/* Event-friendly is often the tallest */


/* Overlay Styling */
.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.item-overlay h3 {
  font-family: var(--heading-font);
  font-size: 18px;
  margin: 0;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  font-size: 10px;
  font-family: var(--text-font);
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.logo-text {
  font-family: var(--heading-font);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

/* Smooth Animation */
.grid-item:hover {
  transform: scale(1.02);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .collections-section {
    padding: 60px 40px;
  }

  /* Reduce padding for smaller screens */
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet */
  }
}

@media (max-width: 480px) {
  .collections-section {
    padding: 40px 20px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    grid-auto-rows: 250px;
  }

  .tall,
  .tall-2,
  .tall-3 {
    grid-row: span 1;
  }

  /* Reset heights for mobile stack */
  .main-title {
    margin-top: 160px;
  }
}

.loyalty-banner {
  /* Replace with your actual dark villa image */
  background: url('image/loyel.png') no-repeat center center;
  background-size: cover;
  border-radius: 8px;
  margin: 40px 120px;
  /* Matching your previous section padding */
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.loyalty-overlay {
  background: rgba(0, 0, 0, 0.7);
  /* Dark semi-transparent overlay */
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Brand Typography */
.loyalty-brand {
  font-family: var(--heading-font);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 24px;
}

.program-type {
  font-weight: 300;
  opacity: 0.8;
}

/* Content Typography */
.loyalty-title {
  font-family: var(--heading-font);
  color: var(--sand);
  font-size: 34px;
  margin-bottom: 15px;
}

.loyalty-text {
  font-family: var(--text-font);
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
  opacity: 0.9;
}

/* Button & Transitions */
.btn-know-more {
  display: inline-block;
  background-color: var(--accent-red);
  color: var(--white);
  padding: 15px 40px;
  text-decoration: none;
  font-family: var(--text-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-know-more:hover {
  background-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .loyalty-banner {
    margin: 40px 40px;
  }
}

@media (max-width: 768px) {
  .loyalty-overlay {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .loyalty-banner {
    margin: 20px 20px;
  }

  .loyalty-text {
    margin: 0 auto 20px;
  }

  .loyalty-title {
    font-size: 28px;
  }
}

/* ===== About Us Section ===== */
.about-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.about-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards ease-out;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Content */
.about-content {
  flex: 1;
  position: relative;
}

.about-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.about-title-outline {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
  text-stroke: 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin-top: 8px;
}

.about-text {
  font-family: var(--text-font);
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: justify;
  opacity: 0;
  animation: fadeIn 1s forwards ease-out 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Rotating Badge */
.rotating-badge {
  position: relative;
  width: 150px;
  height: 150px;
  opacity: 0;
  animation: fadeIn 1s forwards ease-out 0.6s;
}

.rotating-text {
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.circle-text {
  font-family: var(--text-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  fill: var(--dark-gray);
  text-transform: uppercase;
}

.badge-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: var(--accent-red);
  font-weight: bold;
}

/* Right Image */
.about-image {
  flex: 1;
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s forwards ease-out 0.4s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 40px;
  }

  .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .about-image {
    order: -1;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-title,
  .about-title-outline {
    font-size: 36px;
  }

  .about-text {
    font-size: 14px;
    text-align: left;
  }

  .rotating-badge {
    width: 120px;
    height: 120px;
  }

  .circle-text {
    font-size: 15px;
  }

  .badge-arrow {
    font-size: 24px;
  }
}


.contact-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.contact-flex-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto;
}

/* --- Collage Gallery Styles --- */
.collage-gallery {
  flex: 1;
  position: relative;
  height: 600px;
}

.collage-bg-block {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 50%;
  height: 70%;
  background-color: #433e3e;
  /* cite: 14 */
  z-index: 1;
}

.scroll-zoom {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

.img-left {
  top: -8%;
  left: 200px;
  width: 65%;
  height: 350px;
}

.img-right {
  top: 20%;
  width: 65%;
  height: 350px;
  right: 200px;
}

.img-bottom {
  bottom: 25px;
  top: 296px;
  left: 40%;
  width: 65%;
  height: 350px;
  z-index: 4;
}

/* --- Form Styles --- */
.form-wrapper {
  flex: 1;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards ease-out;
  /* cite: 13 */
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.request-form {
  background-color: var(--accent-red);
  /* cite: 13 */
  padding: 40px;
  border-radius: 8px;
  color: white;
  font-family: var(--text-font);
}

.form-title {
  font-family: var(--heading-font);
  font-size: 28px;
  margin-bottom: 25px;
}

.form-row {
  margin-bottom: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 4px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: white;
  color: var(--accent-red);
  border: none;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #f2f2f2;
  transform: translateY(-2px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .contact-section {
    padding: 40px 40px;
  }

  .contact-flex-container {
    flex-direction: column;
  }

  .collage-gallery {
    display: none;
  }

  .form-wrapper {
    width: 100%;
    order: 1;
  }
}

.main-footer {
  background-color: var(--accent-red);
  padding-top: 80px;
  color: white;
  overflow: hidden;
}

.footer-container {
  padding: 0 120px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 4 Column Grid Logic */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  /* Wider ends for logo and contact */
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

/* Decorative line under headings */
.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* About Section */
.footer-logo img {
  height: 85px;
  margin-bottom: 20px;
}

.footer-desc {
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 1.8;
  color: var(--footer-text-color);
}

/* Menu Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 23px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  font-family: var(--text-font);
  font-size: 14px;
  color: var(--footer-text-color);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 8px;
  /* Smooth hover move */
}

/* Contact & Socials */
.contact-info p {
  font-family: var(--text-font);
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  color: var(--footer-text-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: white;
  color: var(--accent-red);
  transform: translateY(-3px);
}

/* Large Bottom Text Section */
.footer-bottom-text {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  /* Removed padding to let text touch the bottom */
  padding: 0;
  text-align: center;
  overflow: hidden;
  /* Prevents unwanted scrollbars */
  line-height: 0.8;
  /* Pulls the text block tighter */
}

.scrolling-text {
  font-family: var(--heading-font);
  font-size: 12vw;
  /* margin-bottom: 0 ensures it sits on the floor */
  margin: 0;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: 900;

  /* This pushes the actual letters to the bottom edge */
  display: block;
  transform: translateY(15%);
  /* Adjust this % if you want it even lower */
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Switch to 2x2 grid */
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Stack vertically */
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info p,
  .social-links {
    justify-content: center;
  }

  .footer-bottom-text {
    padding: 30px 0;
  }

  .scrolling-text {
    font-size: 14vw;
    letter-spacing: 2px;
  }
}

.booking-search-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  /* Adjust to overlap your hero banner */
  padding: 0 120px;
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tab Styles */
.booking-tabs {
  display: flex;
  gap: 2px;
}

.tab-btn {
  padding: 12px 30px;
  border: none;
  font-family: var(--heading-font);
  cursor: pointer;
  background: var(--accent-red);
  color: #fff;
  border-radius: 10px 10px 0 0;
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--bg-white);
  color: #000;
}

/* Search Bar Container */
.search-bar {
  background: var(--bg-white);
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 0 15px 15px 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.search-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
  border-right: 1px solid var(--border-light);
  position: relative;
}

.search-item:nth-last-child(2) {
  border-right: none;
}

.icon-red {
  color: var(--accent-red);
  font-size: 24px;
}

.search-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
}

.search-text label {
  font-family: var(--text-font);
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
}

.search-text input,
.search-text span {
  border: none;
  font-family: var(--text-font);
  font-weight: 600;
  font-size: 15px;
  color: #333;
  outline: none;
  background: transparent;
}

/* Dropdown Menu Styles */
.counter-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  display: none;
  z-index: 20;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent-red);
  background: transparent;
  color: var(--accent-red);
  border-radius: 50%;
  cursor: pointer;
}

/* Button Style */
.search-btn {
  background: var(--accent-red);
  color: white;
  border: none;
  padding: 15px 45px;
  border-radius: 8px;
  font-family: var(--text-font);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(163, 51, 51, 0.3);
}

/* Mobile View */
@media (max-width: 1024px) {
  .booking-search-section {
    padding: 0 20px;
    margin-top: 0;
  }

  .search-bar {
    flex-direction: column;
    gap: 20px;
    border-radius: 15px;
  }

  .search-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    width: 100%;
  }

  .search-btn {
    width: 100%;
  }
}

/* ===== Sticky Image Section ===== */
.sticky-image-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  min-height: 100vh;
}

.sticky-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards ease-out;
}

/* Left Image - Sticky */
.sticky-image-wrapper {
  flex: 0 0 45%;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sticky-img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Right Content - Scrollable */
.scrolling-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* First content block visible by default */
.content-block:first-child {
  opacity: 1;
}

.content-block.active {
  opacity: 1;
}

.content-block h2 {
  font-family: var(--heading-font);
  font-size: 54px;
  color: #000;
  margin-bottom: 30px;
  position: relative;
}

.content-block h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
}

.content-block p {
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: justify;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .sticky-image-section {
    padding: 60px 40px;
    min-height: auto;
  }

  .sticky-container {
    flex-direction: column;
    gap: 40px;
  }

  .sticky-image-wrapper {
    position: relative;
    top: 0;
    flex: 1;
    width: 100%;
  }

  .sticky-img {
    height: 400px;
    width: 100%;
  }

  .scrolling-content-wrapper {
    gap: 50px;
    padding: 0;
  }

  .content-block {
    min-height: auto;
    padding: 30px 0;
    opacity: 1;
  }

  .content-block h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .sticky-image-section {
    padding: 40px 20px;
  }

  .sticky-img {
    height: 300px;
  }

  .scrolling-content-wrapper {
    gap: 40px;
  }

  .content-block {
    padding: 20px 0;
  }

  .content-block h2 {
    font-size: 28px;
  }

  .content-block p {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .sticky-image-section {
    padding: 30px 15px;
  }

  .sticky-img {
    height: 250px;
  }

  .content-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .content-block p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

/* ===== Reverse Sticky Section - Images on Left, Content on Right ===== */
.reverse-sticky-section {
  padding: 80px 120px;
  background-color: var(--bg-cream);
  min-height: 100vh;
}

.reverse-sticky-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards ease-out;
}

/* Left Images - Scrollable */
.scrolling-images-wrapper {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.image-block {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* First image starts from top */
.image-block:first-child {
  align-items: flex-start;
  padding-top: 0;
}

.scroll-image {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* First image visible on load with reveal animation */
.image-block:first-child .scroll-image {
  opacity: 1;
  transform: scale(1);
  animation: revealImage 1.2s ease-out forwards;
}

@keyframes revealImage {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.image-block.active .scroll-image {
  opacity: 1;
  transform: scale(1);
}

/* Right Content - Sticky */
.sticky-content-wrapper {
  flex: 1;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
  display: flex;
  align-items: center;
}

.sticky-content-inner {
  width: 100%;
}

.sticky-content-inner h2 {
  font-family: var(--heading-font);
  font-size: 54px;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
}

.sticky-content-inner h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent-red);
}

.sticky-content-inner p {
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: justify;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .reverse-sticky-section {
    padding: 60px 40px;
    min-height: auto;
  }

  .reverse-sticky-container {
    flex-direction: column;
    gap: 40px;
  }

  .scrolling-images-wrapper {
    flex: 1;
    gap: 30px;
  }

  .image-block {
    min-height: auto;
  }

  .image-block:first-child {
    align-items: flex-start;
  }

  .scroll-image {
    height: 400px;
    opacity: 1;
    transform: scale(1);
  }

  .image-block:first-child .scroll-image {
    animation: revealImageMobile 1s ease-out forwards;
  }

  @keyframes revealImageMobile {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .sticky-content-wrapper {
    position: relative;
    top: 0;
    transform: none;
  }

  .sticky-content-inner h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .reverse-sticky-section {
    padding: 40px 20px;
  }

  .scrolling-images-wrapper {
    gap: 20px;
  }

  .scroll-image {
    height: 300px;
  }

  .sticky-content-inner h2 {
    font-size: 28px;
  }

  .sticky-content-inner p {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .reverse-sticky-section {
    padding: 30px 15px;
  }

  .scroll-image {
    height: 250px;
  }

  .sticky-content-inner h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .sticky-content-inner p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

/* New Testimonial Section with Images */
.testimonial-section {
  padding: 80px 20px;
}

/* Testimonial Container - Masonry Layout */
.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 20px;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
  column-span: all;
}

.testimonial-header .main-heading {
  font-family: var(--heading-font);
  font-size: 42px;
  color: #000;
  margin-bottom: 15px;
}

.testimonial-header .sub-text {
  font-family: var(--text-font);
  font-size: 16px;
  color: var(--dark-gray);
}

/* Testimonial Row - No longer needed for layout but keep for animation */
.testimonial-row {
  display: contents;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-row.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial Box */
.testimonial-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-box.reveal {
  animation: revealBox 0.6s ease forwards;
}

/* Staggered animation delays for each column */
.testimonial-box:nth-child(3n+1).reveal {
  animation-delay: 0s;
}

.testimonial-box:nth-child(3n+2).reveal {
  animation-delay: 0.2s;
}

.testimonial-box:nth-child(3n+3).reveal {
  animation-delay: 0.4s;
}

@keyframes revealBox {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.quote-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.quote-icon i {
  color: #fff;
  font-size: 20px;
}

/* Testimonial Text */
.testimonial-text {
  font-family: var(--text-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 25px;
  font-style: italic;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-red);
}

.author-info h4 {
  font-family: var(--heading-font);
  font-size: 16px;
  color: #000;
  margin: 0 0 3px 0;
}

.author-info p {
  font-family: var(--text-font);
  font-size: 13px;
  color: #666;
  margin: 0;
}

.author-info .location {
  font-size: 12px;
  color: #999;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .testimonial-container {
    column-count: 1;
  }

  .testimonial-header .main-heading {
    font-size: 32px;
  }

  .testimonial-box {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-header .main-heading {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}