/* ============================================
   ANCIENT FLAME - TECH FUTURISTIC DESIGN
   Complete CSS Styles for All Pages
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1429 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(216, 67, 21, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #D84315 0%, #FFA726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #E0E0E0;
}

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

a:hover {
  color: #D84315;
  text-shadow: 0 0 10px rgba(216, 67, 21, 0.5);
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #E0E0E0;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(216, 67, 21, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(216, 67, 21, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(255, 167, 38, 0.8));
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 0 5px rgba(216, 67, 21, 0.3);
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D84315, #FFA726);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFA726;
  background: rgba(216, 67, 21, 0.1);
  box-shadow: 0 0 15px rgba(216, 67, 21, 0.3);
}

.main-nav a:hover::before {
  width: 100%;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #D84315, #FFA726);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(216, 67, 21, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 2px solid rgba(216, 67, 21, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(216, 67, 21, 0.2);
  color: #FFFFFF;
  border: 2px solid #D84315;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #D84315;
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(216, 67, 21, 0.6);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  background: rgba(216, 67, 21, 0.1);
  border: 1px solid rgba(216, 67, 21, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(216, 67, 21, 0.3);
  border-color: #D84315;
  box-shadow: 0 0 20px rgba(216, 67, 21, 0.4);
  transform: translateX(5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, rgba(216, 67, 21, 0.1) 0%, rgba(26, 31, 58, 0.3) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 40px 20px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(216, 67, 21, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.hero-value {
  font-size: 18px;
  color: #FFA726;
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-indicator {
  font-size: 14px;
  color: #B0B0B0;
  margin-top: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #D84315 0%, #FFA726 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #FFA726;
  border: 2px solid #FFA726;
}

.btn-secondary:hover {
  background: rgba(255, 167, 38, 0.1);
  border-color: #D84315;
  color: #D84315;
  box-shadow: 0 0 20px rgba(216, 67, 21, 0.3);
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-proposition {
  padding: 60px 20px;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  color: #FFA726;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #D84315, #FFA726);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #D84315;
}

.benefit-card h3 {
  color: #FFA726;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #E0E0E0;
  font-size: 15px;
}

/* ============================================
   SERVICES & CARDS
   ============================================ */
.services-overview {
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(10, 14, 39, 0.8) 100%);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(216, 67, 21, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, 30%);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(216, 67, 21, 0.4);
  border-color: #FFA726;
}

.service-card:hover::after {
  width: 200px;
  height: 200px;
}

.service-card h3 {
  color: #FFA726;
  font-size: 22px;
  margin-bottom: 12px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #D84315;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(216, 67, 21, 0.5);
}

.service-card p {
  color: #E0E0E0;
  line-height: 1.6;
  flex-grow: 1;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
  border-radius: 16px;
  margin: 40px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 167, 38, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 167, 38, 0.2);
  border-color: #FFA726;
}

.testimonial-card > p:first-child {
  color: #FFFFFF;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  padding-left: 24px;
}

.testimonial-card > p:first-child::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: #FFA726;
  opacity: 0.3;
}

.author {
  color: #FFA726;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #FFA726;
  font-weight: 600;
  margin-top: 20px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-final, .cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(216, 67, 21, 0.15) 0%, rgba(26, 31, 58, 0.4) 100%);
  border-radius: 16px;
  margin: 40px 20px;
  border: 1px solid rgba(216, 67, 21, 0.3);
}

.cta-final h2, .cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.benefit-summary {
  font-size: 18px;
  color: #FFA726;
  margin-bottom: 32px;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.urgency {
  font-size: 14px;
  color: #FFA726;
  margin-top: 24px;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(216, 67, 21, 0.1);
  border-radius: 8px;
  display: inline-block;
  border: 1px solid rgba(216, 67, 21, 0.3);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(216, 67, 21, 0.1) 0%, rgba(26, 31, 58, 0.3) 100%);
  border-radius: 16px;
  margin: 40px 20px;
  border: 1px solid rgba(216, 67, 21, 0.2);
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.value-prop {
  font-size: 16px;
  color: #FFA726;
  margin-top: 16px;
  font-weight: 600;
}

/* ============================================
   TOUR CATEGORIES & GRIDS
   ============================================ */
.tour-categories, .featured-tours {
  padding: 60px 20px;
}

.categories-grid, .tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card, .tour-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-card:hover, .tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.category-card h3, .tour-card h3 {
  color: #FFA726;
  font-size: 22px;
}

.duration {
  font-size: 14px;
  color: #B0B0B0;
  margin-bottom: 8px;
}

.tour-details {
  font-size: 14px;
  color: #FFA726;
  font-weight: 600;
  margin-bottom: 8px;
}

.availability {
  font-size: 14px;
  color: #B0B0B0;
  margin-top: 8px;
}

/* ============================================
   MEMBERSHIP COMPARISON
   ============================================ */
.membership-comparison {
  padding: 60px 20px;
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.membership-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.6) 0%, rgba(10, 14, 39, 0.8) 100%);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.membership-card.featured {
  border-color: #FFA726;
  box-shadow: 0 0 40px rgba(255, 167, 38, 0.3);
  transform: scale(1.05);
}

.membership-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(216, 67, 21, 0.4);
}

.membership-card.featured:hover {
  transform: translateY(-8px) scale(1.07);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #D84315, #FFA726);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.4);
}

.membership-card h3 {
  color: #FFA726;
  font-size: 28px;
  margin-bottom: 8px;
}

.membership-card .price {
  font-size: 40px;
  color: #D84315;
  margin-bottom: 12px;
}

.tagline {
  font-size: 16px;
  color: #B0B0B0;
  margin-bottom: 20px;
  font-style: italic;
}

.membership-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  flex-grow: 1;
}

.membership-card li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #E0E0E0;
  border-bottom: 1px solid rgba(255, 167, 38, 0.1);
}

.membership-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFA726;
  font-weight: 700;
  font-size: 18px;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #B0B0B0;
  margin-top: 32px;
  padding: 16px;
  background: rgba(255, 167, 38, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 167, 38, 0.1);
}

/* ============================================
   VALUE CALCULATOR
   ============================================ */
.value-calculator {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
  border-radius: 16px;
  margin: 40px 20px;
}

.calculator-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.example {
  flex: 1 1 350px;
  max-width: 450px;
  background: rgba(10, 14, 39, 0.6);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
}

.example h3 {
  color: #FFA726;
  margin-bottom: 20px;
}

.example p {
  margin-bottom: 12px;
  font-size: 16px;
}

.savings {
  font-size: 20px;
  color: #D84315;
  font-weight: 700;
  margin-top: 20px;
  padding: 16px;
  background: rgba(216, 67, 21, 0.1);
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(216, 67, 21, 0.3);
}

.roi-message {
  text-align: center;
  font-size: 18px;
  color: #FFA726;
  font-weight: 600;
  margin-top: 32px;
}

/* ============================================
   HOW IT WORKS & STEPS
   ============================================ */
.how-it-works {
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 240px;
  max-width: 280px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #D84315;
  text-shadow: 0 0 20px rgba(216, 67, 21, 0.5);
}

.step h3 {
  color: #FFA726;
  font-size: 20px;
}

.step p {
  color: #E0E0E0;
  font-size: 14px;
}

/* ============================================
   STATS & NUMBERS
   ============================================ */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background: rgba(26, 31, 58, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FFA726;
  text-shadow: 0 0 20px rgba(255, 167, 38, 0.4);
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #E0E0E0;
}

/* ============================================
   MISSION & TEAM SECTIONS
   ============================================ */
.origin-story, .mission-vision, .team {
  padding: 60px 20px;
}

.mission-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.mission-item {
  flex: 1 1 350px;
  max-width: 500px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.mission-item h3 {
  color: #FFA726;
  margin-bottom: 16px;
}

.team-member {
  flex: 1 1 240px;
  max-width: 280px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.team-member h3 {
  color: #FFA726;
  margin-bottom: 8px;
}

.role {
  font-size: 14px;
  color: #D84315;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-options {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.contact-card h3 {
  color: #FFA726;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
  border-radius: 16px;
  margin: 40px 20px;
}

.form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(10, 14, 39, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
}

.form-placeholder p {
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(26, 31, 58, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(255, 167, 38, 0.1);
}

.form-placeholder strong {
  color: #FFA726;
  display: block;
  margin-bottom: 8px;
}

.privacy-note {
  font-size: 12px;
  color: #B0B0B0;
  margin-top: 16px;
}

.privacy-note a {
  color: #FFA726;
  text-decoration: underline;
}

.office-visit, .team-contact, .faq-section {
  padding: 60px 20px;
}

.office-details {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
}

.office-details p {
  margin-bottom: 16px;
}

.team-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.contact-person {
  flex: 1 1 280px;
  max-width: 350px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-person:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.contact-person h3 {
  color: #FFA726;
  margin-bottom: 8px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  background: rgba(26, 31, 58, 0.5);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.2);
  border-color: #FFA726;
}

.faq-item h3 {
  color: #FFA726;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #E0E0E0;
  font-size: 15px;
}

/* ============================================
   GALLERY & STORIES
   ============================================ */
.gallery-intro {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.story-highlights, .tour-memories {
  padding: 60px 20px;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.story-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.story-card h3 {
  color: #FFA726;
  margin-bottom: 16px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category {
  flex: 1 1 240px;
  max-width: 280px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.category h3 {
  color: #FFA726;
  margin-bottom: 12px;
}

.member-spotlights {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
  border-radius: 16px;
  margin: 40px 20px;
}

.spotlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.spotlight {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(10, 14, 39, 0.6);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.spotlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.spotlight p {
  color: #E0E0E0;
  font-size: 16px;
  font-style: italic;
}

.milestones {
  padding: 60px 20px;
}

.milestones ul {
  max-width: 700px;
  margin: 40px auto;
  list-style: none;
  padding: 0;
}

.milestones li {
  background: rgba(26, 31, 58, 0.5);
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  border-left: 4px solid #FFA726;
  transition: all 0.3s ease;
}

.milestones li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(255, 167, 38, 0.2);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 32px;
  text-align: center;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #FFA726;
  font-size: 24px;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #FFA726;
  font-size: 18px;
}

.legal-page p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul, .legal-page ol {
  margin-bottom: 20px;
  padding-left: 32px;
}

.legal-page li {
  margin-bottom: 12px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-page {
  padding: 80px 20px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 800px;
  text-align: center;
  background: rgba(26, 31, 58, 0.5);
  padding: 60px 40px;
  border-radius: 16px;
  border: 1px solid rgba(216, 67, 21, 0.3);
}

.thank-you-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.confirmation-message {
  font-size: 24px;
  color: #FFA726;
  margin-bottom: 32px;
  font-weight: 600;
}

.confirmation-details {
  margin: 40px 0;
  padding: 32px;
  background: rgba(10, 14, 39, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 167, 38, 0.1);
}

.confirmation-details h3 {
  color: #FFA726;
  margin-top: 24px;
  margin-bottom: 16px;
}

.confirmation-details ol {
  text-align: left;
  max-width: 500px;
  margin: 20px auto;
}

.suggestions, .next-steps {
  margin: 40px 0;
}

.suggestions h2, .next-steps h2 {
  margin-bottom: 32px;
}

.suggestions-grid, .steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.suggestion-card, .step-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: rgba(10, 14, 39, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(216, 67, 21, 0.2);
  transition: all 0.3s ease;
}

.suggestion-card:hover, .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(216, 67, 21, 0.3);
  border-color: #FFA726;
}

.suggestion-card h3, .step-card h3 {
  color: #FFA726;
  margin-bottom: 12px;
  font-size: 18px;
}

.quick-actions {
  margin: 40px 0;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.action-link {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(216, 67, 21, 0.1);
  border: 1px solid rgba(216, 67, 21, 0.3);
  border-radius: 8px;
  color: #FFA726;
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-link:hover {
  background: rgba(216, 67, 21, 0.2);
  border-color: #FFA726;
  box-shadow: 0 0 20px rgba(216, 67, 21, 0.3);
  transform: translateY(-2px);
}

.back-home, .return-home {
  margin-top: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(216, 67, 21, 0.3);
  padding: 60px 20px 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(216, 67, 21, 0.5));
}

.footer-brand p {
  color: #B0B0B0;
  font-size: 14px;
}

.footer-contact, .footer-links, .footer-legal {
  flex: 1 1 200px;
  max-width: 250px;
}

.footer-contact h4, .footer-links h4, .footer-legal h4 {
  color: #FFA726;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.footer-contact p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a, .footer-legal a {
  color: #B0B0B0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.footer-links a:hover, .footer-legal a:hover {
  color: #FFA726;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 67, 21, 0.2);
}

.footer-bottom p {
  color: #B0B0B0;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(216, 67, 21, 0.4);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1 1 400px;
  color: #E0E0E0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #FFA726;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D84315, #FFA726);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.4);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.6);
}

.cookie-btn-reject {
  background: transparent;
  color: #B0B0B0;
  border: 1px solid rgba(176, 176, 176, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(176, 176, 176, 0.1);
  border-color: #B0B0B0;
}

.cookie-btn-settings {
  background: transparent;
  color: #FFA726;
  border: 1px solid rgba(255, 167, 38, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(255, 167, 38, 0.1);
  border-color: #FFA726;
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  border: 2px solid rgba(216, 67, 21, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: #FFA726;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(216, 67, 21, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #FFA726;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(176, 176, 176, 0.3);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #D84315, #FFA726);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-description {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cookie-modal-buttons .cookie-btn {
  padding: 12px 24px;
  font-size: 15px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header & Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: block; }
  
  /* Hero Section */
  .hero { padding: 60px 20px; margin: 20px 10px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-value { font-size: 15px; }
  .hero-cta { flex-direction: column; }
  
  /* Page Hero */
  .page-hero { padding: 60px 20px; margin: 20px 10px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 16px; }
  
  /* Sections */
  .section { padding: 32px 16px; margin-bottom: 40px; }
  
  /* Grids & Cards */
  .benefits-grid, .services-grid, .testimonials-grid,
  .categories-grid, .tours-grid, .comparison-grid,
  .steps-grid, .stats-grid, .mission-grid, .team-grid,
  .contact-grid, .team-contacts-grid, .stories-grid,
  .categories, .spotlights-grid, .calculator-examples {
    gap: 16px;
  }
  
  .benefit-card, .service-card, .testimonial-card,
  .category-card, .tour-card, .membership-card,
  .step, .stat, .mission-item, .team-member,
  .contact-card, .contact-person, .story-card,
  .category, .spotlight, .example {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Membership Cards */
  .membership-card.featured {
    transform: scale(1);
  }
  
  .membership-card.featured:hover {
    transform: translateY(-4px) scale(1);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand, .footer-contact, .footer-links, .footer-legal {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  /* Thank You Page */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .thank-you-content h1 {
    font-size: 40px;
  }
  
  .confirmation-message {
    font-size: 20px;
  }
  
  /* Forms */
  .form-placeholder {
    padding: 24px;
  }
  
  /* CTA Buttons */
  .cta-buttons, .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimization */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .page-hero h1 { font-size: 28px; }
  
  .container { padding: 0 16px; }
  
  .hero, .page-hero, .cta-final, .cta-section {
    margin: 20px 8px;
    padding: 40px 16px;
  }
  
  .section { padding: 24px 12px; }
  
  .btn { padding: 12px 24px; font-size: 15px; }
  
  .price { font-size: 28px; }
  
  .mobile-menu { width: 100%; right: -100%; }
  
  .thank-you-content h1 { font-size: 32px; }
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(216, 67, 21, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 167, 38, 0.5); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.guarantee, .stats {
  font-size: 14px;
  color: #B0B0B0;
  text-align: center;
  margin-top: 24px;
  padding: 12px;
  background: rgba(255, 167, 38, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 167, 38, 0.1);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button:focus, a:focus, .cookie-toggle:focus {
  outline: 2px solid #FFA726;
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle, .mobile-menu,
  .cookie-consent, .cookie-modal,
  header, footer { display: none; }
  
  body { background: #FFFFFF; color: #000000; }
  h1, h2, h3, h4, h5, h6 { color: #000000; }
  a { color: #000000; text-decoration: underline; }
}