@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #FD4C5C;
  --primary-hover: #e03b4b;
  --dark: #111111;
  --light: #ffffff;
  --gray: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --footer-bg: #000000;
  --transition: all 0.3s ease;
}

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

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

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

/* Global Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--light);
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(253, 76, 92, 0.3);
  color: var(--light);
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  width: 122px;
  height: 90px;
  object-fit: contain;
  transition: var(--transition);
}

header.sticky .logo img {
  height: 95px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  text-align: center;
  padding: 0 20px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.slide.active {
  opacity: 1;
  animation: zoomIn 10s infinite alternate;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

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

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

.hero-content h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--light);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-content .btn-modern {
  font-size: 1.1rem;
  padding: 16px 45px;
}

/* Sections */
.section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 1.8rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-header p {
  margin-top: 20px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Title (Inner Pages) */
.page-title {
  padding: 140px 5% 30px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 768px) {
  .page-title { padding: 130px 5% 20px; }
  .page-title h1 { font-size: 1.5rem; line-height: 1.3; }
}

@media (max-width: 480px) {
  .page-title { padding: 120px 5% 15px; }
  .page-title h1 { font-size: 1.35rem; line-height: 1.35; }
}

/* Cards & Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.icon-card h3 {
  font-size: 1.4rem;
}

.icon-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--light);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(253, 76, 92, 0.3);
}

.icon-card:hover {
  transform: translateY(-12px) rotate(2deg);
  border-color: var(--primary);
  box-shadow: 0 25px 40px rgba(253, 76, 92, 0.15);
}

.icon-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.package-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.package-img {
  height: 250px;
  overflow: hidden;
}

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

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

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  background-color: var(--gray);
  overflow: hidden;
}

.testimonials .section-header {
  margin-bottom: 30px;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 20px;
}

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

.testimonial-card {
  min-width: 100%;
  scroll-snap-align: center;
  background: var(--light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc(33.333% - 14px);
  }
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
}

.testimonial-card h4 {
  color: var(--primary);
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--light);
  padding: 80px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--light);
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #cccccc;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

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

.footer-col.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #cccccc;
}

.footer-col.contact-info i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999999;
}

.footer-bottom a {
  color: var(--primary);
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #FFF;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--dark);
  color: #fff;
  transform: translateY(-5px);
}

/* Content Layout (Package/Activity Details) */
.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.detail-content {
  background: var(--light);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.detail-content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  object-fit: cover;
  max-height: 450px;
}

.detail-content h2, .detail-content h3 {
  color: var(--dark);
  margin-top: 30px;
}

.detail-content h2 {
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.detail-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  text-align: center;
}

.detail-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.detail-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.detail-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  line-height: 1.7;
}

.detail-content ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 1.1rem;
  font-size: 1.1rem;
}

.detail-content ul.exclusion-list li::before {
  content: '\f057';
  color: #e74c3c;
}

/* Modern Accordion (Itinerary) UI */
.modern-accordion {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 40px;
}

.accordion-item {
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-item.active {
  background: rgba(0,0,0,0.02);
  border-radius: 8px;
  border-bottom: none;
  margin: 5px 0;
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-day {
  background: var(--primary);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.accordion-title-wrap h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
  font-size: 1.2rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 1000px;
  padding: 0 20px 25px 20px;
  opacity: 1;
}

.accordion-body p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Inclusions & Exclusions Cards */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.inc-exc-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.inc-exc-card .card-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .accordion-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .detail-content h2, .detail-content h3 {
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Contact Page UI */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(253, 76, 92, 0.15);
  border-color: rgba(253, 76, 92, 0.3);
}

.contact-card i {
  font-size: 1.6rem;
  color: var(--primary);
  width: 50px;
  height: 50px;
  background: rgba(253, 76, 92, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.contact-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.5;
}

.social-links-modern {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon.whatsapp { background: #25D366; }

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  color: #fff;
}

.inquiry-form {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: sticky;
  top: 120px;
}

.inquiry-form h3 {
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.inquiry-form .btn {
  width: 100%;
}

/* Animations Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Package Layouts */
.package-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: var(--transition);
  display: block;
}

.package-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

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

.package-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--light);
}

.package-tile-overlay h3 {
  color: var(--light);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff7b89 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 76, 92, 0.4);
  text-decoration: none;
  width: fit-content;
}

.btn-modern i {
  transition: transform 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(253, 76, 92, 0.6);
  color: #fff;
}

.btn-modern:hover i {
  transform: translateX(5px);
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 3rem; }
  .detail-layout { grid-template-columns: 1fr; }
  .inquiry-form { position: static; margin-top: 40px; }
  .detail-content { padding: 30px; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content h3 { font-size: 1.1rem; }
  .hero-content p { font-size: 1rem; margin-bottom: 1.5rem; padding: 0 10px; }
  .hero-content .btn-modern { font-size: 0.9rem; padding: 12px 30px; }
  
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .section-header h2 { font-size: 1.5rem; text-align: center; word-wrap: break-word; }
  .section-header p { font-size: 0.95rem; padding: 0 5px; }
  
  .section h2, .section h3 {
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .icon-card h3 { font-size: 1.15rem; }
  
  .package-tile {
    height: 280px;
  }

  .detail-content { padding: 25px; }
  .detail-content h2 { font-size: 1.5rem; text-align: center; }
  .detail-content h3 { font-size: 1.2rem; text-align: center; }
  .detail-content img { max-height: 300px; }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .social-links-modern {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; line-height: 1.3; margin-bottom: 1rem; }
  .hero-content h3 { font-size: 1rem; margin-bottom: 0.3rem; }
  .hero-content p { font-size: 0.9rem; margin-bottom: 1.5rem; padding: 0; line-height: 1.5; }
  .hero-content .btn-modern { font-size: 0.85rem; padding: 10px 25px; }
  
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
  
  .section-header h2 { font-size: 1.35rem; }
  
  .icon-card h3 { font-size: 1.1rem; }
  
  .hero {
    padding: 0 15px;
  }

  .detail-layout { padding: 30px 4%; }
  .detail-content { padding: 20px; }
  .detail-content h2 { font-size: 1.35rem; text-align: center; }
  .detail-content h3 { font-size: 1.1rem; text-align: center; }
  .detail-content img { max-height: 250px; border-radius: 10px; }
}
