/* Base Styles */
:root {
  --primary-color: #b8860b;
  --primary-light: #d6ad3c;
  --primary-dark: #8b6508;
  --secondary-color: #0f1e28;
  --secondary-light: #1a2c3a;
  --secondary-dark: #071118;
  --accent-color: #ae0000;
  --text-light: #ffffff;
  --text-dark: #0c0c0c;
  --text-gray: #7a7a7a;
  --bg-light: #f8f8f8;
  --bg-dark: #111111;
  --bg-darker: #080808;
  --border-color: rgba(255, 255, 255, 0.1);
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: var(--secondary-color);
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
}

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

.btn-tertiary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(15, 30, 40, 0.95);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.logo-container {
  text-align: center;
  margin-bottom: 0.5rem;
}

.logo-container h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  margin: 0;
}

.logo-container h2 {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: 4px;
  margin-top: 0.2rem;
}

.separator {
  margin: 0.3rem 0;
  font-size: 0.8rem;
  color: var(--primary-color);
  letter-spacing: 5px;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 0.5rem;
  letter-spacing: 1px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 80%;
}

.menu-toggle {
  display: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://media.istockphoto.com/id/154904385/photo/casino-entrance-colorfully-lit.jpg?s=612x612&w=0&k=20&c=Tk8PZUcq4sIUZEfD9ZaEbjgXM9C58Zre949sMmOuBCY=');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 20px;
  margin-top: 100px;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

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

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* About Preview Section */
.about-preview {
  padding: 5rem 0;
  background-color: #f2f2f2;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text h2:after {
  margin-left: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 400px;
  object-fit: cover;
}

/* Packages Preview */
.packages-preview {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.packages-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.packages-slider::-webkit-scrollbar {
  display: none;
}

.package-card {
  min-width: 300px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  flex: 0 0 auto;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-image {
  height: 200px;
  overflow: hidden;
}

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

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

.package-details {
  padding: 1.5rem;
  text-align: center;
}

.package-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.package-details p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.testimonials .section-title {
  color: var(--text-light);
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial:before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  color: rgba(184, 134, 11, 0.2);
  font-family: Georgia, serif;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
  background-color: var(--primary-light);
}

.newsletter-content {
  text-align: center;
  color: var(--text-light);
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.form-group input {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.form-group button {
  border-radius: 0 4px 4px 0;
}

/* Footer */
footer {
  background-color: var(--bg-darker);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  color: var(--primary-color);
}

.footer-logo p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links-column {
  flex: 1;
  min-width: 150px;
}

.footer-links-column h4 {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  position: relative;
}

.footer-links-column h4:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 0.5rem;
}

.footer-links-column ul li {
  margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
  color: var(--text-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Page Banner */
.page-banner {
  position: relative;
  height: 50vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 20px;
  margin-top: 100px;
}

.page-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.2rem;
}

.about-banner {
  background-image: url('https://images.pexels.com/photos/1579739/pexels-photo-1579739.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.amenities-banner {
  background-image: url('https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.packages-banner {
  background-image: url('https://images.pexels.com/photos/338504/pexels-photo-338504.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.contact-banner {
  background-image: url('https://images.pexels.com/photos/1267360/pexels-photo-1267360.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
}

.policy-banner {
  background-image: url('https://images.pexels.com/photos/6508942/pexels-photo-6508942.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  height: 30vh;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-info h2:after {
  margin-left: 0;
}

.contact-info p {
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.info-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.social-connect h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-form-container h2:after {
  margin-left: 0;
}

.contact-form .form-group {
  display: block;
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto !important;
  margin-top: 5px;
}

.checkbox-group label {
  font-weight: 400 !important;
  font-size: 0.9rem;
  color: var(--text-gray) !important;
}

.checkbox-group a {
  color: var(--primary-color);
}

.form-success {
  display: none;
  background-color: #f0f8f0;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.success-content i {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

.success-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

.faq-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background-color: white;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
}

.faq-answer a {
  color: var(--primary-color);
}

.faq-item.active .faq-question {
  background-color: rgba(184, 134, 11, 0.05);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/1267360/pexels-photo-1267360.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-content {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Vision & Mission Section */
.vision-mission {
  padding: 5rem 0;
  background-color: var(--secondary-color);
}

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

.vm-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  color: var(--text-light);
}

.vm-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Core Values */
.core-values {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  margin: 0 auto 1.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Team Section */
.our-team {
  padding: 5rem 0;
  background-color: #f5f5f5;
}

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

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

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

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

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--secondary-color);
}

.member-title {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.member-info p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Timeline */
.achievements {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.timeline {
  max-width: 800px;
  margin: 2rem auto 0;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(120px + 1rem);
  width: 2px;
  height: 100%;
  background-color: rgba(184, 134, 11, 0.3);
}

.timeline-item {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.year {
  width: 120px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
  padding-top: 0.5rem;
  text-align: right;
  padding-right: 1rem;
}

.event {
  padding-left: 2rem;
  position: relative;
}

.event:before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: -0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.event h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.event p {
  color: var(--text-gray);
}

/* Amenity Section */
.intro-section {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

.amenity-section {
  padding: 5rem 0;
}

.bg-alt {
  background-color: #f5f5f5;
}

.amenity-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.amenity-content.reverse {
  flex-direction: row-reverse;
}

.amenity-text {
  flex: 1;
}

.amenity-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.amenity-text h2:after {
  margin-left: 0;
}

.amenity-text p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.amenity-features {
  margin-bottom: 1.5rem;
}

.amenity-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.amenity-features li i {
  color: var(--primary-color);
  margin-top: 5px;
}

.amenity-image {
  flex: 1;
}

.amenity-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Additional Services */
.additional-services {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  margin: 0 auto 1.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Featured Packages */
.featured-packages, .specialized-packages, .seasonal-packages {
  padding: 5rem 0;
}

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

.package-card {
  position: relative;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
}

.package-card.featured {
  border: 2px solid var(--primary-color);
}

.package-content {
  padding: 1.5rem;
}

.package-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.package-duration i {
  color: var(--primary-color);
}

.package-features {
  margin: 1.5rem 0;
}

.package-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
}

.package-features li i {
  color: var(--primary-color);
  margin-top: 5px;
}

.package-footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Custom Packages */
.custom-packages {
  padding: 5rem 0;
}

.custom-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.custom-text {
  flex: 1;
}

.custom-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.custom-text h2:after {
  margin-left: 0;
}

.custom-text p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.custom-features {
  margin: 2rem 0;
}

.custom-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--secondary-color);
}

.feature-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.custom-image {
  flex: 1;
}

.custom-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow: auto;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--accent-color);
}

/* Policy Pages */
.policy-content {
  padding: 2rem 0;
  background-color: var(--bg-light);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.last-updated {
  text-align: right;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.policy-section h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
}

.policy-section p {
  margin-bottom: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.policy-section ul, .policy-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-gray);
}

.policy-section ul li, .policy-section ol li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.policy-section ol li {
  list-style-type: decimal;
}

.policy-section a {
  color: var(--primary-color);
}

.policy-table {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.table-row {
  display: flex;
  border-bottom: 1px solid #eee;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row.header {
  background-color: var(--secondary-light);
  color: white;
  font-weight: 600;
}

.cell {
  padding: 1rem;
  flex: 1;
}

.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.resource-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.resource-item h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* Media Queries */
@media (max-width: 1200px) {
  .amenity-content {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-content, .amenity-content, .custom-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .amenity-content.reverse {
    flex-direction: column;
  }
  
  .testimonials-slider {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 1rem 2rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-container {
    margin-bottom: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--secondary-dark);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .timeline:before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .year {
    width: auto;
    text-align: left;
    padding-left: 2.5rem;
    position: relative;
  }
  
  .year:before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
  }
  
  .event {
    padding-left: 2.5rem;
  }
  
  .event:before {
    display: none;
  }
  
  .policy-container {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .form-group input, .form-group button {
    width: 100%;
    border-radius: 4px;
  }
  
  .form-group button {
    margin-top: 1rem;
  }
  
  .package-footer {
    flex-direction: column;
  }
  
  .package-footer a {
    width: 100%;
    text-align: center;
  }
}