:root {
  --primary-color: #511f06;
  --secondary-color: #300404;
  --accent-color: #ac8c7c;
  --light-color: #d8cfc9;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f8f9fa;
  --gray-dark: #6c757d;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-overlay: linear-gradient(rgba(48, 4, 4, 0.8), rgba(81, 31, 6, 0.6));
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 0;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  overflow-x: hidden;
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader-content {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coastal-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, transparent, rgba(216, 207, 201, 0.3), transparent);
  animation: wave-animation 3s ease-in-out infinite;
}

.wave1 {
  animation-delay: 0s;
  opacity: 0.7;
}

.wave2 {
  animation-delay: 1s;
  opacity: 0.5;
  height: 80px;
}

.wave3 {
  animation-delay: 2s;
  opacity: 0.3;
  height: 60px;
}

@keyframes wave-animation {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

.preloader-logo {
  position: relative;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.preloader-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.loading-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.loading-text span {
  display: inline-block;
  animation: letter-bounce 1.5s ease-in-out infinite;
  margin: 0 2px;
}

.loading-text .to {
  font-size: 1.2rem;
  margin: 0 1rem;
  opacity: 0.7;
}

@keyframes letter-bounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.loading-text span:nth-child(1) {
  animation-delay: 0.1s;
}
.loading-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-text span:nth-child(3) {
  animation-delay: 0.3s;
}
.loading-text span:nth-child(4) {
  animation-delay: 0.4s;
}
.loading-text span:nth-child(5) {
  animation-delay: 0.5s;
}
.loading-text span:nth-child(6) {
  animation-delay: 0.6s;
}
.loading-text span:nth-child(7) {
  animation-delay: 0.7s;
}
.loading-text span:nth-child(9) {
  animation-delay: 0.9s;
}
.loading-text span:nth-child(10) {
  animation-delay: 1.0s;
}
.loading-text span:nth-child(11) {
  animation-delay: 1.1s;
}
.loading-text span:nth-child(12) {
  animation-delay: 1.2s;
}
.loading-text span:nth-child(13) {
  animation-delay: 1.3s;
}
.loading-text span:nth-child(14) {
  animation-delay: 1.4s;
}

.palm-trees {
  position: absolute;
  bottom: 150px;
  width: 100%;
  height: 100px;
}

.palm {
  position: absolute;
  width: 60px;
  height: 100px;
  background: linear-gradient(to top, var(--accent-color), var(--light-color));
  clip-path: polygon(45% 0%, 55% 0%, 60% 70%, 70% 100%, 30% 100%, 40% 70%);
  animation: palm-sway 4s ease-in-out infinite;
}

.palm1 {
  left: 20%;
  animation-delay: 0s;
}

.palm2 {
  right: 20%;
  animation-delay: 2s;
}

@keyframes palm-sway {
  0%,
  100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

.loading-bar {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--light-color), var(--accent-color));
  width: 0%;
  animation: loading-progress 3s ease-out infinite;
}

@keyframes loading-progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Navigation Styles */
.navbar {
  background: rgba(48, 4, 4, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(216, 207, 201, 0.1);
}

.navbar.scrolled {
  background: var(--secondary-color);
  box-shadow: var(--shadow-medium);
}

.navbar-brand .logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.contact-info {
  color: var(--light-color);
  font-size: 0.85rem;
  gap: 2rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--accent-color);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 0.5rem 1.5rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.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);
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 9998;
  transition: var(--transition);
}

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

.side-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 4, 4, 0.8);
  backdrop-filter: blur(5px);
}

.side-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(216, 207, 201, 0.2);
}

.side-menu-header img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.close-menu {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

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

.side-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.side-menu-nav li {
  margin-bottom: 1rem;
}

.side-menu-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 1rem 0;
  display: block;
  position: relative;
  transition: var(--transition);
  border-bottom: 1px solid rgba(216, 207, 201, 0.1);
}

.side-menu-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateY(-50%);
}

.side-menu-nav a:hover::before {
  width: 30px;
}

.side-menu-nav a:hover {
  color: var(--accent-color);
  padding-left: 2rem;
}

.side-menu-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(216, 207, 201, 0.2);
}

.side-menu-footer p {
  color: var(--light-color);
  font-style: italic;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(216, 207, 201, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

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

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
    margin-top: 4rem;
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1;
}

.title-line {
  display: block;
  animation: slideInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.title-line:nth-child(2) {
  animation-delay: 0.4s;
}
.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

.title-line.highlight {
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  font-weight: 300;
  letter-spacing: 1px;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  font-family: "Playfair Display", serif;
}

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

.hero-buttons {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.scroll-indicator {
  width: 2px;
  height: 30px;
  background: var(--white);
  margin: 1rem auto 0;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

/* Button Styles */
.btn-primary-custom {
  background: var(--primary-color);
  border: none;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin: 0.5rem;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  margin: 0.5rem;
}

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

/* Quick Booking */
.quick-booking {
  padding: 0;
  margin-top: -80px;
  position: relative;
  z-index: 3;
}

.booking-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow-heavy);
  max-width: 1000px;
  margin: 0 auto;
}

.booking-card h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  border: 2px solid var(--gray-light);
  padding: 1rem;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
  outline: none;
}

/* Section Styles */
.section-header {
  margin-bottom: 4rem;
}

.section-subtitle {
  display: block;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: var(--primary-color);
}

.section-description {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Welcome Section */
.welcome-section {
  padding: 8rem 0;
  background: var(--gray-light);
}

.welcome-content {
  padding-right: 2rem;
}

.welcome-content p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
}

.welcome-images {
  position: relative;
}

.image-card {
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.main-image {
  height: 400px;
}

.floating-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 200px;
  z-index: 2;
}

/* Rooms Preview */
.rooms-preview {
  padding: 8rem 0;
}

.room-card {
  background: var(--white);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.room-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.room-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 69, 19, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.room-card:hover .room-overlay {
  opacity: 1;
}

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

.room-content {
  padding: 2rem;
}

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

.room-content p {
  color: var(--secondary-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.room-features {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.room-features span {
  font-size: 0.8rem;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
}

.room-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.period {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

/* Facilities Highlight */
.facilities-highlight {
  padding: 8rem 0;
  background: var(--light-color);
}

.facility-card {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.facility-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

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

.facility-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.facility-content p {
  color: var(--secondary-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: var(--white);
}

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons .btn-outline-custom {
  border-color: var(--white);
  color: var(--white);
}

.cta-buttons .btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

/* Add subtle background pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer-brand {
  position: relative;
  z-index: 2;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-brand img:hover {
  transform: scale(1.05);
}

.footer-brand p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Enhanced Social Links */
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-links a::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;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Links with Animated Arrows */
.footer-links {
  position: relative;
  z-index: 2;
}

.footer-links h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.footer-links:hover h5::after {
  width: 50px;
}

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

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

.footer-links ul li a {
  color: var(--light-color);
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 0;
  font-size: 0.95rem;
}

/* Animated Arrow */
.footer-links ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--white);
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-10px);
}

.footer-links ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
  left: -15px;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--white);
  transform: translateX(8px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer Contact */
.footer-contact {
  position: relative;
  z-index: 2;
}

.footer-contact h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.footer-contact:hover h5::after {
  width: 50px;
}

.contact-items {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.contact-items:hover {
  transform: translateX(5px);
}

.contact-items i {
  color: var(--secondary-color);
  margin-right: 1rem;
  margin-top: 0.3rem;
  width: 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-items:hover i {
  transform: scale(1.2);
  color: var(--white);
}

.contact-items span {
  color: var(--light-color);
  opacity: 0.9;
  line-height: 1.6;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-items:hover span {
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(216, 207, 201, 0.2);
  padding-top: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: var(--light-color);
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-brand {
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .footer-brand img {
    height: 55px;
  }
  
  .social-links {
    justify-content: center;
    gap: 1rem;
  }
  
  .footer-links,
  .footer-contact {
    margin-bottom: 2.5rem;
  }
  
  .footer-links h5,
  .footer-contact h5 {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .footer-links h5::after,
  .footer-contact h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul {
    text-align: center;
  }
  
  .footer-links ul li a::before {
    display: none; /* Hide arrows on tablet for cleaner look */
  }
  
  .footer-links ul li a:hover {
    transform: translateY(-2px);
  }
  
  .contact-items {
    justify-content: center;
    text-align: left;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
  }
  
  .footer-brand {
    margin-bottom: 2.5rem;
  }
  
  .footer-brand img {
    height: 50px;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .social-links a {
    width: 42px;
    height: 42px;
  }
  
  .footer-links,
  .footer-contact {
    margin-bottom: 2rem;
  }
  
  .footer-links h5,
  .footer-contact h5 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  
  .footer-links ul li {
    margin-bottom: 0.6rem;
  }
  
  .footer-links ul li a {
    font-size: 0.9rem;
    justify-content: center;
    padding: 0.5rem 0;
  }
  
  .contact-items {
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-items i {
    margin-right: 0;
    margin-bottom: 0.5rem;
    margin-top: 0;
  }
  
  .contact-items span {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 479.98px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-brand p {
    font-size: 0.85rem;
  }
  
  .social-links {
    gap: 0.8rem;
  }
  
  .social-links a {
    width: 38px;
    height: 38px;
  }
  
  .footer-links h5,
  .footer-contact h5 {
    font-size: 1rem;
  }
  
  .footer-links ul li a {
    font-size: 0.85rem;
  }
  
  .contact-items span {
    font-size: 0.85rem;
  }
}

/* Hover Effects for Desktop Only */
@media (min-width: 992px) {
  .footer-links ul li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .footer-brand:hover img {
    transform: scale(1.05) rotate(2deg);
  }
}

/* Animation keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Apply animations on scroll (requires JavaScript) */
.footer.animate .footer-brand {
  animation: fadeInUp 0.6s ease-out;
}

.footer.animate .footer-links {
  animation: slideInLeft 0.6s ease-out 0.2s both;
}

.footer.animate .footer-contact {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

  .navbar-nav,
  .contact-info {
    display: none;
  }

  .side-menu-content {
    width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .welcome-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .floating-image {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 200px;
    margin-top: 2rem;
  }

  .facility-card {
    flex-direction: column;
    text-align: center;
  }

  .facility-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .loading-text {
    font-size: 1.5rem;
  }

  .palm {
    width: 40px;
    height: 80px;
  }
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .booking-card {
    padding: 1.5rem;
  }

  .loading-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .loading-bar {
    width: 250px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

