/* Premium Light Mode Desert Sand Theme for Roar Adventure Tourism */
:root {
  --lp-primary: #c9762a;
  --lp-primary-rgb: 201, 118, 42;
  --lp-secondary: #e28a3b;
  --lp-accent: #f59e0b;
  
  /* Strictly light/soft sand colors - absolutely no black or dark backgrounds */
  --lp-bg-white: #ffffff;
  --lp-bg-sand: #faf7f2;
  --lp-bg-cream: #f5f0e6;
  --lp-border: #f0e6d6;
  --lp-border-hover: rgba(201, 118, 42, 0.35);
  
  /* Premium Soft Typography Colors */
  --lp-text-title: #2d3748;
  --lp-text-body: #4a5568;
  --lp-text-muted: #718096;
  
  /* Light Glassmorphism */
  --lp-glass-bg: rgba(255, 255, 255, 0.75);
  --lp-glass-border: rgba(201, 118, 42, 0.12);
  --lp-card-shadow: 0 10px 30px rgba(201, 118, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  --lp-card-shadow-hover: 0 20px 40px rgba(201, 118, 42, 0.12), 0 4px 10px rgba(201, 118, 42, 0.04);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(201, 118, 42, 0.35); }
  70% { box-shadow: 0 0 0 10px rgba(201, 118, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 118, 42, 0); }
}

/* Base resets & utility styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--lp-bg-white);
  color: var(--lp-text-body);
  font-family: 'Bricolage Grotesque', 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.lp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header & Navbar */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lp-border);
  transition: all 0.4s ease;
}

.lp-header.scrolled {
  background: var(--lp-bg-white);
  box-shadow: 0 8px 30px rgba(201, 118, 42, 0.06);
}

.lp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-logo-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--lp-primary);
  font-family: 'Bricolage Grotesque', sans-serif;
}

.lp-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.lp-nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lp-text-body);
  position: relative;
  padding: 8px 0;
}

.lp-nav-link:hover,
.lp-nav-link.active {
  color: var(--lp-primary);
}

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

.lp-nav-link:hover::after,
.lp-nav-link.active::after {
  width: 100%;
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-btn-contact {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--lp-bg-sand);
  border-radius: 20px;
  border: 1px solid var(--lp-border);
}

.lp-btn-contact:hover {
  background: var(--lp-bg-cream);
  transform: translateY(-1px);
}

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
  color: var(--lp-bg-white);
  padding: 12px 26px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(201, 118, 42, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 118, 42, 0.35);
  filter: brightness(1.05);
}

.lp-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--lp-text-title);
  cursor: pointer;
}

/* Hero Section */
.lp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px 0;
  background: linear-gradient(135deg, #fdfbf7 0%, #faf3e6 100%);
  z-index: 1;
  border-bottom: 1px solid var(--lp-border);
}

.lp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}

.lp-hero-content {
  max-width: 780px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  color: var(--lp-primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(201, 118, 42, 0.04);
}

.lp-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--lp-text-title);
  letter-spacing: -1px;
}

.lp-hero-title span {
  color: var(--lp-primary);
  position: relative;
}

.lp-hero-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(245, 158, 11, 0.18);
  z-index: -1;
  border-radius: 4px;
}

.lp-hero-desc {
  font-size: 17.5px;
  color: var(--lp-text-body);
  margin-bottom: 36px;
  max-width: 660px;
}

.lp-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.lp-hero-badge-item {
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-text-body);
  box-shadow: var(--lp-card-shadow);
}

.lp-hero-badge-icon {
  color: var(--lp-primary);
}

.lp-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-btn-secondary {
  background: var(--lp-bg-white);
  color: var(--lp-text-body);
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--lp-border);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--lp-card-shadow);
}

.lp-btn-secondary:hover {
  background: var(--lp-bg-sand);
  transform: translateY(-2px);
  border-color: var(--lp-primary);
}

.lp-btn-pulse {
  animation: pulseGlow 2.5s infinite;
}

/* Section Common Styles */
.lp-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--lp-border);
}

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

.lp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.lp-section-subtitle {
  color: var(--lp-primary);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.lp-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--lp-text-title);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.lp-section-desc {
  font-size: 15px;
  color: var(--lp-text-muted);
}

/* Packages Grid section */
.lp-packages-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lp-packages-tab-btn {
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-body);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--lp-card-shadow);
  border-style: solid;
}

.lp-packages-tab-btn.active,
.lp-packages-tab-btn:hover {
  background: var(--lp-primary);
  color: var(--lp-bg-white);
  border-color: var(--lp-primary);
  box-shadow: 0 4px 12px rgba(201, 118, 42, 0.15);
}

.lp-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.lp-package-card {
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--lp-card-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lp-card-shadow-hover);
  border-color: var(--lp-border-hover);
}

.lp-package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(201, 118, 42, 0.08);
  color: var(--lp-primary);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.lp-package-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-text-title);
  margin-bottom: 12px;
  padding-right: 60px;
}

.lp-package-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--lp-text-muted);
}

.lp-package-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-package-meta-icon {
  color: var(--lp-primary);
  flex-shrink: 0;
}

.lp-package-features-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.lp-package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--lp-text-body);
  margin-bottom: 8px;
  line-height: 1.4;
}

.lp-package-feature-check {
  color: #10b981;
  margin-top: 3px;
  flex-shrink: 0;
}

.lp-package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--lp-border);
}

.lp-package-price-wrap {
  display: flex;
  flex-direction: column;
}

.lp-package-price-label {
  font-size: 11px;
  color: var(--lp-text-muted);
  text-transform: uppercase;
}

.lp-package-price-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-primary);
}

.lp-package-price-value span {
  font-size: 12px;
  color: var(--lp-text-muted);
  font-weight: 500;
}

/* Why Choose Us & Statistics */
.lp-why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.lp-why-text-col {
  display: flex;
  flex-direction: column;
}

.lp-why-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-why-feature-card {
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--lp-card-shadow);
  transition: all 0.3s ease;
}

.lp-why-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-border-hover);
}

.lp-why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 118, 42, 0.06);
  color: var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 118, 42, 0.1);
}

.lp-why-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  margin-bottom: 8px;
}

.lp-why-card-desc {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.4;
}

.lp-why-stats {
  display: flex;
  gap: 30px;
  margin-top: 32px;
}

.lp-why-stat-item {
  display: flex;
  flex-direction: column;
}

.lp-why-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--lp-primary);
}

.lp-why-stat-label {
  font-size: 13px;
  color: var(--lp-text-muted);
  font-weight: 600;
}

/* Locations pickup grid layout */
.lp-locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.lp-location-card {
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--lp-card-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.lp-location-card:hover,
.lp-location-card.active {
  border-color: var(--lp-primary);
  background: var(--lp-bg-sand);
  transform: translateY(-2px);
}

.lp-location-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--lp-text-title);
}

.lp-locations-details-panel {
  margin-top: 32px;
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--lp-card-shadow);
}

.lp-location-details-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--lp-text-title);
  margin-bottom: 12px;
}

.lp-location-details-text {
  font-size: 14.5px;
  color: var(--lp-text-body);
  line-height: 1.5;
}

.lp-hotel-tag {
  background: var(--lp-bg-sand);
  border: 1px solid var(--lp-border);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
}

/* Booking Process Stepper */
.lp-process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-process-step {
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--lp-card-shadow);
  position: relative;
  transition: all 0.3s ease;
}

.lp-process-step:hover {
  transform: translateY(-2px);
  border-color: var(--lp-border-hover);
}

.lp-process-num {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 118, 42, 0.08);
  color: var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.lp-process-icon {
  width: 50px;
  height: 50px;
  margin: 10px auto 16px auto;
  border-radius: 50%;
  background: rgba(201, 118, 42, 0.04);
  color: var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.lp-process-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text-title);
  margin-bottom: 8px;
}

.lp-process-desc {
  font-size: 13px;
  color: var(--lp-text-muted);
  line-height: 1.4;
}

/* Call to Action Call Box */
.lp-cta-box {
  background: linear-gradient(135deg, #fdfbf7 0%, #faecd5 100%);
  border-radius: 24px;
  border: 1px solid var(--lp-border);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--lp-card-shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-cta-subtitle {
  color: var(--lp-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lp-cta-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--lp-text-title);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 650px;
}

.lp-cta-desc {
  font-size: 15.5px;
  color: var(--lp-text-body);
  margin-bottom: 32px;
  max-width: 550px;
}

/* Footer layout */
.lp-footer {
  background-color: var(--lp-bg-sand);
  border-top: 1px solid var(--lp-border);
  padding: 70px 0 25px 0;
  color: var(--lp-text-body);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 30px;
  margin-bottom: 40px;
}

.lp-footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-footer-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--lp-text-muted);
}

.lp-footer-socials {
  display: flex;
  gap: 10px;
}

.lp-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  transition: all 0.3s ease;
  font-size: 15px;
}

.lp-social-btn:hover {
  background: var(--lp-primary);
  color: var(--lp-bg-white);
  transform: translateY(-2px);
}

.lp-footer-col-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-link {
  font-size: 13.5px;
  color: var(--lp-text-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-footer-link:hover {
  color: var(--lp-primary);
  padding-left: 2px;
}

.lp-footer-contact {
  font-size: 13.5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.lp-footer-contact-icon {
  color: var(--lp-primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Comprehensive sitemap tag links directory */
.lp-footer-directory {
  border-top: 1px solid var(--lp-border);
  padding-top: 32px;
  margin-top: 32px;
}

.lp-directory-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-text-title);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-directory-tag {
  font-size: 12px;
  background: var(--lp-bg-white);
  border: 1px solid var(--lp-border);
  padding: 6px 12px;
  border-radius: 15px;
  transition: all 0.2s ease;
  color: var(--lp-text-body);
  white-space: nowrap;
}

.lp-directory-tag:hover {
  background: rgba(201, 118, 42, 0.08);
  border-color: var(--lp-primary);
  color: var(--lp-primary);
}

.lp-footer-bottom {
  border-top: 1px solid var(--lp-border);
  padding-top: 20px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--lp-text-muted);
}

/* Mobile Sidebar Drawer - Light Mode styling */
.lp-mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: var(--lp-bg-white);
  border-left: 1px solid var(--lp-border);
  z-index: 1050;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.lp-mobile-drawer.open {
  right: 0;
}

.lp-mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-mobile-drawer-close {
  background: none;
  border: none;
  color: var(--lp-text-title);
  cursor: pointer;
}

.lp-mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-mobile-nav-link {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--lp-text-body);
}

.lp-mobile-nav-link:hover,
.lp-mobile-nav-link.active {
  color: var(--lp-primary);
}

.lp-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1040;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lp-mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .lp-hero-title {
    font-size: 44px;
  }
  .lp-why-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-process-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-nav-links,
  .lp-btn-primary.header-btn {
    display: none;
  }
  .lp-mobile-menu-btn {
    display: block;
  }
  .lp-hero-title {
    font-size: 36px;
  }
  .lp-hero-desc {
    font-size: 15.5px;
  }
  .lp-section-title {
    font-size: 28px;
  }
  .lp-locations-grid {
    grid-template-columns: 1fr;
  }
  .lp-process-flow {
    grid-template-columns: 1fr;
  }
  .lp-cta-box {
    padding: 40px 20px;
  }
  .lp-cta-title {
    font-size: 28px;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }
}
