/* 
 * Adventure Rakaposhi - Warm Ivory Luxury Tourism Design System
 * Palette: 
 *   - Background: #F7F5F0 (Warm Ivory)
 *   - Primary Text: #171717 (Deep Charcoal)
 *   - Luxury Accent: #A58A5B (Muted Gold)
 *   - Secondary Accent: #24382E (Deep Forest Green)
 * Typography:
 *   - Headings: 'Cormorant Garamond', serif
 *   - Body: 'Inter', sans-serif
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-primary: #F7F5F0;
  --bg-surface: #FFFFFF;
  --bg-secondary: #EFECE4;
  --bg-dark: #24382E;
  --bg-dark-surface: #1B2B23;
  
  --text-main: #171717;
  --text-muted: #525252;
  --text-dim: #737373;
  --text-light: #F7F5F0;
  --text-light-muted: #CBD5E1;

  --gold-accent: #A58A5B;
  --gold-hover: #8C7348;
  --gold-glow: rgba(165, 138, 91, 0.15);
  
  --forest-green: #24382E;
  --forest-light: #2E473B;
  
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  --border-subtle: rgba(23, 23, 23, 0.08);
  --border-gold: rgba(165, 138, 91, 0.35);
  --border-dark: rgba(247, 245, 240, 0.15);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(36, 56, 46, 0.12);
  --shadow-modal: 0 30px 60px rgba(0, 0, 0, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
h1, h2, h3, h4, .brand-title, .section-title {
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
  font-weight: 600;
}

.text-gold {
  color: var(--gold-accent);
}

.text-forest {
  color: var(--forest-green);
}

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

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  padding: 16px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(247, 245, 240, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold-accent);
  object-fit: cover;
  box-shadow: 0 0 12px var(--gold-glow);
  transition: var(--transition-fast);
}

.logo-link:hover .logo-badge {
  transform: scale(1.04);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 700;
}

.brand-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--forest-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-accent);
  transition: var(--transition-fast);
}

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

.nav-socials-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--forest-green);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nav-social-btn:hover {
  background: var(--gold-accent);
  color: #FFF;
  border-color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-green);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  border: 1px solid var(--forest-green);
  cursor: pointer;
}

.nav-cta-btn:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 56, 46, 0.2);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Dynamic Hero Auto-Slideshow Section */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg-wrapper {
  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 1.5s ease-in-out, transform 1.5s ease-in-out;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(36, 56, 46, 0.4) 0%, rgba(27, 43, 35, 0.85) 75%, var(--bg-dark) 100%);
  z-index: 2;
}

/* Hero Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-dot.active {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  width: 32px;
  border-radius: var(--radius-full);
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(247, 245, 240, 0.15);
  border: 1px solid rgba(247, 245, 240, 0.3);
  color: #FFFFFF;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.hero-nav-arrow:hover {
  background: rgba(165, 138, 91, 0.8);
  border-color: var(--gold-accent);
}

.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 245, 240, 0.12);
  border: 1px solid rgba(165, 138, 91, 0.4);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  box-shadow: 0 0 8px var(--whatsapp-green);
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #E2E8F0;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

.hero-action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-accent);
  color: #FFFFFF;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px var(--gold-glow);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary-wa:hover {
  transform: translateY(-3px);
  background: var(--gold-hover);
  box-shadow: 0 12px 30px rgba(165, 138, 91, 0.3);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 245, 240, 0.1);
  border: 1px solid rgba(247, 245, 240, 0.3);
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-secondary-outline:hover {
  background: rgba(247, 245, 240, 0.2);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  transform: translateY(-2px);
}

/* Feature Highlights Bar */
.highlights-bar {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(165, 138, 91, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.highlight-title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.highlight-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Section Common Styling */
.section {
  padding: 90px 0;
  position: relative;
}

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

.section-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Filters & Search Toolbar */
.toolbar-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}

.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  border-color: var(--gold-accent);
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--forest-green);
  color: var(--text-light);
  border-color: var(--forest-green);
  box-shadow: 0 4px 15px rgba(36, 56, 46, 0.15);
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.search-input:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 12px var(--gold-glow);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* Offerings Cards Grid */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-hover);
}

.card-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--forest-green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-season {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--forest-green);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

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

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.25;
}

.card-specs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  line-height: 1.6;
}

.card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag-pill {
  background: var(--bg-secondary);
  color: var(--forest-green);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.btn-details {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-details:hover {
  background: var(--bg-secondary);
  border-color: var(--gold-accent);
}

.btn-wa-card {
  background: var(--forest-green);
  color: var(--text-light);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-wa-card:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(36, 56, 46, 0.2);
}

/* Feature Banners & Destination Wedding Showcase */
.wedding-banner {
  background: linear-gradient(135deg, rgba(36, 56, 46, 0.92), rgba(27, 43, 35, 0.95)), url('images/attabad.png') center/cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  padding: 70px 48px;
  position: relative;
  overflow: hidden;
  margin: 60px 0;
  box-shadow: 0 20px 40px rgba(36, 56, 46, 0.15);
}

.wedding-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.wedding-tag {
  color: var(--gold-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.wedding-title {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.wedding-desc {
  color: #E2E8F0;
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 300;
}

/* Dynamic Photo & Media Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

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

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 23, 23, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #FFFFFF;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.gallery-sub {
  font-size: 0.8rem;
  color: var(--gold-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.95);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 30px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  max-width: 1000px;
  width: 100%;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-height: 75vh;
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 18px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.lightbox-subcaption {
  color: var(--gold-accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.lightbox-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(247, 245, 240, 0.15);
  border: 1px solid rgba(247, 245, 240, 0.3);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.lightbox-nav-arrow:hover {
  background: var(--gold-accent);
  color: #FFFFFF;
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* Travel Seasons & Essential Guide */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.guide-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.guide-card:hover {
  border-color: var(--gold-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.guide-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.guide-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
}

.guide-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials / Guest Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
}

.review-stars {
  color: var(--gold-accent);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--forest-green);
  border: 1px solid var(--border-gold);
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.reviewer-country {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Modal Overlay & Drawer Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.65);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-modal);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-main);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(23, 23, 23, 0.06);
  border: none;
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(23, 23, 23, 0.12);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 10px var(--gold-glow);
}

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

/* Floating WhatsApp Widget */
.floating-wa-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--forest-green);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 25px rgba(36, 56, 46, 0.3);
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid var(--gold-accent);
  position: relative;
}

.floating-wa-btn:hover {
  transform: scale(1.08);
  background: var(--forest-light);
  box-shadow: 0 14px 30px rgba(36, 56, 46, 0.4);
}

.floating-wa-tooltip {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

/* Footer Section */
.footer {
  background: var(--forest-green);
  color: var(--text-light);
  border-top: 1px solid var(--border-gold);
  padding: 70px 0 30px 0;
  margin-top: 80px;
}

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

.footer-brand-desc {
  color: var(--text-light-muted);
  font-size: 0.88rem;
  margin: 16px 0 20px 0;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.footer-links a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-accent);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.08);
  border: 1px solid rgba(247, 245, 240, 0.18);
  color: var(--gold-accent);
  text-decoration: none;
  font-size: 1.15rem;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--gold-accent);
  color: var(--bg-dark);
  border-color: var(--gold-accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px var(--gold-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  color: var(--text-light-muted);
  font-size: 0.82rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 640px) {
  .offerings-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-wa-card, .btn-details {
    justify-content: center;
    width: 100%;
  }
  
  .floating-wa-tooltip {
    display: none;
  }
  
  .hero-nav-arrow {
    display: none;
  }
}

/* Districts of Gilgit-Baltistan Section Styling */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.district-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-end;
}

.district-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

.district-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(27, 43, 35, 0.92) 0%, rgba(27, 43, 35, 0.4) 60%, transparent 100%);
  transition: var(--transition-fast);
}

.district-card:hover .district-overlay {
  background: linear-gradient(to top, rgba(27, 43, 35, 0.96) 0%, rgba(27, 43, 35, 0.55) 70%, rgba(0,0,0,0.1) 100%);
}

.district-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #FFFFFF;
  width: 100%;
}

.district-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(165, 138, 91, 0.85);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.district-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.2;
}

.district-desc {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.district-btn {
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.district-btn i {
  color: var(--whatsapp-green);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.district-btn:hover {
  background: var(--whatsapp-green);
  border-color: var(--whatsapp-green);
  color: #0E2419;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.district-btn:hover i {
  color: #0E2419;
}

/* Trophy Hunting Section Styling */
.trophy-section {
  background: linear-gradient(135deg, rgba(27, 43, 35, 0.96), rgba(18, 30, 24, 0.98)), url('images/expedition.jpg') center/cover;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  color: #FFFFFF;
  margin: 40px auto;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.trophy-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(165, 138, 91, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.trophy-header {
  max-width: 820px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.trophy-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(165, 138, 91, 0.22);
  border: 1px solid var(--gold-accent);
  color: #DFC89B;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.trophy-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 16px;
}

.trophy-desc-lead {
  font-size: 1.05rem;
  color: #F1F5F9;
  line-height: 1.7;
  margin-bottom: 10px;
}

.trophy-desc-sub {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.65;
}

.trophy-desc-sub strong {
  color: var(--gold-accent);
  font-weight: 600;
}

.trophy-animals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 36px 0;
  position: relative;
  z-index: 2;
}

.trophy-animal-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-fast);
}

.trophy-animal-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.trophy-animal-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.trophy-animal-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 700;
}

.trophy-animal-desc {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.55;
}

.trophy-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}

.trophy-conservation-note {
  font-size: 0.84rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 540px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .trophy-section {
    padding: 36px 20px;
    margin: 30px auto;
  }
  .trophy-action-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .trophy-action-bar > div:last-child {
    flex-direction: column;
    width: 100%;
  }
  .trophy-action-bar .btn-primary-wa,
  .trophy-action-bar .btn-secondary-outline {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   Page Hero for Dedicated Experiences & Gallery Pages
   ========================================================================== */
.page-hero {
  padding: 150px 0 70px;
  background: linear-gradient(135deg, rgba(27, 43, 35, 0.94), rgba(36, 56, 46, 0.88)), url('images/hero_golden_summit.png') center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 50px;
}

.page-hero.gallery-hero {
  background: linear-gradient(135deg, rgba(27, 43, 35, 0.94), rgba(36, 56, 46, 0.88)), url('images/hero_fairy_meadows.jpg') center/cover no-repeat;
}

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

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(165, 138, 91, 0.25);
  border: 1px solid var(--gold-accent);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.page-hero-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.page-hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-accent);
}

.page-hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Home Section CTA Box (Links Landing Page to Dedicated Pages)
   ========================================================================== */
.section-cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  width: 100%;
}

.section-cta-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 245, 240, 0.98));
  border: 1.5px solid rgba(165, 138, 91, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: var(--transition-smooth);
}

.section-cta-box:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 16px 40px rgba(165, 138, 91, 0.15);
  transform: translateY(-4px);
}

.section-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(36, 56, 46, 0.08);
  color: var(--forest-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.section-cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-main);
  line-height: 1.2;
}

.section-cta-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 50px;
  }
  .page-hero-title {
    font-size: 2.2rem;
  }
  .section-cta-box {
    padding: 24px 20px;
  }
  .section-cta-title {
    font-size: 1.6rem;
  }
}
