@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@200..800&display=swap');

:root {
  --primary-green: #0B251A;
  --secondary-green: #183E2F;
  --gold: #C5A880;
  --gold-dark: #A88B63;
  --gold-light: #E0D4C3;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --charcoal: #252827;
  --gray: #6B7270;
  --gray-light: #F0EDE9;
  
  --shadow-sm: 0 4px 12px rgba(11, 37, 26, 0.04);
  --shadow-md: 0 12px 32px rgba(11, 37, 26, 0.08);
  --shadow-lg: 0 24px 48px rgba(11, 37, 26, 0.12);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-green);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

/* Grid Utilities */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-padding { padding: 70px 0; }
}

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

/* Navigation Header */
.top-bar {
  background-color: var(--primary-green);
  color: var(--gold-light);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-info {
  display: flex;
  gap: 24px;
}
.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  transition: var(--transition);
}
.main-header.scrolled {
  background-color: var(--primary-green);
  border-bottom-color: rgba(197, 168, 128, 0.3);
}
.main-header.scrolled .logo,
.main-header.scrolled .nav-menu a {
  color: var(--white);
}
.main-header.scrolled .nav-menu a:hover,
.main-header.scrolled .nav-menu a.active {
  color: var(--gold);
}
.main-header.scrolled .mobile-nav-toggle {
  color: var(--white);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 1px;
}
.logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-dark);
}

.dropdown-item {
  position: relative;
}
.dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 8px 0;
}
.dropdown-item:hover .dropdown-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu-list a {
  display: block;
  padding: 10px 20px;
  color: var(--charcoal);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-light);
}
.dropdown-menu-list li:last-child a {
  border-bottom: none;
}
.dropdown-menu-list a:hover {
  background-color: var(--cream);
  color: var(--primary-green);
  padding-left: 24px;
}

/* Fix scrolled header dropdown visibility */
.main-header.scrolled .nav-menu .dropdown-menu-list a {
  color: var(--charcoal);
}
.main-header.scrolled .nav-menu .dropdown-menu-list a:hover {
  color: var(--primary-green);
  background-color: var(--cream);
}

.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-sm);
}
.btn-book:hover {
  background: var(--primary-green) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-book::after {
  display: none !important;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--primary-green);
  cursor: pointer;
  background: none;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  .dropdown-menu-list {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    transform: none;
    padding-left: 16px;
    margin-top: 8px;
    display: none;
  }
  .dropdown-item.active-menu .dropdown-menu-list {
    display: block;
  }

  /* Fix mobile drawer text visibility when scrolled */
  .main-header.scrolled .nav-menu a {
    color: var(--primary-green);
  }
  .main-header.scrolled .nav-menu a:hover,
  .main-header.scrolled .nav-menu a.active {
    color: var(--gold-dark);
  }
}

/* Section Header */
.section-title-wrapper {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}
.section-subtitle {
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 4px;
  margin-bottom: 8px;
  font-weight: 600;
}
.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--gold);
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.section-divider-line {
  width: 50px;
  height: 1px;
  background-color: var(--gold-light);
}
.section-divider-diamond {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  transform: rotate(45deg);
}
.section-desc {
  max-width: 600px;
  margin: 15px auto 0 auto;
  color: var(--gray);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
}

/* Hero Slideshow Section */
.hero-slider {
  height: 85vh;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-green);
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 37, 26, 0.4), rgba(11, 37, 26, 0.75));
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}
.hero-slide.active .hero-bg-anim {
  animation: kenburns 25s ease forwards;
}

@keyframes kenburns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.15); }
}

.hero-bg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 1s ease 0.5s;
}
.hero-tagline {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-title {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background-color: var(--gold);
  color: var(--primary-green);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-desc { font-size: 1rem; }
  .hero-slider { height: 75vh; }
}

/* Floating Inquiry Widget */
.floating-inquiry {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}
.inquiry-panel {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border-top: 4px solid var(--gold);
}
.inquiry-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: flex-end;
}
.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inquiry-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 1px;
}
.inquiry-field input, .inquiry-field select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  background-color: var(--cream);
  border: 1px solid var(--gray-light);
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: var(--transition);
}
.inquiry-field input:focus, .inquiry-field select:focus {
  border-color: var(--gold);
  background-color: var(--white);
}

@media (max-width: 991px) {
  .inquiry-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .inquiry-form-row button {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .inquiry-form-row {
    grid-template-columns: 1fr;
  }
  .inquiry-form-row button {
    grid-column: 1;
  }
}

/* Flagship Wedding Feature Section */
.wedding-flagship-section {
  background-color: var(--white);
  position: relative;
}
.wedding-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.wedding-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 520px;
}
.wed-img-main {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  z-index: 2;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}
.wed-img-sub {
  grid-column: 7 / 13;
  grid-row: 5 / 13;
  z-index: 3;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.wedding-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.wedding-images img:hover {
  transform: scale(1.05);
}
.wedding-content {
  padding-right: 20px;
}
.wedding-decor-line {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 15px 0 25px 0;
}
.wedding-highlight-list {
  list-style: none;
  margin-top: 30px;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.wedding-highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.wedding-highlight-list i {
  color: var(--gold);
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .wedding-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wedding-images {
    height: 400px;
    order: 2;
  }
  .wedding-content {
    padding-right: 0;
  }
}

/* Service / Feature Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.feature-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.feature-card:hover .feature-card-img img {
  transform: scale(1.1);
}
.feature-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-green);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
  border: 1px solid var(--gold);
}
.feature-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}
.feature-card-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-card-link:hover {
  color: var(--primary-green);
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Call to Action Banner */
.cta-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 37, 26, 0.8);
}
.cta-container {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-container h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.cta-container p {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .cta-container h2 { font-size: 2rem; }
}

/* Rooms Showcase Section */
.rooms-showcase {
  background-color: var(--cream);
}
.room-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 15px;
}
.room-tab-trigger {
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  background: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.room-tab-trigger.active {
  color: var(--primary-green);
}
.room-tab-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gold);
}

.room-tab-content {
  display: none;
  animation: fadeIn 0.6s ease;
}
.room-tab-content.active {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

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

.room-gallery-slider {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}
.room-gallery-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.room-gallery-slider img.active {
  opacity: 1;
}

.room-details-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.room-details-panel h3 {
  font-size: 2rem;
}
.room-details-panel p {
  color: var(--gray);
  font-size: 0.95rem;
}
.room-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.room-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.room-spec-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .room-tab-content.active {
    grid-template-columns: 1fr;
  }
  .room-gallery-slider {
    height: 300px;
  }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 37, 26, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-icon {
  color: var(--gold);
  font-size: 1.8rem;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

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

/* Footer Section */
.main-footer {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 80px 0 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-about p {
  color: var(--gold-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.footer-logo span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 2px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--gold-light);
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gold-light);
  line-height: 1.5;
}
.footer-contact-item a:hover {
  color: var(--gold);
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--gold-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}
.footer-socials a:hover {
  background-color: var(--gold);
  color: var(--primary-green);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.bottom-footer {
  background-color: #06150F;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.bottom-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.bottom-footer a {
  color: var(--gold-light);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .bottom-footer .container {
    flex-direction: column;
    text-align: center;
  }
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 21, 15, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
}
.lightbox-close:hover {
  color: var(--gold);
}

/* Page Banner */
.page-banner-section {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0;
  text-align: center;
}
.page-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 37, 26, 0.6), rgba(11, 37, 26, 0.8));
}
.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-banner-content h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 12px;
}
.page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-breadcrumb a:hover {
  color: var(--gold);
}
.page-breadcrumb span {
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .page-banner-section { padding: 80px 0; }
  .page-banner-content h1 { font-size: 2.2rem; }
}

/* FontAwesome and icon styles overrides */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Premium Conversion Features CSS */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.spec-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.spec-icon {
  width: 48px;
  height: 48px;
  background-color: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.spec-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2px;
}
.spec-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Estimator Widget */
.estimator-container {
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  margin-top: 50px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}
.estimator-container h3 {
  color: var(--gold-light);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  font-family: var(--font-heading);
}
.estimator-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.estimator-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.estimator-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.estimator-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--gold-light);
}
.estimator-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  background: var(--secondary-green);
  height: 8px;
  border-radius: 4px;
  outline: none;
}
.estimator-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.estimator-field input[type="range"]::-webkit-slider-thumb:hover {
  background: var(--white);
  transform: scale(1.2);
}
.slider-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
}
.estimator-result-card {
  background-color: var(--secondary-green);
  border-radius: var(--border-radius);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
}
.estimator-result-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
}
.estimator-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}
.estimator-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.estimator-cta-btn:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.package-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.package-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--gold-dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.package-head {
  background-color: var(--cream);
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}
.package-card.featured .package-head {
  background-color: var(--gold-light);
}
.package-name {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.package-rate {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.package-rate span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--gray);
  font-weight: 400;
}
.package-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.package-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.package-features-list li {
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.package-features-list li i {
  color: var(--gold-dark);
  margin-top: 4px;
}
.package-btn {
  width: 100%;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 12px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  transition: var(--transition);
  display: block;
}
.package-card.featured .package-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.package-btn:hover {
  background-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .estimator-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .package-card.featured {
    transform: none;
  }
}

/* =========================================
   Sticky WhatsApp Floating Button
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.whatsapp-float-btn i {
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 1;
}

/* Pulse ring animation */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.55);
  animation: wa-pulse 2s ease-out infinite;
}

.whatsapp-float-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.3);
  animation: wa-pulse 2s ease-out 0.7s infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);  opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Tooltip label */
.whatsapp-float-label {
  background: #075e54;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  order: -1;   /* label appears to the LEFT of the button */
}

.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-float-btn {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

/* Entrance bounce animation */
@keyframes wa-bounce-in {
  0%   { transform: scale(0) translateY(40px); opacity: 0; }
  70%  { transform: scale(1.1) translateY(-6px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.whatsapp-float {
  animation: wa-bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 18px;
  }
  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
  }
  .whatsapp-float-btn i {
    font-size: 1.55rem;
  }
}

/* =========================================
   YouTube Wedding Video Showcase Section
   ========================================= */
.yt-video-section {
  background-color: var(--primary-green);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

/* Decorative dot-grid background pattern */
.yt-video-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(197,168,128,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}
.yt-video-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,168,128,0.1) 0%, transparent 70%);
  z-index: 1;
}
.yt-video-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197,168,128,0.08) 0%, transparent 70%);
  z-index: 1;
}

/* Two-column layout */
.yt-video-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

/* Text side */
.yt-video-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0;
}

.yt-video-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.yt-video-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.yt-video-highlights li {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.yt-video-highlights li i {
  color: var(--gold);
  font-size: 1.1rem;
}

.yt-video-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 30px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(197,168,128,0.3);
}
.yt-video-cta:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197,168,128,0.4);
}

/* Video side */
.yt-video-frame-wrapper {
  position: relative;
}

/* Ambient glow behind the video */
.yt-video-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(197,168,128,0.2) 0%, transparent 70%);
  border-radius: 20px;
  z-index: 0;
  filter: blur(20px);
}

/* Responsive 16:9 iframe container */
.yt-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  border: 3px solid rgba(197,168,128,0.35);
  z-index: 2;
  background: #000;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.yt-video-frame:hover {
  box-shadow: 0 30px 70px rgba(0,0,0,0.65), 0 0 40px rgba(197,168,128,0.25);
  transform: translateY(-4px);
}
.yt-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* YouTube badge tag below the video */
.yt-video-badge {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}
.yt-video-badge i {
  color: #ff0000;
  font-size: 1.15rem;
}

/* Responsive */
@media (max-width: 991px) {
  .yt-video-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .yt-video-heading {
    font-size: 1.9rem;
  }
  .yt-video-section {
    padding: 70px 0;
  }
}
@media (max-width: 600px) {
  .yt-video-heading {
    font-size: 1.6rem;
  }
  .yt-video-section {
    padding: 50px 0;
  }
}

/* =========================================
   WhatsApp Room Availability Checker
   ========================================= */
.room-avail-section {
  background-color: var(--secondary-green);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.room-avail-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(197,168,128,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
  pointer-events: none;
}
.room-avail-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(197,168,128,0.08) 0%, transparent 65%);
  z-index: 1;
}

/* Header */
.room-avail-header {
  text-align: center;
  margin-bottom: 50px;
}
.room-avail-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.room-avail-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 620px;
  margin: 10px auto 0;
  line-height: 1.7;
}

/* Card wrapper */
.room-avail-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(197,168,128,0.25);
  border-radius: 20px;
  padding: 44px 48px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* 3-step process row */
.room-avail-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.avail-step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avail-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: var(--primary-green);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(197,168,128,0.35);
}
.avail-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.avail-step-text strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}
.avail-step-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}
.avail-step-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.6;
}

/* Form grid */
.room-avail-form {
  border-top: 1px solid rgba(197,168,128,0.2);
  padding-top: 36px;
}
.avail-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.avail-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.avail-field-full {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.avail-field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.avail-field label i {
  font-size: 0.9rem;
}
.avail-field input,
.avail-field select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(197,168,128,0.3);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}
.avail-field input::placeholder {
  color: rgba(255,255,255,0.35);
}
.avail-field input:focus,
.avail-field select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.avail-field select option {
  background: var(--secondary-green);
  color: var(--white);
}
/* date picker calendar icon color fix */
.avail-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

/* Submit button */
.avail-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 28px;
  padding: 17px 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.avail-submit-btn i {
  font-size: 1.4rem;
}
.avail-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37,211,102,0.5);
  background: linear-gradient(135deg, #2de071, #128c7e);
}
.avail-submit-btn:active {
  transform: translateY(0);
}

/* Privacy note */
.avail-note-text {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.avail-note-text i {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
  .avail-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-avail-card {
    padding: 36px 30px;
  }
  .room-avail-title {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .avail-form-grid {
    grid-template-columns: 1fr;
  }
  .room-avail-card {
    padding: 28px 20px;
  }
  .room-avail-title {
    font-size: 1.7rem;
  }
  .room-avail-section {
    padding: 55px 0;
  }
  .avail-step-arrow {
    transform: rotate(90deg);
  }
  .room-avail-steps {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   Floating Quick Room Booking Button & Panel
   ========================================= */
.room-float-wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Pill trigger button */
.room-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-green);
  border: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(197,168,128,0.45);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  animation: rfp-bounce-in 0.6s cubic-bezier(0.34,1.56,0.64,1) 1s both;
  position: relative;
  z-index: 2;
}
.room-float-btn i { font-size: 1.1rem; }
.room-float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(197,168,128,0.6);
}
.room-float-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  border: 2px solid rgba(197,168,128,0.5);
  animation: rfp-pulse 2.4s ease-out 1.5s infinite;
}
@keyframes rfp-pulse {
  0%   { transform: scale(1);    opacity: 1; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes rfp-bounce-in {
  0%   { transform: scale(0) translateY(30px); opacity: 0; }
  70%  { transform: scale(1.08) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Slide-up panel */
.room-float-panel {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 0;
  width: 350px;
  background: var(--primary-green);
  border: 1px solid rgba(197,168,128,0.35);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-sizing: border-box;
}
.room-float-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Panel header */
.room-float-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 14px 18px;
}
.room-float-panel-header > span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 8px;
}
.room-float-close {
  background: rgba(11,37,26,0.2);
  border: none;
  color: var(--primary-green);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.room-float-close:hover { background: rgba(11,37,26,0.4); }

/* Panel body */
.room-float-panel-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.room-float-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.room-float-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
}
.room-float-field input,
.room-float-field select {
  width: 100%;
  padding: 10px 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(197,168,128,0.28);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  box-sizing: border-box;
}
.room-float-field input:focus,
.room-float-field select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}
.room-float-field input::placeholder { color: rgba(255,255,255,0.3); }
.room-float-field select option { background: var(--primary-green); color: var(--white); }
.room-float-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.75) sepia(1) saturate(2);
  cursor: pointer;
}
.room-float-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Submit */
.room-float-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-float-submit i { font-size: 1.1rem; }
.room-float-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}

@media (max-width: 600px) {
  .room-float-wrapper { bottom: 20px; left: 14px; }
  .room-float-btn { padding: 12px 16px; font-size: 0.78rem; }
  .room-float-panel { width: 290px; }
  .room-float-row { grid-template-columns: 1fr; gap: 8px; }
}

/* Lightbox Navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,37,26,0.5);
  color: var(--gold-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--primary-green);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
