/* ==========================================
   SPARKLICITY - TECH FUTURISTIC DESIGN
   Modern, sleek, futuristic aesthetic
   ========================================== */

/* CSS RESET & BASE */
* {
  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: #E0E0E0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

/* 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(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #00FFF7;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #D94A2B 0%, #A02410 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(217, 74, 43, 0.4), 0 0 40px rgba(217, 74, 43, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(217, 74, 43, 0.6), 0 0 60px rgba(217, 74, 43, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a3a4d 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(44, 95, 124, 0.4), 0 0 40px rgba(44, 95, 124, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(44, 95, 124, 0.6), 0 0 60px rgba(44, 95, 124, 0.4);
  color: #FFFFFF;
}

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF 0%, #00FFF7 100%);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

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

.header-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #D94A2B 0%, #A02410 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(217, 74, 43, 0.4), 0 0 40px rgba(217, 74, 43, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(217, 74, 43, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 217, 255, 0.2);
  transition: right 0.4s ease;
  border-left: 2px solid rgba(0, 217, 255, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(0, 217, 255, 0.5);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(0, 217, 255, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  border-left-color: #00D9FF;
  background: rgba(0, 217, 255, 0.1);
  transform: translateX(5px);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(217, 74, 43, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #B0B0B0;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badge {
  display: inline-block;
  background: rgba(0, 217, 255, 0.1);
  color: #00D9FF;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(0, 217, 255, 0.3);
  animation: fadeInUp 0.8s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.value-grid,
.tour-grid,
.services-grid,
.testimonial-grid,
.content-grid,
.approach-grid,
.benefits-grid,
.tiers-grid,
.packages-grid,
.contact-grid,
.moments-grid,
.suggestions-grid,
.steps-grid,
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* CARDS */
.value-card,
.tour-card,
.service-item,
.testimonial-card,
.benefit-card,
.tier-card,
.package-card,
.contact-option,
.moment-item,
.suggestion-item,
.step-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  background: rgba(26, 31, 58, 0.6);
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.value-card:hover,
.tour-card:hover,
.service-item:hover,
.benefit-card:hover,
.tier-card:hover,
.package-card:hover,
.contact-option:hover,
.moment-item:hover,
.suggestion-item:hover {
  transform: translateY(-8px);
  border-color: #00D9FF;
  box-shadow: 0 8px 40px rgba(0, 217, 255, 0.3), 0 0 60px rgba(0, 217, 255, 0.2);
  background: rgba(26, 31, 58, 0.8);
}

.value-card h3,
.tour-card h3,
.service-item h3,
.benefit-card h3,
.tier-card h3,
.package-card h3 {
  color: #00D9FF;
  margin-bottom: 12px;
  font-size: 22px;
}

/* TOUR CARDS */
.tour-price,
.service-price,
.tier-price,
.package-price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #F7C948;
  margin: 16px 0;
  text-shadow: 0 0 20px rgba(247, 201, 72, 0.5);
}

.tour-duration {
  display: inline-block;
  background: rgba(0, 217, 255, 0.2);
  color: #00D9FF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #F7C948;
  margin-top: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: rgba(26, 31, 58, 0.8);
  border-left: 4px solid #00D9FF;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  color: #00D9FF;
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
  margin-top: 16px;
}

.rating {
  color: #F7C948;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(247, 201, 72, 0.5);
}

/* MEMBERSHIP TIER FEATURED */
.tier-card.featured {
  border-color: #D94A2B;
  background: rgba(217, 74, 43, 0.1);
  transform: scale(1.05);
}

.tier-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #D94A2B 0%, #A02410 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(217, 74, 43, 0.4);
}

/* LISTS */
.benefit-list,
.inclusion-list,
.included-list {
  list-style: none;
  margin: 32px 0;
}

.benefit-list li,
.inclusion-list li,
.included-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: #E0E0E0;
}

.benefit-list li::before,
.inclusion-list li::before,
.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: 700;
  font-size: 18px;
}

/* TIMELINE */
.timeline {
  margin: 32px 0;
}

.timeline-item {
  padding: 16px 0 16px 40px;
  position: relative;
  border-left: 2px solid rgba(0, 217, 255, 0.3);
  margin-bottom: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: #00D9FF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.timeline-item strong {
  color: #F7C948;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 calc(25% - 20px);
  min-width: 150px;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(0, 217, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
}

.value-item h3 {
  font-size: 18px;
  color: #00D9FF;
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, rgba(217, 74, 43, 0.1) 0%, rgba(160, 36, 16, 0.1) 100%);
  border: 2px solid rgba(217, 74, 43, 0.3);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
}

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

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
}

.contact-info strong {
  color: #00D9FF;
  font-weight: 600;
}

/* GALLERY SECTIONS */
.gallery-section {
  margin-bottom: 48px;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border-left: 4px solid #00D9FF;
  border-radius: 12px;
}

.gallery-section h3 {
  color: #00D9FF;
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 16px;
  padding: 48px;
  margin: 40px 0;
}

.content-wrapper h2 {
  text-align: left;
  font-size: 28px;
  margin: 32px 0 16px;
  color: #00D9FF;
}

.content-wrapper h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: #FFFFFF;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul {
  margin: 16px 0;
  padding-left: 20px;
}

.content-wrapper ul li {
  margin-bottom: 12px;
  padding-left: 12px;
  position: relative;
  line-height: 1.6;
}

.content-wrapper ul li::before {
  content: '▸';
  position: absolute;
  left: -12px;
  color: #00D9FF;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 120px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00D9FF 0%, #00FFF7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #FFFFFF;
  margin: 0 auto 32px;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
  animation: scaleIn 0.6s ease;
}

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

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  padding: 60px 20px 32px;
  border-top: 2px solid rgba(0, 217, 255, 0.2);
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.footer-col h4 {
  color: #00D9FF;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: #B0B0B0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00D9FF;
  padding-left: 8px;
}

.footer-col p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  color: #00D9FF;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(0, 217, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 9999;
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 -4px 30px rgba(0, 217, 255, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #00D9FF 0%, #00FFF7 100%);
  color: #0a0e27;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 217, 255, 0.5);
}

.cookie-reject {
  background: rgba(128, 128, 128, 0.2);
  color: #FFFFFF;
  border: 1px solid rgba(128, 128, 128, 0.3);
}

.cookie-reject:hover {
  background: rgba(128, 128, 128, 0.3);
}

.cookie-settings {
  background: transparent;
  color: #00D9FF;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.cookie-settings:hover {
  background: rgba(0, 217, 255, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-content h3 {
  color: #00D9FF;
  margin-bottom: 24px;
  font-size: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.cookie-category h4 {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: rgba(128, 128, 128, 0.3);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #00D9FF 0%, #00FFF7 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #00D9FF;
  transform: rotate(90deg);
}

/* UTILITY CLASSES */
.section-intro,
.intro-text {
  text-align: center;
  font-size: 18px;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.pricing-highlight,
.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #F7C948;
  text-align: center;
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(247, 201, 72, 0.5);
}

.highlight {
  color: #00D9FF;
  font-weight: 600;
}

.last-updated {
  color: #808080;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop nav */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Section spacing */
  section {
    margin-bottom: 40px;
    padding: 32px 20px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards - single column on mobile */
  .value-card,
  .tour-card,
  .service-item,
  .testimonial-card,
  .benefit-card,
  .tier-card,
  .package-card,
  .contact-option,
  .moment-item,
  .suggestion-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Legal content */
  .legal-content {
    padding: 32px 20px;
  }
  
  /* CTA sections */
  .cta-section {
    padding: 40px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Values grid */
  .value-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  /* Mobile menu adjustments */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Values grid - single column */
  .value-item {
    flex: 1 1 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  section {
    page-break-inside: avoid;
  }
}