/* ============================================
   CSS Variables & Theme Configuration
   ============================================ */
:root {
  /* Split-Complementary Color Scheme */
  --primary-color: #2D5BFF;
  --primary-light: #5B7FFF;
  --primary-dark: #1A3ACC;
  --secondary-color: #FF2D5B;
  --secondary-light: #FF5B7F;
  --tertiary-color: #FFD12D;
  --tertiary-light: #FFE05B;
  
  /* Neutral Colors */
  --dark: #1A1D2E;
  --dark-light: #2E3244;
  --gray: #6C757D;
  --gray-light: #ADB5BD;
  --light: #F8F9FA;
  --white: #FFFFFF;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, #2D5BFF 0%, #5B7FFF 100%);
  --gradient-secondary: linear-gradient(135deg, #FF2D5B 0%, #FF5B7F 100%);
  --gradient-hero: linear-gradient(135deg, rgba(45, 91, 255, 0.9) 0%, rgba(255, 45, 91, 0.9) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Adaptive Typography Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  --text-3xl: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   Global Styles & Resets
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6,
.title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
  letter-spacing: -0.02em;
}

.title.is-1, h1 {
  font-size: var(--text-4xl);
  font-weight: 900;
}

.title.is-2, h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
}

.title.is-3, h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
}

.title.is-4, h4 {
  font-size: var(--text-xl);
  font-weight: 600;
}

.title.is-5, h5 {
  font-size: var(--text-lg);
  font-weight: 600;
}

.title.is-6, h6 {
  font-size: var(--text-base);
  font-weight: 600;
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  color: var(--gray);
}

.subtitle.is-3 {
  font-size: var(--text-2xl);
}

.subtitle.is-4 {
  font-size: var(--text-xl);
}

.subtitle.is-6 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  font-weight: 600;
}

p, .content-text {
  margin-bottom: var(--spacing-md);
  color: var(--dark-light);
  font-size: var(--text-base);
  line-height: 1.8;
}

.subtitle-text {
  font-size: var(--text-lg);
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Global Button Styles
   ============================================ */
.btn,
.button,
input[type='submit'],
button[type='submit'] {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.btn::before,
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.btn:hover::before,
.button:hover::before {
  opacity: 1;
}

.btn-primary,
.button.is-primary,
.button.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover,
.button.is-primary:hover,
.button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary,
.button.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-secondary:hover,
.button.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-large {
  font-size: var(--text-lg);
  padding: 1.25rem 3rem;
}

.buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.buttons.is-centered {
  justify-content: center;
}

/* ============================================
   Navigation & Header
   ============================================ */
.header-main {
  position: relative;
  z-index: var(--z-fixed);
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
  transition: all var(--transition-base);
}

.navbar.is-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
}

.navbar-brand .logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}

.navbar-brand .logo-text:hover {
  color: var(--primary-dark);
}

.navbar-item {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--dark);
  padding: 0.75rem 1rem;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.navbar-item:hover {
  color: var(--primary-color);
  background: transparent;
}

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger {
  color: var(--dark);
  border: none;
}

.navbar-burger:hover {
  background: transparent;
  color: var(--primary-color);
}

/* ============================================
   Hero Sections
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-adventure,
.hero-about,
.hero-contact {
  background-image: url('image/hero-background-mountain-adventure.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.hero-title,
.hero-subtitle,
.hero-description {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  opacity: 0.95;
}

.hero-description {
  font-size: var(--text-lg);
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
  color: var(--white);
  opacity: 0.9;
}

.hero.is-medium {
  min-height: 60vh;
}

/* Success Page Hero */
.success-hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-hero::before {
  display: none;
}

.success-content {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: var(--spacing-2xl) var(--spacing-md);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: var(--spacing-md) auto 0;
  border-radius: 2px;
}

/* Section Backgrounds */
.section-about,
.section-approach,
.section-impact {
  background: var(--white);
}

.section-explore,
.section-mission,
.section-accolades,
.section-clientele {
  background: var(--light);
}

.section-team,
.section-resources,
.section-faq,
.section-careers {
  background: var(--white);
}

.section-innovation,
.section-sustainability,
.section-news,
.section-media {
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* ============================================
   Cards & Content Blocks
   ============================================ */
.card,
.experience-card,
.team-card,
.news-item,
.accolade-item,
.value-card,
.impact-stat,
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover,
.experience-card:hover,
.team-card:hover,
.news-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.card-image .image-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
  margin: 0 auto;
}

.card:hover .card-image img,
.experience-card:hover .card-image img,
.team-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-content .title {
  margin-bottom: var(--spacing-sm);
  color: var(--dark);
}

.card-content .subtitle {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.card-content .content-text {
  color: var(--dark-light);
  flex-grow: 1;
}

/* Experience Cards */
.experience-card .card-content {
  text-align: center;
}

/* Team Cards */
.team-card .image-container {
  height: 350px;
}

.team-card .card-content {
  text-align: center;
}

/* Value Cards */
.value-card {
  padding: var(--spacing-lg);
  border-left: 4px solid var(--primary-color);
  background: var(--white);
}

.value-card:hover {
  border-left-color: var(--secondary-color);
  transform: translateX(8px);
}

/* Accolade Items */
.accolade-item {
  padding: var(--spacing-lg);
  background: var(--white);
  border-top: 4px solid var(--tertiary-color);
}

/* Impact Stats */
.impact-stat {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.impact-stat .title {
  color: var(--primary-color);
  font-size: var(--text-4xl);
  margin-bottom: var(--spacing-sm);
}

.impact-stat .content-text {
  font-size: var(--text-lg);
  color: var(--dark);
  margin-bottom: 0;
}

/* News Items */
.news-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.news-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
}

/* Resource Cards */
.resource-card {
  padding: var(--spacing-lg);
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.resource-card .title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.resource-card .title a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ============================================
   Media Gallery
   ============================================ */
.section-media .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.section-media .image-container:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.section-media .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   Contact Section
   ============================================ */
.section-contact-main {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
}

.contact-info {
  margin-top: var(--spacing-xl);
}

.contact-item {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.contact-item .title {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.contact-form-wrapper {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form .field {
  margin-bottom: var(--spacing-md);
}

.contact-form .label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  background: var(--white);
  color: var(--dark);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.1);
  outline: none;
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--text-sm);
  color: var(--dark-light);
  cursor: pointer;
}

.contact-form .checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Map Section */
.map-placeholder {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FAQ Section
   ============================================ */
.accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-header {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: all var(--transition-fast);
  user-select: none;
}

.accordion-header:hover {
  background: var(--light);
}

.accordion-header .title {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--dark);
  flex-grow: 1;
  padding-right: var(--spacing-md);
}

.accordion-icon {
  font-size: var(--text-2xl);
  color: var(--primary-color);
  font-weight: 300;
  transition: transform var(--transition-base);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  background: var(--light);
}

.accordion-item.active .accordion-content {
  max-height: 800px;
  padding: var(--spacing-lg);
}

.accordion-content .content-text {
  margin-bottom: 0;
  color: var(--dark-light);
  line-height: 1.8;
}

/* ============================================
   Footer
   ============================================ */
.footer-main {
  background: var(--dark);
  color: var(--white);
  padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.footer-main .title {
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.footer-main .content-text {
  color: var(--gray-light);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-light);
  transition: width var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-links a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.social-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: inline-block;
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--gray-light);
  font-size: var(--text-sm);
  margin: 0;
}

/* ============================================
   Legal Pages (Privacy & Terms)
   ============================================ */
.section-legal {
  padding-top: 120px;
  padding-bottom: var(--spacing-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h2 {
  color: var(--primary-color);
  font-size: var(--text-xl);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--light);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  margin-bottom: var(--spacing-md);
  color: var(--dark-light);
  line-height: 1.8;
}

/* ============================================
   Utility Classes
   ============================================ */
.has-text-centered {
  text-align: center !important;
}

.is-fullwidth {
  width: 100% !important;
}

.is-vcentered {
  align-items: center !important;
}

/* Column Overrides for Better Spacing */
.columns {
  margin-left: calc(-1 * var(--spacing-md));
  margin-right: calc(-1 * var(--spacing-md));
  margin-top: calc(-1 * var(--spacing-md));
}

.column {
  padding: var(--spacing-md);
}

/* Ensure minimum column widths */
.column.is-one-third {
  flex: none;
  width: 33.3333%;
}

.column.is-half {
  flex: none;
  width: 50%;
}

.column.is-two-thirds {
  flex: none;
  width: 66.6667%;
}

/* ============================================
   Read More Links
   ============================================ */
.read-more,
a.read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.read-more::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
  gap: var(--spacing-sm);
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* ============================================
   Parallax Effects
   ============================================ */
[data-aos] {
  pointer-events: auto;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 1024px) {
  :root {
    --spacing-2xl: 4rem;
    --spacing-xl: 3rem;
  }
  
  .section {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-xl);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --spacing-2xl: 3rem;
    --spacing-xl: 2rem;
    --spacing-lg: 1.5rem;
  }
  
  .navbar-menu {
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  
  .navbar-item::after {
    display: none;
  }
  
  .column.is-one-third,
  .column.is-half,
  .column.is-two-thirds {
    width: 100%;
  }
  
  .columns {
    margin: 0;
  }
  
  .column {
    padding: var(--spacing-sm);
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .button,
  .btn {
    width: 100%;
  }
  
  .hero-adventure,
  .hero-about,
  .hero-contact {
    background-attachment: scroll;
    min-height: 80vh;
  }
  
  .hero-body {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .contact-form-wrapper {
    padding: var(--spacing-lg);
  }
  
  .success-content {
    padding: var(--spacing-lg);
    margin: var(--spacing-md);
  }
  
  .card-image .image-container,
  .team-card .image-container {
    height: 240px;
  }
  
  .map-placeholder {
    height: 350px;
  }
  
  .social-links {
    flex-direction: column;
  }
  
  .social-links a {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --spacing-2xl: 2rem;
    --spacing-xl: 1.5rem;
  }
  
  .section-legal {
    padding-top: 100px;
  }
  
  .legal-content {
    padding: var(--spacing-lg);
  }
  
  .hero-description {
    font-size: var(--text-base);
  }
  
  .accordion-header {
    padding: var(--spacing-md);
  }
  
  .accordion-item.active .accordion-content {
    padding: var(--spacing-md);
  }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .navbar,
  .footer-main,
  .buttons,
  .social-links {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-to-content:focus {
  top: 0;
}

*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* ============================================
   Animation Keyframes
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   Performance Optimizations
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .parallax-section {
    background-attachment: scroll;
  }
}

/* Force GPU acceleration for smooth animations */
.card,
.button,
.navbar-item,
.accordion-item {
  will-change: transform;
  transform: translateZ(0);
}

/* ============================================
   Additional Section-Specific Styles
   ============================================ */

/* Story Section */
.section-story img,
.section-approach img,
.section-careers img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* CTA Section */
.section-cta {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.section-cta .section-title,
.section-cta .content-text {
  color: var(--white);
}

.section-cta .section-title::after {
  background: var(--white);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.page-title {
  font-family: var(--font-heading);
  color: var(--white);
}

.section-story {
  background: var(--white);
}

.mission-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.section-team-about {
  background: var(--light);
}

.team-card-about {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.team-card-about:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-card-about .image-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.section-achievements {
  background: var(--white);
}

.achievement-item {
  background: var(--light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.achievement-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.achievement-icon {
  margin-bottom: var(--spacing-md);
}

.icon-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-color);
}

.section-testimonials-about {
  background: var(--light);
}

.testimonial-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--gray);
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--gray-light);
}

.section-gallery-about {
  background: var(--white);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.section-cta-about {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.section-cta-about .section-title,
.section-cta-about .subtitle-text {
  color: var(--white);
}

.section-cta-about .section-title::after {
  background: var(--white);
}

/* ============================================
   CONTACTS PAGE STYLES
   ============================================ */
.section-contact-info {
  background: var(--white);
}

.contact-info-card {
  background: var(--light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-hours {
  background: var(--light);
}

.hours-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.section-map {
  background: var(--white);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 450px;
}

.section-contact-form {
  background: var(--light);
}

.section-additional-info {
  background: var(--white);
}

.section-additional-info img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section-why-contact {
  background: var(--light);
}

.why-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}