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

/* =========================================================
   GLOBAL HEADING FONT
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
}

:root {
  --primary-color: #c9a961;
  --secondary-color: #1a1a1a;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f9f9f9;
  --bg-dark: #2b2b2b;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

#home,
#about,
#venues,
#why-choose,
#gallery,
#faq,
#enquire {
  scroll-margin-top: 90px;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 9999;

  background: #1e4847;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    height 0.3s ease;
}

.navbar.scrolled {
  height: 72px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;

  padding: 0 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

/* =========================================================
   LOGO
========================================================= */

.logo {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  text-decoration: none;
}

.logo img {
  display: block;

  width: auto;
  max-width: 180px;
  height: 52px;

  object-fit: contain;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links {
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 28px;

  margin: 0;
  padding: 0;

  flex: 1;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 8px 0;

  color: #fff;
  text-decoration: none;

  font-size: 18px;
  font-weight: 500;
  line-height: 1;

  white-space: nowrap;

  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: #b08d57;

  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #b08d57;
}

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

/* =========================================================
   RIGHT SIDE
========================================================= */

.nav-right {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  gap: 18px;
}

/* Phone */

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  white-space: nowrap;

  transition: color 0.3s ease;
}

.nav-call i {
  font-size: 14px;
}

.nav-call:hover {
  color: #b08d57;
}

/* Enquire Button */

.nav-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 0 22px;

  background: #b08d57;
  color: #ffffff;

  border: 1px solid #b08d57;

  border-radius: 4px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.nav-enquire:hover {
  background: #222222;
  border-color: #222222;
  color: #ffffff;

  transform: translateY(-1px);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;
  background: transparent;

  color: #ffffff;

  cursor: pointer;

  align-items: center;
  justify-content: center;

  font-size: 22px;
}

/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */

.menu-overlay {
  position: fixed;
  inset: 0;

  z-index: 10000;

  background: rgba(0, 0, 0, 0.55);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   MOBILE SIDEBAR
========================================================= */

.mobile-menu {
  position: fixed;

  top: 0;
  right: 0;

  width: min(360px, 88%);
  height: 100vh;

  z-index: 10001;

  background: #ffffff;

  padding: 30px;

  overflow-y: auto;

  transform: translateX(100%);

  transition: transform 0.35s ease;

  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
}

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

/* =========================================================
   MOBILE CLOSE BUTTON
========================================================= */

.mobile-menu-close {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 50%;

  background: #f5f5f5;

  color: #222222;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.mobile-menu-close:hover {
  background: #b08d57;
  color: #ffffff;
}

/* =========================================================
   MOBILE LOGO
========================================================= */

.mobile-logo {
  display: inline-flex;
  align-items: center;

  margin: 5px 0 45px;

  text-decoration: none;
}

.mobile-logo img {
  width: auto;
  max-width: 170px;
  height: 48px;

  object-fit: contain;
}

/* =========================================================
   MOBILE LINKS
========================================================= */

.mobile-menu ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.mobile-menu ul li {
  margin: 0;

  border-bottom: 1px solid #eeeeee;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;

  min-height: 55px;

  color: #222222;

  text-decoration: none;

  font-size: 16px;
  font-weight: 500;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #b08d57;
  padding-left: 8px;
}

/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-menu .mobile-book-item {
  border: 0;
  margin-top: 25px;
}

.mobile-menu .nav-cta {
  justify-content: center;

  min-height: 50px;

  padding: 0 20px;

  background: #b08d57;
  color: #ffffff;

  border-radius: 4px;

  font-weight: 600;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu .nav-cta:hover {
  padding-left: 20px;

  background: #222222;
  color: #ffffff;

  transform: translateY(-1px);
}

/* =========================================================
   MOBILE CONTACT
========================================================= */

.mobile-contact {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid #eeeeee;
}

.mobile-contact span {
  color: #777777;

  font-size: 13px;
}

.mobile-contact a {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #222222;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
}

.mobile-contact a:hover {
  color: #b08d57;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {
  .nav-container {
    padding: 0 25px;
    gap: 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-call span {
    display: none;
  }

  .nav-right {
    gap: 12px;
  }

  .nav-enquire {
    padding: 0 18px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {
  .navbar {
    height: 72px;
  }

  .navbar.scrolled {
    height: 68px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .logo img {
    max-width: 160px;
    height: 48px;
  }

  /* Hide desktop menu */
  .nav-links,
  .nav-right {
    display: none;
  }

  /* Show mobile button */
  .mobile-menu-btn {
    display: flex;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {
  .navbar {
    height: 68px;
  }

  .navbar.scrolled {
    height: 64px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo img {
    max-width: 145px;
    height: 44px;
  }

  .mobile-menu {
    padding: 25px 20px;
  }

  .mobile-menu-close {
    top: 15px;
    right: 15px;
  }

  .mobile-logo {
    margin-bottom: 35px;
  }
}

/* Hero Section with Form */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 50px 80px;
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--primary-color);
  animation: fadeInLeft 1s ease;
}

.hero-title {
  font-size: 58px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 25px;
  animation: fadeInLeft 1s ease 0.2s both;
}

.hero-title span {
  display: block;
  font-weight: bold;
  font-style: italic;
  color: var(--primary-color);
}

.hero-description {
  font-size: 17px;
  margin-bottom: 35px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInLeft 1s ease 0.4s both;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
  animation: fadeInLeft 1s ease 0.6s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(201, 169, 97, 0.2);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-feature-text h4 {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 2px;
}

.hero-feature-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInLeft 1s ease 0.8s both;
}

.btn-primary,
.btn-secondary {
  padding: 16px 38px;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
}

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

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--secondary-color);
}

/* Section CTA */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.section-cta .btn-primary {
  background: #1e4847;
  border-color: #1e4847;
  color: #fff;
}

.section-cta .btn-primary:hover {
  background: #163837;
  border-color: #163837;
  color: #fff;
}

.hero-form-container {
  scroll-margin-top: 100px;
}

/* Hero Form */
.hero-form-container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  animation: fadeInRight 1s ease 0.4s both;
  backdrop-filter: blur(10px);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #eee;
}

.form-header h3 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-header p {
  color: #777;
  font-size: 14px;
}

.hero-form .form-group {
  margin-bottom: 20px;
}

.hero-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
}

.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fafafa;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.hero-form .field-error,
.hero-form .form-success-msg.is-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #dc2626 !important;
}

.hero-form .form-group.has-error input {
  border-color: #dc2626 !important;
}

.hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hero-form .form-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-form .form-alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
}

.hero-form .form-alert-success {
  background: #e8f4f2;
  color: #1e4847;
  border: 1px solid #8fb8b3;
}

.hero-form .form-alert-success .form-alert-icon {
  background: #1e4847;
}

.hero-form .form-alert-error {
  background: #fdecec;
  color: #dc2626;
  border: 1px solid #f5c2c2;
}

.hero-form .form-alert-error .form-alert-icon {
  background: #dc2626;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-color), #d4af70);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #999;
}

.form-note i {
  color: var(--primary-color);
  margin-right: 5px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* About Section */
.about {
  padding: 60px 50px;
  background: var(--bg-light);
}

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

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

.section-subtitle {
  color: var(--primary-color);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  line-height: 50px;
  color: var(--secondary-color);
  font-weight: 300;
  margin-bottom: 20px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto;
}

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

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary-color);
  z-index: -1;
}

.about-content h2 {
  font-size: 36px;
  line-height: 42px;
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-weight: 400;
}

.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* Why Choose Us Section - NEW */
.why-choose-us {
  padding: 60px 50px;
  background: #1e4847;
  position: relative;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-content {
  color: white;
}

.why-choose-label {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.why-choose-content h2 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 30px;
  color: white;
  font-weight: 400;
}

.why-choose-subtitle {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.why-choose-list {
  list-style: none;
  counter-reset: choose-counter;
}

.why-choose-list li {
  counter-increment: choose-counter;
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
  line-height: 1.7;
}
.why-choose-list ol li {
  list-style: none;
}
.why-choose-list li::before {
  content: counter(choose-counter) ". ";
  color: white;
  font-weight: 600;
  margin-right: 8px;
}

.why-choose-list strong {
  color: white;
  font-weight: 600;
}

.why-choose-list li strong::after {
  content: " â€” ";
  color: rgba(255, 255, 255, 0.9);
}

.why-choose-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(201, 169, 97, 0.2);
}

.why-choose-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* FAQ Section - NEW */
.faq-section {
  padding: 60px 50px;
  background: var(--bg-light);
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.faq-question h4 {
  margin: 0;
  flex: 1;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question i {
  font-size: 20px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

.faq-answer ul {
  margin-top: 15px;
  padding-left: 20px;
}

.faq-answer ul li {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Venues Section */
.venues {
  padding: 60px 50px;
  background: white;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.venue-card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.venue-card:hover {
  transform: translateY(-10px);
}

.venue-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.venue-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.venue-info {
  padding: 15px;
  background: white;
}

.venue-info h3 {
  font-size: 26px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.venue-info p {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.venue-capacity {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.capacity-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.capacity-icon {
  color: var(--primary-color);
  font-size: 20px;
}

.capacity-text {
  font-size: 14px;
  color: #555;
}

.capacity-text strong {
  display: block;
  color: var(--secondary-color);
  font-size: 18px;
}

/* Stats Section */
.stats {
  padding: 100px 50px;
  background: linear-gradient(135deg, var(--secondary-color), #3a3a3a);
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c9a961" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 56px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* Gallery Section */
.gallery {
  padding: 60px 50px;
  background: var(--bg-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  color: #555;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  height: 300px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(201, 169, 97, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

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

.gallery-caption {
  color: white;
  font-size: 18px;
  font-weight: bold;
}

/* Amenities Section */
.amenities {
  padding: 120px 50px;
  background: white;
}

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

.amenity-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: 10px;
  background: var(--bg-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.amenity-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), #d4af70);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: white;
}

.amenity-card h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.amenity-card p {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 50px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920")
      center/cover fixed;
  color: white;
}

.testimonials .section-subtitle,
.testimonials .section-title,
.testimonials .section-divider {
  color: white;
}

.testimonials .section-divider {
  background: var(--primary-color);
}

.testimonial-slider {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--primary-color);
  font-size: 14px;
}

.testimonial-stars {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 15px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonial-nav button {
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: var(--primary-color);
  color: white;
}

/* Contact Section */
.contact {
  padding: 120px 50px;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  padding-right: 40px;
}

.contact-info h3 {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.contact-info > p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.contact-text p {
  color: #777;
  font-size: 15px;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 15px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Map Section */
.map-section {
  height: 450px;
  background: #ddd;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 80px 50px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about .logo-text {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--primary-color);
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 120px 30px 80px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-form-container {
    max-width: 550px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-title {
    font-size: 36px;
  }

  .why-choose-content h2 {
    font-size: 32px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .nav-container {
    padding: 0 20px;
  }

  .about,
  .venues,
  .gallery,
  .amenities,
  .testimonials,
  .contact,
  .why-choose-us,
  .faq-section {
    padding: 80px 20px;
  }

  .gallery {
    padding: 36px 16px 40px;
  }

  .hero-form-container {
    padding: 30px 25px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .section-title,
  .why-choose-content h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-container {
    padding: 100px 16px 56px;
  }

  .about,
  .venues,
  .gallery,
  .amenities,
  .testimonials,
  .contact,
  .why-choose-us,
  .faq-section {
    padding: 56px 16px;
  }

  .gallery {
    padding: 28px 16px 32px;
  }

  .hero-form-container {
    padding: 22px 16px;
  }

  .nav-container {
    padding: 0 14px;
  }

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--secondary-color);
  z-index: 2000;
  padding: 80px 30px;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: var(--primary-color);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.hero-form-container {
  width: 100%;
}

.hero-form .form-group {
  margin-bottom: 26px;
}

.hero-form label {
  display: block;
  font-size: 15px;
  color: #222;
  margin-bottom: 9px;
}

.hero-form label > span {
  color: #111;
}

.hero-form .form-row {
  display: flex;
  gap: 23px;
}

.hero-form .form-row > .form-group {
  flex: 1;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"],
.hero-form textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 14px;
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  height: 47px;
}

.hero-form textarea {
  height: 91px;
  resize: vertical;
}

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

/* Radio buttons */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 6px;
}

.radio-option {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 11px 14px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 500;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  flex: 1 1 auto;
  min-width: 0;
}

.radio-option:hover {
  border-color: #1e4847;
  background: rgba(30, 72, 71, 0.04);
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.radio-option__mark {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid #b0b0b0;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.radio-option__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e4847;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.radio-option__text {
  line-height: 1.2;
  white-space: nowrap;
}

.radio-option:has(input:checked),
.radio-option.is-selected {
  border-color: #1e4847;
  background: rgba(30, 72, 71, 0.06);
  color: #1e4847 !important;
  box-shadow: inset 0 0 0 1px #1e4847;
}

.radio-option:has(input:checked) .radio-option__mark,
.radio-option.is-selected .radio-option__mark {
  border-color: #1e4847;
}

.radio-option:has(input:checked) .radio-option__mark::after,
.radio-option.is-selected .radio-option__mark::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-option:has(input:focus-visible) {
  outline: 2px solid rgba(30, 72, 71, 0.35);
  outline-offset: 2px;
}

/* Mobile */
@media (max-width: 767px) {
  .hero-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .radio-option {
    width: 100%;
  }
}
.about-content ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.about-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.about-content ul li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  font-weight: 600;
  color: #d3af00;
}
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 125px;
  height: 125px;
  background: #d3af00;
  color: #fff;
  border-radius: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.experience-badge strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  display: block;
}

.experience-badge span {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 7px;
}

/* Mobile enquiry form popup */
.lp-form-backdrop,
.lp-form-close,
.lp-form-heading {
  display: none;
}

@media (max-width: 1024px) {
  .lp-form-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(17, 24, 20, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .lp-form-backdrop.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-form-container {
    display: none;
    position: fixed;
    z-index: 10050;
    left: 50%;
    top: 50%;
    width: calc(100% - 28px);
    max-width: 480px;
    max-height: min(88vh, 760px);
    overflow-y: auto;
    margin: 0;
    padding: 28px 20px 20px;
    transform: translate(-50%, -50%);
    animation: none;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .hero-form-container.is-open {
    display: block;
  }

  .lp-form-heading {
    display: block;
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
  }

  .lp-form-heading h3 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #1e4847;
    font-weight: 700;
  }

  .lp-form-heading p {
    margin: 0;
    font-size: 13px;
    color: #666;
  }

  .lp-form-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #1e4847;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
  }

  body.lp-form-open {
    overflow: hidden;
  }
}

p:not(.hero-title):not(.hero-subtitle):not(.section-title):not(
    .section-subtitle
  ):not(.why-choose-label) {
  font-size: 15px !important;
}

.call--float {
  left: 12px;
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 99990;
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}
.call-float-icon {
  width: 54px;
  height: 54px;
  font-size: 23px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e4847;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: background 0.2s ease;
}
.text-white {
  color: #ffffff;
}
@media (max-width: 767px) {
  .call--float {
    display: inline-flex;
    width: 64px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
  }
  .footer {
    color: white;
    padding: 40px 20px 10px;
  }
  .footer-grid {
    gap: 20px;
    margin-bottom: 0px;
  }
}
