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

:root {
  /* Branding Colors */
  --primary: #0034b7;
  --primary-hover: #00288f;
  --primary-light: rgba(0, 52, 183, 0.1);
  --secondary: #445381;
  --accent: #42210b;
  
  /* UI Colors */
  --text-dark: #000000;
  --text-light: #000000;
  --text-muted: #000000;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  
  /* Specific UI Colors */
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebd57;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--bg-white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--bg-white);
}

.section-dark p {
  color: #94a3b8;
}

.section-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.section-primary h2, .section-primary h3, .section-primary h4 {
  color: var(--bg-white);
}

.section-primary p {
  color: rgba(255,255,255,0.9);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 52, 183, 0.25);
}

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

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

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: height 0.3s ease;
}

.logo img {
  height: 60px; /* Prominent & premium */
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.header.scrolled .header-inner {
  height: 70px;
}

.header.scrolled .logo img {
  height: 48px;
}

.nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-right: 30px;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-links a {
  font-weight: 550;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  font-size: 0.975rem;
  position: relative;
}

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

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

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

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  color: var(--primary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-btn:hover {
  color: var(--primary-hover);
  transform: scale(1.05);
}
   
@media (max-width: 1024px) {
  .header-inner {
    height: 75px;
  }
  
  .logo img {
    height: 50px;
  }

  .header.scrolled .header-inner {
    height: 65px;
  }

  .header.scrolled .logo img {
    height: 42px;
  }

  .mobile-menu-btn { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  /* Slide-out navigation drawer using .nav */
  .nav {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 40px 30px;
    margin: 0;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s ease, height 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    border-top: 1px solid rgba(241, 245, 249, 0.8);
  }
  
  .header.scrolled .nav {
    top: 65px;
    height: calc(100vh - 65px);
  }
  
  .nav.active {
    left: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
  }

  .nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 16px 0;
    width: 100%;
    display: block;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: 8px;
  }
}

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

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 4s ease-in-out;
  z-index: 1;
}

.hero-slide.active img {
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  color: var(--bg-white);
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  margin-top: 80px;
}

@media (min-width: 769px) {
  .hero-content {
    max-width: 1100px; /* Prevent title from wrapping to two lines on laptops */
    margin-top: -80px; /* Shift text UP into the sky, off the subjects' faces */
  }
}

.hero-content h1 {
  color: var(--bg-white);
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background-color: var(--bg-white);
  transform: scale(1.2);
}

/* Inner Page Title Section */
.page-hero {
  position: relative;
  padding: 130px 20px 40px;
  background-color: transparent;
  margin-bottom: 20px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-content h1 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.page-hero-content p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 30px; }

/* Package Cards */
.pkg-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pkg-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.pkg-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkg-card:hover .pkg-card-img-wrap img {
  transform: scale(1.08);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--bg-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.pkg-card-body {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-meta {
  display: flex;
  gap: 15px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

/* Detail Main (Policy/Content Pages) */
.detail-main {
  font-size: 1.05rem;
  line-height: 1.7;
}

.detail-main h1 {
  margin-bottom: 25px;
  font-size: 2.2rem;
  color: var(--primary);
}

.detail-main h2 {
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--text-dark);
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 10px;
}

.detail-main h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.detail-main p {
  margin-bottom: 20px;
}

.detail-main ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 25px;
}

.detail-main li {
  margin-bottom: 8px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .detail-main h1 { font-size: 1.8rem; }
  .detail-main h2 { font-size: 1.5rem; margin-top: 35px; }
  .detail-main h3 { font-size: 1.25rem; }
  .detail-main { font-size: 1rem; }
}

.pkg-card-body p {
  margin-bottom: 24px;
  flex-grow: 1;
}

.pkg-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

/* Feature Cards (Why Choose Us) */
.feature-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid #f1f5f9;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: scale(1.1) rotate(5deg);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 85%; /* Slightly shorter than square */
  overflow: hidden;
  background: var(--bg-light);
}

.team-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

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

.team-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-info h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.team-role {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  margin-top: auto;
}

.team-credentials li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}

.team-credentials li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-stat {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--bg-white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-text {
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.faq-btn {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-btn:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content-inner {
  padding: 0 25px 25px;
  color: var(--text-light);
}

/* Package Detail Layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}

.detail-main h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.detail-main h2:first-child {
  margin-top: 0;
}

.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.inc-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-md);
}

.inc-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.inc-box.included h3 { color: #16a34a; }
.inc-box.excluded h3 { color: #dc2626; }

.inc-box ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}

.inc-box.included ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.inc-box.excluded ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

/* Sidebar */
.sidebar-widget {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 100px;
}

.sidebar-widget h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.sidebar-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.sidebar-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sidebar-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.sidebar-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-dark);
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-all;
}

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

/* Contact Section (Holiday Stack Style) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  align-items: flex-start;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-grid {
    gap: 30px;
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-card:hover .contact-info-card-icon {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.contact-info-card-icon svg {
  width: 26px;
  height: 26px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-info-card p, .contact-info-card a {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--primary);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
}

@media (max-width: 480px) {
  .contact-form-card {
    padding: 25px 20px;
  }
}

.contact-form-card h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg-white);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 20px;
}

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

.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

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

.footer-col ul li a {
  transition: var(--transition);
}

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

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

/* Floating Buttons */
.floating-wa {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1);
  background-color: var(--whatsapp-hover);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 52, 183, 0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
}

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

.back-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-5px);
  color: var(--bg-white);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 3.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stat { left: 20px; bottom: 20px; }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar-widget { position: static; margin-top: 40px; }
}

@media (max-width: 768px) {
  .hero { min-height: 500px; height: 100vh; }
  .hero-content { padding-bottom: 40px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  
  .contact-layout { grid-template-columns: 1fr; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  
  .pkg-card-footer { grid-template-columns: 1fr; }
  
  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .footer-bottom { justify-content: center !important; text-align: center; flex-direction: column; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .page-title-bar { padding: 100px 0 40px; }
  .contact-info-card { padding: 30px 20px; }
}

/* Review Cards */
.review-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
}

/* Review Slider */
.review-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 50px;
}
.review-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.review-slide {
  flex: 0 0 100%;
  padding: 0 15px;
  box-sizing: border-box;
}
.review-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.review-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Contact / Booking Section Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.contact-form-wrap {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 30px 20px;
  }
  .review-card {
    padding: 20px;
  }
}

/* Contact Action Buttons */
.contact-action-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contact-action-btns .btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
@media (max-width: 480px) {
  .contact-action-btns {
    flex-direction: column;
  }
  .contact-action-btns .btn {
    width: 100%;
  }
}

/* Package Card Animations */
.pkg-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.pkg-card-img-wrap {
  overflow: hidden;
}
.pkg-card-img-wrap img {
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-card-img-wrap img {
  transform: scale(1.1);
}

/* Detailed Package CSS */
.pkg-slider {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
  background: #000;
}
.pkg-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slideFade 4s infinite;
  opacity: 0;
}
.pkg-slider img:nth-child(1) {
  animation-delay: 0s;
}
.pkg-slider img:nth-child(2) {
  animation-delay: 2s;
}
@keyframes slideFade {
  0% { opacity: 1; transform: scale(1); }
  45% { opacity: 1; transform: scale(1.02); }
  50% { opacity: 0; transform: scale(1.02); }
  95% { opacity: 0; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}
.pkg-slider-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.4);
  z-index: 5;
}
.pkg-slider-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
}
.pkg-slider-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.package-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .package-detail-grid {
    grid-template-columns: 1fr;
  }
}

.package-highlights {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 20px 25px;
  background: var(--bg-alt);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}
.highlight-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.inc-exc-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .inc-exc-boxes {
    grid-template-columns: 1fr;
  }
}
.inc-box {
  padding: 30px;
  border-radius: 12px;
}
.inc-box h3 { margin-top: 0; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.inc-box.included { background: rgba(37,211,102,0.05); border: 1px solid rgba(37,211,102,0.2); }
.inc-box.included h3 { color: #15803d; }
.inc-box.excluded { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.2); }
.inc-box.excluded h3 { color: #b91c1c; }
.inc-box ul { list-style: none; padding: 0; margin: 0; }
.inc-box li { padding: 8px 0; display: flex; gap: 10px; align-items: flex-start; }
.inc-box li i { margin-top: 4px; }
.inc-box.included li i { color: #22c55e; }
.inc-box.excluded li i { color: #ef4444; }

.tour-plan { margin-top: 40px; margin-bottom: 40px; }
.tour-day {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
}
@media (max-width: 480px) {
  .tour-day { flex-direction: column; gap: 10px; }
}
.tour-day-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  background: var(--primary);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tour-day-content h3 { margin-top: 10px; margin-bottom: 15px; color: var(--text-dark); }
.tour-day-content p { margin-bottom: 0; }

.sidebar-sticky {
  position: sticky;
  top: 100px;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}
.sidebar-sticky h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
}
.pkg-detail-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  display: inline-block;
}

/* Hero Slider Overhaul */
.pkg-hero-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  background: #000;
}
.pkg-hero-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: slideLeftLoop 4s infinite cubic-bezier(0.8, 0, 0.2, 1);
}
.pkg-hero-slide {
  width: 50%;
  height: 100%;
}
.pkg-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkg-hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  z-index: 5;
}
.pkg-hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
}
.pkg-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .pkg-hero-content {
    top: 40%;
  }
  .pkg-hero-content h1 {
    font-size: 2.2rem;
  }
  .pkg-hero-wrapper {
    height: 40vh;
  }
}
@keyframes slideLeftLoop {
  0%, 40% { transform: translateX(0); }
  50%, 90% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Rentals Page */
.rentals-container {
  max-width: 1200px;
  margin: 0 auto;
}
.rental-category {
  margin-bottom: 50px;
}
.rental-category h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block;
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.rental-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.rental-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.rental-info {
  margin-bottom: 20px;
}
.rental-info h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.rental-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Home Page Laptop Centering */
@media (min-width: 1025px) {
  .home-page h1, .home-page h2, .home-page h3, .home-page h4, .home-page h5, .home-page h6 {
    text-align: center;
  }
  .home-page .about-text, .home-page .contact-layout > div:first-child, .home-page .feature-card, .home-page .pkg-card-body {
    text-align: center;
  }
  .home-page .feature-icon {
    margin-inline: auto;
  }
  .home-page .contact-action-btns, .home-page .hero-buttons, .home-page .pkg-card-footer {
    justify-content: center;
  }
  .home-page .btn {
    margin-inline: auto;
  }
  .home-page .header .btn, .home-page .contact-action-btns .btn, .home-page .hero-buttons .btn {
    margin-inline: 0;
  }
}

@media (min-width: 1025px) {
  .home-page .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .home-page .footer h4 {
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .home-page .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .home-page .text-center .btn {
    display: flex !important;
    width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 690px !important;
  }
  .hero-slide {
    align-items: flex-start !important;
    padding-top: 140px !important;
  }
  .hero-content {
    margin-top: 0 !important;
    padding-bottom: 100px !important;
  }
  .hero-dots {
    bottom: 30px !important;
    padding: 15px 0 !important;
  }
}

@media (max-width: 768px) {
  /* Target ONLY the 10 Days 9 Nights Snowboarding Package image on the homepage */
  .pkg-card-img-wrap img[src="Images/10 Days 9 Nights Snowboarding Package.avif"] {
    /* Shifts the image focus 25% downwards */
    object-position: center 25% !important; 
  }
}
/* Mobile Responsiveness Fix for Detailed Package Pages */
@media (max-width: 768px) {
  .pkg-detail-content h1 { font-size: 2rem !important; }
  .pkg-detail-content h2 { font-size: 1.5rem !important; margin-top: 25px !important; margin-bottom: 15px !important; }
  
  .package-highlights { padding: 15px !important; gap: 15px !important; }
  .package-highlights .highlight-item { font-size: 0.95rem !important; }
  
  .inc-exc-boxes { grid-template-columns: 1fr !important; gap: 15px !important; margin-top: 25px !important; margin-bottom: 25px !important; }
  .inc-box { padding: 20px !important; }
  .inc-box h3 { font-size: 1.25rem !important; }
  
  .tour-day { flex-direction: column !important; padding: 20px !important; gap: 15px !important; margin-bottom: 20px !important; }
  .tour-day-num { width: 45px !important; height: 45px !important; font-size: 1.2rem !important; display: flex; align-items: center; justify-content: center; }
  .tour-day-content h3 { font-size: 1.2rem !important; margin-bottom: 10px !important; margin-top: 0 !important; }
  
  .faq-item { padding: 15px 20px !important; }
  .faq-question { font-size: 1.1rem !important; }
  
  .sidebar-sticky { padding: 20px !important; margin-top: 30px !important; }
  .sidebar-sticky h3 { font-size: 1.3rem !important; }
  .sidebar-sticky .btn { padding: 12px !important; font-size: 1rem !important; }
}
