/* CSS Reset & Variable Definitions */
:root {
  --bg-dark: #070d0a;
  --bg-card: rgba(8, 18, 13, 0.55);
  --bg-card-hover: rgba(14, 30, 22, 0.7);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-active: rgba(187, 242, 70, 0.3);
  --primary-accent: #a8eb12; /* Electric green/lime resembling Meghalaya visual element */
  --primary-accent-glow: rgba(168, 235, 18, 0.4);
  --text-main: #ffffff;
  --text-muted: #a6c0b3;
  --text-active: #ffffff;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* Background Image Container */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url('assets/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(7, 13, 10, 0.85) 0%,
    rgba(7, 13, 10, 0.6) 50%,
    rgba(7, 13, 10, 0.9) 100%
  );
}

/* App Container and Navbar */
.app-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
}

.logo-text {
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-accent-glow);
}

.social-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.social-badge:hover {
  border-color: var(--primary-accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(168, 235, 18, 0.15);
}

.social-badge svg {
  fill: currentColor;
}

/* Main Content Split Grid */
.main-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 40px;
  padding: 40px 0;
  align-items: start;
}

/* Glassmorphism Cards styling */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Hero Panel (Left side) */
.hero-panel {
  position: sticky;
  top: 40px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--primary-accent);
  border: 1px solid var(--primary-accent);
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(168, 235, 18, 0.05);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin-top: -10px;
  display: flex;
  gap: 2px;
}

.char-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  animation: charRevealSpring 0.9s cubic-bezier(0.34, 1.6, 0.64, 1) forwards;
  animation-delay: calc(var(--delay) * 0.12s);
}

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

/* Accent element modeled after the unique slash in reference image */
.accent-letter {
  color: var(--primary-accent);
  position: relative;
  display: inline-block;
}

.accent-letter::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: -20%;
  width: 140%;
  height: 4px;
  background: var(--primary-accent);
  transform: rotate(-12deg);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--primary-accent-glow);
}

.hero-tagline {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

/* Info Strip (Price & Duration) */
.info-strip {
  display: flex;
  gap: 30px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.info-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.info-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.price-tag {
  color: #fff;
}

.per-head {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Inclusions section */
.inclusions-container {
  margin-top: 10px;
}

.inclusions-title {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 15px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.inc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 15px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.inc-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass-active);
  transform: translateY(-2px);
}

.inc-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
}

.inc-icon svg {
  width: 100%;
  height: 100%;
}

.inc-card span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.inc-card:hover span {
  color: #fff;
}

/* CTA & Book Button */
.cta-section {
  margin-top: 10px;
}

.btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
  background-color: #fff;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-accent);
  color: #000;
  box-shadow: 0 10px 35px var(--primary-accent-glow);
  transform: translateY(-2px);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Itinerary Panel (Right side) */
.itinerary-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.itinerary-header h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.itinerary-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Timeline Components */
.timeline {
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    var(--primary-accent) 20%,
    var(--primary-accent) 80%,
    rgba(255, 255, 255, 0.05)
  );
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #233c30;
  border: 2px solid var(--text-muted);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  box-shadow: 0 0 10px var(--primary-accent);
  transform: scale(1.2);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-glass-active);
  transform: translateX(4px);
}

.timeline-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-accent);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
}

.highlight-tag {
  background: rgba(168, 235, 18, 0.06);
  color: var(--primary-accent);
  border-color: rgba(168, 235, 18, 0.15);
}

.special-tag {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(168, 235, 18, 0.15));
  color: #fff;
  border-color: rgba(168, 235, 18, 0.3);
}

/* Footer Section */
.footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 16px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.address-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.address-link svg {
  stroke: var(--primary-accent);
  flex-shrink: 0;
}

.address-link:hover {
  color: var(--primary-accent);
}

.developer-sig {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  padding: 15px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 10px;
}

.developer-sig a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.developer-sig a:hover {
  color: var(--primary-accent);
}

.footer-contact {
  display: flex;
  gap: 16px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.phone-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
}

.phone-pill:hover {
  border-color: var(--primary-accent);
  box-shadow: 0 0 15px rgba(168, 235, 18, 0.15);
}

.whatsapp-pill {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.whatsapp-pill:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

/* RESPONSIVE MEDIA QUERIES */

/* For Tablet screens and below */
@media (max-width: 1024px) {
  .app-container {
    padding: 0 24px;
  }
  
  .main-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-panel {
    position: relative;
    top: 0;
  }
  
  .hero-title {
    font-size: 64px;
  }
}

/* For Mobile screens */
@media (max-width: 640px) {
  .navbar {
    height: 75px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .social-badge {
    padding: 5px 10px;
    font-size: 10px;
  }
  
  .glass-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .accent-letter::after {
    height: 3px;
  }
  
  .info-strip {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }
  
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .inc-card {
    padding: 12px 6px;
  }
  
  .btn {
    padding: 16px;
    font-size: 14px;
  }
  
  .timeline {
    padding-left: 16px;
    gap: 24px;
  }
  
  .timeline::before {
    left: 3px;
  }
  
  .timeline-dot {
    left: -16px;
    width: 10px;
    height: 10px;
    top: 5px;
  }
  
  .timeline-content {
    padding: 16px;
  }
  
  .timeline-title {
    font-size: 15px;
  }
  
  .timeline-desc {
    font-size: 12px;
  }
  
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
    gap: 20px;
  }
  
  .footer-contact {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .contact-pill {
    width: 100%;
    justify-content: center;
  }
}

/* Scroll reveal animations */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
