@import url('https://fonts.googleapis.com/css2?family=Jaro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-primary: "Inter", sans-serif;
  --color-bg: #ffffff;
  --color-text-main: #1e293b;
  --color-text-light: #64748b;
  --color-primary: #0f172a;
  --color-accent: #ffff00;
  --color-white: #ffffff;
  --transition-fast: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 5rem 0;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Jaro", sans-serif;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.packages-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.packages-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.packages-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packages-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.705), rgba(0, 0, 0, 0.555));
}

.packages-hero h1 {
 font-size: clamp(4.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.intro-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.paragraph-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-section p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
}

.loading-state p {
  font-size: 1.2rem;
  color: #64748b;
}

.package-card {
  position: relative;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-card .card-image {
  width: 100%;
  height: 100%;
}

.package-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.92));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2rem;
  color: var(--color-white);
  text-align: center;
}

.package-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--color-white);
}

.package-card p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-book {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package-card:hover .card-image img {
  transform: scale(1.1);
}

.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--color-white);
  font-size: 1.2rem;
  opacity: 0.8;
}

.social-links a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .packages-hero h1 {
    font-size: 3rem;
  }

  .footer-container,
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 60px !important;
  height: 60px !important;
  background: #25D366 !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 32px !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 8px 24px rgba(37, 211, 102, 0.3) !important;
  z-index: 9999 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
}

.whatsapp-float:hover {
  background: #20BA5A !important;
  color: white !important;
  transform: scale(1.15) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 12px 32px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-float:active {
  transform: scale(1.05) !important;
}

.whatsapp-float i {
  line-height: 1 !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.whatsapp-float::before {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  animation: whatsappPulse 2s ease-out infinite !important;
  z-index: -1 !important;
  opacity: 0 !important;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 28px !important;
  }
}

@media print {
  .whatsapp-float {
    display: none !important;
  }
}