/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #9d834b;
  --primary-dark: #7a6839;
  --primary-light: #b59c6b;
  --secondary-color: #071428;
  --secondary-light: #0a1c3a;
  --accent-color: #2c5282;
  --text-light: #ffffff;
  --text-dark: #333333;
  --text-gray: #94a3b8;
  --bg-dark: #071428;
  --bg-light: #0a1c3a;
  --footer-bg: #050e1f;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Prevent horizontal overflow */
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-light);
  background-color: var(--bg-dark);
  line-height: 1.6;
  /* Ensure no overflow and proper width */
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-screen.loaded {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(157, 131, 75, 0.3);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 20, 40, 0);
  backdrop-filter: blur(0px);
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(7, 20, 40, 0.98);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  height: 80px;
  transition: var(--transition);
  max-width: 100%;
}

header.scrolled .logo {
  height: 60px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

nav a:not(.booking-btn) {
  color: var(--text-light);
}

header:not(.scrolled) nav a:not(.booking-btn) {
  color: var(--primary-color);
  font-weight: 600;
}

header:not(.scrolled) nav a:not(.booking-btn):hover {
  color: #ffffff;
}

header:not(.scrolled) nav a:not(.booking-btn)::after {
  background: var(--primary-color);
}

header:not(.scrolled) nav a:not(.booking-btn):hover::after {
  background: #ffffff;
}

header.scrolled nav a:not(.booking-btn):hover {
  color: var(--primary-color);
}

nav a:not(.booking-btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

nav a:not(.booking-btn):hover::after {
  width: 80%;
}

.booking-btn {
  background: transparent;
  color: var(--text-light) !important;
  border: 2px solid var(--text-light);
  padding: 8px 20px !important;
  border-radius: 25px;
  transition: var(--transition);
  font-size: 0.9rem;
}

header.scrolled .booking-btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white !important;
}

.booking-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(157, 131, 75, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  position: relative;
  z-index: 1001;
  padding: 5px;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  transition: var(--transition);
  display: block;
}

/* Golden hamburger when header is transparent */
header:not(.scrolled) .hamburger span {
  background: var(--primary-color);
}

/* White hamburger when header is scrolled */
header.scrolled .hamburger span {
  background: var(--text-light);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: url("./assets/28.jpeg") center/cover no-repeat;
  position: relative;
}

.hero-placeholder::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 1000 1000"><polygon fill="%239D834B" points="0,1000 1000,0 1000,1000"/></svg>')
    no-repeat;
  background-size: cover;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(7, 20, 40, 0.7) 0%,
    rgba(7, 20, 40, 0.5) 50%,
    rgba(7, 20, 40, 0.7) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
  width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  padding: 0 10px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 40px;
  color: var(--text-white);
  font-weight: 300;
  padding: 0 15px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding: 0 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  min-width: 160px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 5px 20px rgba(157, 131, 75, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(157, 131, 75, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 15px;
  max-width: 900px;
  margin: 0 auto;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  min-width: auto;
  flex: 1;
  max-width: 180px;
  justify-content: center;
  text-align: center;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature i {
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature span {
  font-size: 0.85rem;
  white-space: nowrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  position: relative;
}

.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 12px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
  width: 100%;
  /* Prevent overflow in sections */
  overflow: hidden;
}

.light-bg {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 20px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.section-divider::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(157, 131, 75, 0.5);
}

/* About Section */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 25px;
  color: var(--primary-color);
  text-align: center;
}

.about-intro {
  margin-bottom: 35px;
}

.about-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 35px 0;
}

.detail-column h4 {
  color: var(--primary-color);
  margin-bottom: 18px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.detail-column ul {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.detail-column li {
  padding: 8px 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}

.detail-column li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.about-partnership {
  background: rgba(157, 131, 75, 0.1);
  padding: 25px;
  border-radius: var(--border-radius);
  margin: 35px 0;
  border-left: 4px solid var(--primary-color);
}

.about-partnership h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.about-partnership p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 35px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.highlight i {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-title {
  display: block;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 1rem;
}

.highlight-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Facilities Section */
.facilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  padding: 0 15px;
}

.facility-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.facility-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.facility-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.facility-card:hover .facility-icon {
  transform: scale(1.1) rotate(5deg);
}

.facility-icon i {
  font-size: 1.7rem;
  color: white;
}

.facility-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.facility-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-container {
  position: relative;
  margin: 35px 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  padding: 0 15px;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 12px;
  padding: 8px 0;
}

.gallery-item {
  flex: 0 0 100%;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  min-height: 250px;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(157, 131, 75, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 1.8rem;
  color: white;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 10;
}

.gallery-nav {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.gallery-nav:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  padding: 0 15px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Contact Section - FIXED FOR MOBILE */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
  padding: 0 15px;
  /* Ensure proper centering and no overflow */
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact-details {
  margin-top: 0;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.1rem;
}

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-item p {
  color: var(--text-gray);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Forms */
.contact-form,
.booking-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

.form-group {
  position: relative;
  margin-bottom: 18px;
  width: 100%;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(157, 131, 75, 0.1);
}

.form-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  transition: var(--transition);
  pointer-events: none;
  font-size: 0.95rem;
}

.form-group:focus-within i {
  color: var(--primary-color);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
  max-width: 100%;
}

/* Enhanced Select and Date Input Styles */
.select-group {
  position: relative;
  width: 100%;
}

.select-group select {
  appearance: none;
  cursor: pointer;
  width: 100%;
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: var(--transition);
}

.select-group:focus-within .select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: var(--primary-color);
}

.date-group input[type="date"] {
  position: relative;
  width: 100%;
}

.date-group input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn.loading .btn-text {
  opacity: 0;
}

.btn.loading .btn-loader {
  display: block;
}

/* Map */
.map-container {
  margin-top: 50px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  padding: 0 15px;
  width: 100%;
  max-width: 100%;
}

.map {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* Booking Section */
.booking-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  padding: 0 15px;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.booking-info {
  margin-top: 0;
  width: 100%;
}

.booking-features {
  list-style: none;
  margin: 25px 0;
  width: 100%;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.booking-features i {
  color: var(--primary-color);
  font-size: 1rem;
}

.booking-cta {
  background: rgba(157, 131, 75, 0.1);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(157, 131, 75, 0.2);
  width: 100%;
  max-width: 100%;
}

.booking-cta h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.booking-cta p {
  color: var(--text-gray);
  margin-bottom: 18px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: var(--footer-bg);
  padding: 50px 0 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  margin-bottom: 35px;
  padding: 0 15px;
  width: 100%;
  max-width: 100%;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 18px;
  font-size: 1.1rem;
  text-align: center;
}

.logo-section {
  text-align: center;
  width: 100%;
}

.footer-logo {
  height: 80px;
  margin-bottom: 18px;
  max-width: 100%;
}

.footer-section p {
  color: var(--text-gray);
  margin-bottom: 18px;
  line-height: 1.6;
  text-align: center;
  font-size: 0.9rem;
  max-width: 100%;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.links-section ul {
  list-style: none;
  text-align: center;
  width: 100%;
}

.links-section ul li {
  margin-bottom: 10px;
}

.links-section ul li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-size: 0.9rem;
}

.links-section ul li a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.contact-section {
  text-align: center;
  width: 100%;
}

.footer-contact p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-contact i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.85rem;
  width: 100%;
  max-width: 100%;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.modal.show {
  opacity: 1;
  display: block;
}

.modal-content {
  position: relative;
  width: 95%;
  max-width: 1200px;
  height: 95vh;
  margin: 2.5vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.modal.show .modal-image {
  transform: scale(1);
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.close:hover {
  color: var(--primary-color);
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}

.modal-counter {
  position: absolute;
  top: 25px;
  left: 25px;
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 12px;
  border-radius: 15px;
  z-index: 10;
}

.modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.modal-prev,
.modal-next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.modal-prev:hover,
.modal-next:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 5px 15px rgba(157, 131, 75, 0.4);
  font-size: 0.9rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* Booking Form Dropdown - Themed Consistently */
#booking-form select {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Focus state (matches your inputs focus glow) */
#booking-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(157, 131, 75, 0.1);
}

/* Dropdown arrow (styled like rest of form icons) */
#booking-form .select-group {
  position: relative;
}

#booking-form .select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray);
  pointer-events: none;
  transition: var(--transition);
}

#booking-form .select-group:focus-within .select-arrow {
  color: var(--primary-color);
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown options styling */
#booking-form select option {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* ===== Overlay Background ===== */
.form-overlay-message {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 40, 0.88); /* Deep navy with transparency */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(6px);
}

.form-overlay-message.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

/* ===== Overlay Content Box ===== */
.overlay-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 45px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  animation: popIn 0.3s ease;
  border-top: 5px solid #9d834b; /* gold accent */
  color: #071428;
}

.overlay-content.success h3 {
  color: #4caf50;
}

.overlay-content.error h3 {
  color: #ff4d4f;
}

/* ===== Headings and Text ===== */
.overlay-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #071428;
}

.overlay-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* ===== OK Button ===== */
.overlay-content button {
  margin-top: 10px;
  padding: 10px 28px;
  background: #071428;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.overlay-content button:hover {
  background: #9d834b;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
  .overlay-content {
    max-width: 90%;
    padding: 25px 20px;
  }

  .overlay-content h3 {
    font-size: 1.3rem;
  }

  .overlay-content p {
    font-size: 0.95rem;
  }

  .overlay-content button {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px;
  }
}

/* ===== Small Mobile Screens (below 480px) ===== */
@media (max-width: 480px) {
  .overlay-content {
    border-radius: 10px;
    padding: 22px 16px;
  }

  .overlay-content h3 {
    font-size: 1.2rem;
  }

  .overlay-content p {
    font-size: 0.9rem;
  }

  .overlay-content button {
    font-size: 0.9rem;
    padding: 10px;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    width: 90%;
    padding: 0 25px;
  }

  .section {
    padding: 90px 0;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn {
    padding: 15px 35px;
    min-width: 180px;
  }

  .feature {
    min-width: 180px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .about-details {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .about-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .facility-card {
    padding: 35px 25px;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 8px);
    min-height: 280px;
  }

  .gallery-img {
    height: 280px;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .booking-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  .modal-content {
    width: 90%;
    height: 90vh;
    margin: 5vh auto;
  }

  .modal-prev,
  .modal-next {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  nav ul {
    display: flex;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item {
    flex: 0 0 calc(33.333% - 10px);
    min-height: 300px;
  }

  .gallery-img {
    height: 300px;
  }

  .map {
    height: 400px;
  }

  .modal-content {
    width: 90%;
    max-width: 1200px;
  }

  .hero-features {
    max-width: 800px;
    gap: 12px;
  }

  .feature {
    padding: 8px 12px;
    max-width: 160px;
  }

  .feature span {
    font-size: 0.8rem;
  }
}

@media (max-width: 767px) {
  nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    transition: var(--transition);
    gap: 25px;
    z-index: 1000;
  }

  nav ul.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  nav a {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .booking-btn {
    margin-top: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 500px;
  }

  .feature {
    max-width: 100%;
    min-width: auto;
    padding: 10px 15px;
    justify-content: flex-start;
  }
  .feature span {
    font-size: 0.8rem;
  }

  .gallery-controls {
    display: none;
  }

  .modal-nav {
    padding: 0 5px;
  }

  .modal-prev,
  .modal-next {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .modal-counter {
    top: 20px;
    left: 20px;
    font-size: 0.9rem;
    padding: 5px 10px;
  }

  /* Mobile-specific fixes for contact section */
  .contact-content,
  .booking-content {
    padding: 0 10px;
    gap: 30px;
  }

  .contact-form,
  .booking-form {
    padding: 25px 15px;
    margin: 0 auto;
  }

  .contact-item {
    padding: 15px;
    margin-bottom: 20px;
  }

   .hero {
    min-height: 800px; /* More space for mobile layout */
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }

  .hero {
    min-height: 800px; /* More space for mobile layout */
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    margin-bottom: 40px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 280px;
  }
  
  .feature {
    padding: 8px 20px;
    justify-content: center;
  }
  
  .feature span {
    font-size: 0.8rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .contact-form,
  .booking-form {
    padding: 25px 15px;
  }

  .footer-logo {
    height: 70px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  /* Extra small screen fixes */
  .contact-content,
  .booking-content {
    padding: 0 5px;
  }

  .contact-form,
  .booking-form {
    padding: 20px 12px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 12px 12px 40px;
  }
}

/* About section alignment fixes */
.about-text,
.about-text h3,
.about-intro p,
.about-partnership,
.about-partnership p,
.about-highlights,
.about-details {
  text-align: center;
}

.detail-column {
  text-align: center;
}

.detail-column ul {
  display: inline-block;
  text-align: left;
  padding: 0;
  margin: 0;
}

.detail-column h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Ensure no horizontal overflow - CRITICAL FIX */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Additional overflow prevention */
section,
div,
header,
footer,
nav {
  max-width: 100%;
}
