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

/* Root Color System */
:root {
  --primary-gold: #d4b23d;
  --dark-bg: #1a1a1a;
  --dark-nav: #262626;
  --light-bg: #f8f8f8;
  --text-dark: #333;
  --text-light: #ffffff;
  --white: #ffffff;
  
  /* Font Families */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-luxury: "Playfair Display", serif;
}

/* Global Typography */
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-family: var(--font-luxury);
  text-align: center;
  padding-top: inherit;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Spacing System (8px Grid) */


.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #121225d9;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  position: -webkit-sticky; /* For Safari/Mobile support */
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999; /* High Z-Index, but allows Modals above */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

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

/* Logo image sizing */
.logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

/* Nav Menu - desktop first */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-left: auto;
}

/* Links */
.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: var(--primary-gold);
}

/* Highlight current page */
.nav-link.active {
  color: var(--primary-gold);
}

/* Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-gold);
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Book button */
.btn-book {
  padding: 0.7rem 1.8rem;
  background: var(--primary-gold);
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 4px 15px rgba(212, 178, 61, 0.2);
}

.btn-book:hover {
  background: transparent;
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 178, 61, 0.4);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1101;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Styles */
.close-menu {
  display: none; /* Hidden by default */
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    position: fixed; /* Force sticky/fixed behavior on mobile */
    width: 100%;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Start hidden off-screen */
    width: 280px;
    height: auto; /* Accommodate content only */
    max-height: 85vh; /* Ensure it doesn't cover the chatbot */
    overflow-y: auto; /* Scroll if content is too long */
    background: #262626;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
    transition: right 0.3s ease, visibility 0.3s;
    z-index: 1100;
    visibility: hidden;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  }

  .nav-menu.open {
    right: 0;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
  }

  .btn-book {
    margin-top: 1rem; /* stays at bottom of menu items */
    width: 100%;
    text-align: center;
  }

  /* Close Button in Mobile Menu */
  .close-menu {
    display: none; /* Hiding this since the hamburger becomes the X */
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
  }

  .close-menu:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
  }
}

/* Header Code on top*/

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-color: var(--light-bg);
  padding-top: inherit;
}

/* Each slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active slide */
.slide.active {
  opacity: 1;
  z-index: 1;
  animation: kenburns-effect 20s ease-out forwards;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* ... (rest of the code) ... */

/* Mobile Hero */
@media (max-width: 768px) {
  .hero {
    height: 500px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn {
    min-width: 100%;
    width: 100%;
  }
  .hero-overlay {
    background: #0f0f14;
  }
}

/* ... (rest of the code) ... */


If you want me to add it to your original code, here it is:


/* ... (your original code) ... */

@media (max-width: 768px) {
  .hero-overlay {
    background: #0f0f14;
  }
}


/* Hero Text Container */
.hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
  padding: 6rem 2rem;
}

/* Staggered animation for hero text */
.hero-title,
.hero-subtitle,
.hero-cta-group {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.slide.active .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hero-title {
  font-size: 2.5rem;
  font-family: var(--font-luxury);
  color: white;
    font-weight: 700;
  line-height: 1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* CTA Button Group */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Premium Button System */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--text-dark);
  border-color: var(--primary-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 178, 61, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-lg {
  min-height: 48px;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
}

/* Trust Bar */
.trust-bar {
  background: var(--dark-bg);
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-weight: 600;
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

/* Ken Burns Animation for Hero Slides */
@keyframes kenburns-effect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero {
    height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
 
}

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn {
    min-width: 100%;
    width: 100%;
  }
}

.about-intro {
  padding: 3rem 1.5rem; /* fair spacing top & bottom */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.about-intro h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #262626;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
}

.about-intro h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d4b23d;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
}

.about-intro p {
  max-width: 800px; /* keeps text readable */
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Section wrapper */
/* Section */
.coverflow-section {
  padding: 4rem 1.5rem;
  background: #f7f7f7;
}

/* Title */
.coverflow-header {
  text-align: center;
  margin-bottom: 3rem;
}

.coverflow-header h2 {
  font-size: 2rem;
  color: #262626;
  margin-bottom: 0.5rem;
}

.coverflow-header p {
  color: #555;
  font-size: 1rem;
}

/* Coverflow container */
.coverflow {
  width: 100%;
  overflow: hidden;
}

/* Track */
.coverflow-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: transform 0.4s ease;
  perspective: 1000px;
}

/* Cards */
.cover {
  width: 287px;
  height: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  flex-shrink: 0;
  transform: scale(0.75);
  opacity: 0.5;
  transition: all 0.4s ease;
}

/* Active & sides */
.cover.active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.cover.left {
  transform: scale(0.75) rotateY(15deg);
}

.cover.right {
  transform: scale(0.75) rotateY(-15deg);
}

/* Controls */
.coverflow-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.coverflow-controls button {
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  border: none;
  background: #262626;
  color: white;
  cursor: pointer;
  border-radius: 6px;
}

/* ===== Contact / Booking Section ===== */
#contact {
  padding: 4rem 1rem;
  background: #040406;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

#contact h2 {
  text-align: center;
  color: #fff;
}

/* Form Card */
.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

/* Form Elements */
#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  border-color: #d4b23d;
  outline: none;
  box-shadow: 0 0 12px rgba(212, 178, 61, 0.25);
  transition: all 0.3s ease;
}

/* Button */
#bookingForm button {
  margin-top: 1rem;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: #d4b23d;
  color: black;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
}

#bookingForm button:hover {
  background: #ffffff;
}

.gallery Masonry Layout */
/* Masonry Layout */
.gallery-section {
  padding: 3rem 1.5rem;
  background: #ffffff;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #262626;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .gallery-container {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-container {
    column-count: 1;
  }
}

/* Map */
#map {
  width: 100%;
  min-height: 300px;
  background: #e0e0e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1rem;
}

/* ===== Desktop Layout ===== */
@media (min-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .contact-form h2 {
    text-align: left;
  }
}
#contact {
  padding: 4rem 1rem;
  background: #080808;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

#bookingForm button {
  margin-top: 1rem;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: #d4b23d;
  color: #000000;
  font-size: 1rem;
  cursor: pointer;
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  text-align: center;
}

.reviews h2 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: #262626;
  font-weight: 700;
}

/* Wrapper */
.reviews-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Track - show one at a time */
.reviews-track {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.review-card {
  position: absolute;
  width: 100%;
  max-width: 450px;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.review-card.active {
  opacity: 1;
  animation: fadeIn 0.6s ease-in-out;
}

.review-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: #262626;
  font-weight: 600;
  transition: color 0.3s ease;
}

.review-card:hover h4 {
  color: #d4b23d;
}

.review-card p {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.review-card:hover p {
  color: #262626;
}

.stars {
  color: #f4c430;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 2px;
  transition: transform 0.3s ease;
}

.review-card:hover .stars {
  transform: scale(1.1);
}

/* Buttons (Desktop) */
.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d4b23d;
  color: black;
  font-weight: 600;
  border: none;
  padding: 0.8rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 178, 61, 0.3);
}

.review-btn:hover {
  background: #d4b23d;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(212, 178, 61, 0.4);
}

.review-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.review-btn.prev {
  left: -60px;
}

.review-btn.next {
  right: -60px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .review-btn {
    display: none;
  }

  .reviews-wrapper {
    min-height: 320px;
  }
}

/* Google review link */
.google-review-link {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1rem 1.8rem;
  background: linear-gradient(135deg, #d4b23d 0%, #d4b23d 100%);
  color: #000000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 178, 61, 0.3);
}

.google-review-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 178, 61, 0.4);
}

/* Fade animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: #111;
  color: #ccc;
  padding-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* Brand */
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Headings */
.site-footer h4 {
  color: #fff;
  margin-bottom: 0.8rem;
}

/* Contact */
/* Use a separate class so grid rules later won't override the masonry layout */
.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-gallery .gallery-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.masonry-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-cta .footer-btn:hover {
  background: #ffffff;
}

/* Bottom */
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid #222;
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

/* ===== About Page ===== */
.about-page {
  font-family: inherit;
}

/* Hero */
.about-hero {
  height: 300px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.pexels.com/photos/3806249/pexels-photo-3806249.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  padding: 109px 2rem;
  color: #fff;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  color: var(--white);
}

.about-hero p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* Containers */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
}

/* Intro */
.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

/* Values */
.about-values {
  background: url("Images/Home banners (1).png") center/cover fixed;
  background-attachment: fixed;
  position: relative;
  padding: 4rem 1.5rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.about-values .about-container {
  position: relative;
  z-index: 2;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  margin-bottom: 0.6rem;
}

/* Process */
.about-process h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  background: #111;
  color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.step span {
  font-size: 2rem;
  font-weight: bold;
  color: #d4b23d;
}

/* CTA */
.about-cta {
  background: #111;
  color: #ffffff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.about-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #d4b23d;
  color: black;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

/* ===== About Location ===== */
.about-location {
  background: #f8f8f8;
}

.about-location h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.location-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Map */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Page Hero ===== */
.page-hero {
  background: #111;
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-hero p {
  margin-top: 0.5rem;
  color: #ccc;
}

/* ===== Booking Layout ===== */
.book-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* ===== Form ===== */
.book-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1rem;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-color: #d4b23d;
  outline: none;
  box-shadow: 0 0 12px rgba(212, 178, 61, 0.25);
}

/* Button */
.primary-btn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  background: #d4b23d;
  color: black;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

/* ===== Right Side Info ===== */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 12px;
  color: #000;
}

.info-card h3 {
  margin-bottom: 0.8rem;
  color: #000;
}

.info-card p {
  color: #000;
}

/* Map */
.map-box {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.address {
  font-size: 0.9rem;
  color: #444;
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .book-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== BASE ===== */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #262626;
}

.gallery-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ===== GALLERY GRID ===== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}

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

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

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000;op 
rgin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Fade out animation for images */
.modal-content.fade-out {
  opacity: 0;
}

/* Fade in animation for images */
.modal-content.fade-in {
  opacity: 1;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Hide masonry on mobile, show carousel */
  .masonry-gallery {
    display: none;
  }

  .mobile-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
  }

  .carousel-container {
    flex: 1;
    max-width: 500px;
    overflow: hidden;
    border-radius: 12px;
  }

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

  .carousel-prev,
  .carousel-next {
    background: #d4b23d;
    color: black;
    font-weight: 600;
    border: none;
    font-size: 24px;
    padding: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .carousel-prev:hover,
  .carousel-next:hover {
    background: #c9a32a;
  }
}

@media (max-width: 500px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .modal-content {
    width: 95%;
  }

  #caption {
    width: 95%;
  }
}

/* Show gallery on desktop */
@media (min-width: 769px) {
  .mobile-carousel {
    display: none;
  }
}

/* ===== REVIEWS ===== */
.review-section {
  padding: 60px 20px;
  text-align: center;
  background: #f7f7f7;
}

.review-box {
  max-width: 600px;
  margin: 0 auto 30px;
  animation: fade 1s ease;
}

.review-stars {
  color: #f4c430;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #5fb146;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CHAT BOT ===== */
.chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 8px;
}

.chat-toggle {
  background: var(--primary-gold);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  z-index: 10001;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-window {
  width: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.chat-window.active {
  display: block;
  animation: openChat 0.3s ease-out;
}

@keyframes openChat {
  0% {
    transform: scale(0.9);
    opacity: 0;
    transform-origin: bottom right;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    transform-origin: bottom right;
  }
}

.chat-header {
  background: #111;
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header span {
  cursor: pointer;
  font-size: 1.5rem;
}

.chat-messages {
  padding: 12px;
  font-size: 14px;
}

.chat-messages .bot {
  background: #f1f1f1;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.chat-options {
  display: flex;
  gap: 6px;
  padding: 10px;
}

.chat-options button {
  flex: 1;
  padding: 6px;
  font-size: 12px;
  border: none;
  background: #d4b23d;
  color: black;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

/* Chat Email Form */
.chat-email-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.chat-email-form input,
.chat-email-form input::placeholder,
.chat-email-form textarea {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: white;
  color: #333;
}

.chat-email-form input::placeholder,
.chat-email-form textarea::placeholder {
  color: #999;
}

.chat-email-form input:focus,
.chat-email-form textarea:focus {
  outline: none;
  border-color: #d4b23d;
  box-shadow: 0 0 12px rgba(212, 178, 61, 0.25);
}

.submit-email-btn {
  padding: 8px 12px;
  background: #d4b23d;
  color: black;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s ease;
}

.submit-email-btn:hover {
  background: #c9a32a;
}

/* =========================
   VALUES SECTION
========================= */

.about-values {
  padding: 4rem 1.5rem;
  background: #0f0f14; /* dark shop vibe */
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: #1a1a22;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card h3 {
  color: #d4b23d; /* gold accent */
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: #cfcfd6;
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212, 178, 61, 0.15);
}

/* Icon styling for value cards */
.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.clickable-icon {
  cursor: pointer;
}

.clickable-icon:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Lightbox for value icons */
.lightbox-values {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-values.active {
  display: flex;
}

.lightbox-values img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 14px;
}

.lightbox-values .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

.values-title {
  color: #fff;
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .value-icon {
    width: 56px;
    height: 56px;
  }

  .values-title {
    font-size: 1.5rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
  }

  .value-card h3 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }

  .lightbox-values img {
    max-width: 90%;
    max-height: 90%;
  }
}

/* =========================
   RESPONSIVE
========================= */

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

  .value-card {
    padding: 2rem 1.5rem;
  }
}

/* ==============================
   HERO MOBILE IMAGE OVERRIDES
   ============================== */

@media (max-width: 768px) {
  .hero {
    height: 420px;
  }

  /* Slide 1 */
  .hero .slide:nth-child(1) {
    background-image: url("Images/Artboard 4mobile.png") !important;
    background-position: center top;
  }

  /* Slide 2 */
  .hero .slide:nth-child(2) {
    background-image: url("Images/Artboard 5mobile.png") !important;
    background-position: center top;
  }

  /* Slide 3 */
  .hero .slide:nth-child(3) {
    background-image: url("Images/Artboard 6mobile.png") !important;
    background-position: center top;
  }
}


/* =================================
   GALLERY SECTION (PRO VERSION)
================================= */

.gallery-section {
  padding: 60px 20px;
  background: #fff;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #262626;
}

/* ===== DESKTOP GRID (clean + stable) ===== */

.gallery-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

/* gallery card */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: #f3f3f3;
}

/* image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* smoother performance */
  transition: transform 0.35s ease;
  will-change: transform;
}

/* hover effect (desktop only feel) */
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Load More Button Container */
.gallery-load-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* Class to hide the button via JS */
#loadMoreBtn.hidden {
  display: none;
}


/* =================================
   MOBILE RESPONSIVE (PRO LEVEL)
   PUT AT BOTTOM ✔
================================= */

@media (max-width: 900px) {

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

}



/* =================================
   UX ENHANCEMENTS: TOAST & LOADING
================================= */

/* Toast Notification */
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s, bottom 0.3s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.toast.success { background-color: #4caf50; }
.toast.error { background-color: #f44336; }

/* Button Loading State */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (max-width: 600px) {

  /* ultra smooth mobile layout */

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 4px;
  }

  .gallery-item {
    border-radius: 8px;
  }

  /* disable heavy hover transforms on touch devices */
  .gallery-item:hover img {
    transform: none;
  }

}

@media (max-width: 420px) {

  /* PRO phone layout */
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

}

/* MOBILE LIMIT GALLERY */

@media (max-width:768px){

  /* hide all images after 6 */
  .mobile-limit .gallery-item:nth-child(n+7){
    display:none;
  }

  /* when expanded */
  .mobile-limit.expanded .gallery-item{
    display:block;
  }

}

/* =================================
   PREMIUM UPGRADE ADDITIONS
================================= */

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 178, 61, 0.2);
  border-color: var(--primary-gold);
}

.stat-number {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-nav);
  padding: 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }
  .btn-mobile-call,
  .btn-mobile-whatsapp {
    flex: 1;
    padding: 1rem;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .btn-mobile-call { background: #333; }
  .btn-mobile-whatsapp { background: #25d366; }
}

/* Ripple Effect Animation */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* =================================
   DUAL NAVBAR SYSTEM (Navbar Swap)
================================= */

/* Base overrides for both navbars to ensure consistency */
.navbar {
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.4s ease-in-out;
}

/* Hero Navbar - Visible at top, scrolls away */
.hero-navbar {
  position: absolute !important; /* Overrides sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Base level */
  opacity: 1;
  visibility: visible;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Sticky Navbar - Hidden initially, slides in on scroll */
.sticky-navbar {
  position: fixed !important;
  top: -150px; /* Hidden above viewport */
  left: 0;
  width: 100%;
  z-index: 1200; /* Above Hero, below Modal */
  opacity: 0;
  visibility: hidden;
  background: #121225 !important; /* Solid background for legibility */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: top 0.4s ease, opacity 0.4s ease;
}

.sticky-navbar.active {
  top: 0 !important;
  opacity: 1;
  visibility: visible;
}

.hero-navbar.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

/* Mobile specific fix for sticky navbar drop animation */
@media (max-width: 768px) {
  .sticky-navbar {
    top: -150px !important; /* Force hide initially so it can drop down */
  }
  .sticky-navbar.active {
    top: 0 !important;
  }
}


/* Social Media Icons */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--primary-gold);
  color: #000000;
  transform: translateY(-2px);
}
  }
}




















































