@import url('https://fonts.googleapis.com/css2?family=Jaro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500&display=swap');

/* Global Variables */
:root {
  --font-primary: "Outfit", sans-serif;

  --color-bg: #ffffff;
  --color-text-main: #1e293b;
  --color-text-light: #64748b;
  --color-primary: #0f172a;
  /* Dark Navy */
  --color-accent: #ffff00;
  /* Bright Yellow/Gold */
  --color-white: #ffffff;

  --transition-fast: 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", 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;
}

/* Navigation */
.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: 'Inter', 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;
}

/* Hero Section */
.day-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.day-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.day-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.day-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));
}

.day-hero h1 {
  font-size: clamp(4.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

/* Intro Section */
.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;
}

/* Tour Grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tour-card {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-card .card-image {
  width: 100%;
  height: 100%;
}

.tour-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);
}

.tour-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2rem;
  color: var(--color-white);
  text-align: center;
}

.tour-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--color-white);
}

.tour-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);
}

.tour-card:hover .card-image img {
  transform: scale(1.1);
}

/* Footer */
.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;
  font-family: 'Inter', sans-serif;
}

.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;
}

/* Responsive */
@media (max-width: 1024px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .tour-grid {
    grid-template-columns: 1fr;
  }

  .day-hero h1 {
    font-size: 3rem;
  }

  .footer-container,
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

/* 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;
  }
}