/* ========================================
   QUICK TRAIL - LUXURY PREMIUM DESIGN
   Sophisticated Culinary Experience Brand
   ======================================== */

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

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

body {
  font-family: 'Didot', 'Garamond', 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #FEFEFE;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === LUXURY PREMIUM TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Didot', 'Bodoni MT', 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A1A1A;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 300;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 400;
}

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

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

a:hover {
  color: #B8954D;
}

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

ul {
  list-style: none;
}

/* === LUXURY CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === PREMIUM BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Didot', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #C9A961;
  background-color: transparent;
  color: #1A1A1A;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background-color: #C9A961;
  color: #FFFFFF;
  border-color: #C9A961;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(201, 169, 97, 0.3);
}

.btn-primary {
  background-color: #C9A961;
  color: #FFFFFF;
  border-color: #C9A961;
}

.btn-primary:hover {
  background-color: #B8954D;
  border-color: #B8954D;
  box-shadow: 0 12px 24px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #C9A961;
  border-color: #C9A961;
}

.btn-secondary:hover {
  background-color: #C9A961;
  color: #FFFFFF;
}

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background-color: #1A1A1A;
  color: #C9A961;
  border: 1px solid #C9A961;
  border-radius: 0;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C9A961;
  color: #1A1A1A;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  color: #C9A961;
  border: 1px solid #C9A961;
  border-radius: 0;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #C9A961;
  color: #1A1A1A;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 40px 40px;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Didot', serif;
  font-size: 20px;
  color: #C9A961;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFFFFF;
  border-bottom-color: #C9A961;
}

/* === HEADER === */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Didot', serif;
  font-size: 14px;
  color: #1A1A1A;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C9A961;
  border-bottom-color: #C9A961;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3D3D 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 30l30-30v60L30 30z" fill="%23C9A961" fill-opacity="0.03"/%3E%3C/svg%3E');
  opacity: 0.5;
}

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

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #C9A961;
  margin-bottom: 40px;
  font-style: italic;
  letter-spacing: 0.02em;
}

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

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 80px 20px 60px;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero .hero-subheadline {
  color: #C9A961;
  font-size: 18px;
  font-style: italic;
}

.breadcrumb {
  font-size: 14px;
  color: #C9A961;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #C9A961;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

.breadcrumb span {
  color: #FFFFFF;
}

.last-updated {
  font-size: 14px;
  color: #999999;
  margin-top: 16px;
  font-style: italic;
}

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

.value-proposition,
.services-overview,
.how-it-works,
.testimonials,
.tours-listing,
.courses-listing,
.brand-story,
.our-values,
.blog-grid,
.contact-options,
.contact-info {
  padding: 80px 20px;
}

.value-proposition {
  background-color: #F9F9F9;
}

.services-overview {
  background-color: #FFFFFF;
}

.how-it-works {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
}

.testimonials {
  background-color: #F5F5F5;
}

.section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 16px;
  color: #1A1A1A;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
  font-style: italic;
}

/* === GRID LAYOUTS (FLEXBOX ONLY) === */
.value-grid,
.services-grid,
.benefits-grid,
.features-grid,
.levels-grid,
.values-grid,
.stats-grid,
.articles-grid,
.options-grid,
.info-cards,
.tours-grid,
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

/* === CARDS === */
.value-card,
.service-card,
.benefit-card,
.feature-card,
.level-card,
.value-card,
.stat-card,
.article-card,
.option-card,
.info-card,
.tour-card,
.course-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border: 1px solid #E8E8E8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.tour-card::before,
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A961, #B8954D);
  transition: width 0.4s ease;
}

.value-card:hover::before,
.service-card:hover::before,
.tour-card:hover::before,
.course-card:hover::before {
  width: 100%;
}

.value-card:hover,
.service-card:hover,
.benefit-card:hover,
.feature-card:hover,
.tour-card:hover,
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: #C9A961;
}

.value-card h3,
.service-card h3,
.benefit-card h3,
.feature-card h3,
.tour-card h3,
.course-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1A1A1A;
  font-weight: 400;
}

.value-card p,
.service-card p,
.benefit-card p,
.feature-card p,
.tour-card p,
.course-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}

/* === PRICE STYLING === */
.price {
  font-family: 'Didot', serif;
  font-size: 32px;
  color: #C9A961;
  margin: 24px 0;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* === TOUR/COURSE HIGHLIGHTS === */
.tour-highlights,
.course-highlights {
  margin: 24px 0;
  padding-left: 0;
}

.tour-highlights li,
.course-highlights li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

.tour-highlights li::before,
.course-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-weight: bold;
  font-size: 16px;
}

/* === STEPS === */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C9A961 0%, #B8954D 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Didot', serif;
  font-size: 32px;
  font-weight: 300;
  box-shadow: 0 8px 16px rgba(201, 169, 97, 0.3);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 40px;
  border-left: 4px solid #C9A961;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.rating {
  color: #C9A961;
  font-size: 20px;
  letter-spacing: 2px;
}

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

.testimonial-author {
  font-family: 'Didot', serif;
  font-size: 14px;
  color: #1A1A1A;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* === CTA BANNER === */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-content h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: #C9A961;
  font-size: 18px;
  margin-bottom: 24px;
}

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

.contact-info-banner {
  margin-top: 32px;
}

.contact-info-banner p,
.contact-email {
  color: #C9A961;
  font-size: 16px;
}

/* === BLOG === */
.blog-featured {
  padding: 60px 20px;
  background-color: #F9F9F9;
}

.featured-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.featured-post h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 14px;
  color: #999999;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.featured-post p {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
}

.article-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #C9A961;
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* === NEWSLETTER === */
.newsletter-signup {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 80px 20px;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  margin-top: 32px;
}

.form-note {
  font-size: 13px;
  color: #999999;
  margin-top: 16px;
}

/* === CONTACT PAGE === */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.info-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #F9F9F9;
  padding: 32px;
  text-align: center;
  border: 1px solid #E8E8E8;
}

.info-card h3 {
  color: #C9A961;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
}

.response-info {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  padding: 24px;
  background-color: #FFF9F0;
  border-left: 4px solid #C9A961;
}

.business-inquiries {
  padding: 80px 20px;
  background-color: #F9F9F9;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
}

/* === STATS === */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
}

.stat-card {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
}

.stat-card h3 {
  font-family: 'Didot', serif;
  font-size: 48px;
  color: #C9A961;
  margin-bottom: 12px;
  font-weight: 300;
}

.stat-card p {
  font-size: 15px;
  color: #555555;
  letter-spacing: 0.05em;
}

/* === THANK YOU PAGE === */
.thank-you-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #C9A961 0%, #B8954D 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

.confirmation-message {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.next-steps {
  padding: 80px 20px;
  background-color: #F9F9F9;
}

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

.suggestion-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 40px;
  text-align: center;
  border: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-support {
  padding: 60px 20px;
  background-color: #FFF9F0;
  text-align: center;
}

/* === LEGAL PAGES === */
.legal-content {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.legal-content h3 {
  text-align: left;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555555;
}

.legal-content a {
  color: #C9A961;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #B8954D;
}

/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  color: #C9A961;
  padding: 80px 20px 40px;
  margin-top: 60px;
  border-top: 1px solid #C9A961;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 calc(25% - 48px);
  min-width: 220px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #999999;
  font-style: italic;
}

footer h4 {
  font-size: 16px;
  color: #C9A961;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

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

footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer nav a {
  font-size: 14px;
  color: #999999;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer nav a:hover {
  color: #C9A961;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  font-size: 13px;
  color: #666666;
  letter-spacing: 0.05em;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid #C9A961;
}

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

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

.cookie-consent-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-consent-text p {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 0;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Didot', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #C9A961;
  background-color: transparent;
  color: #C9A961;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: #C9A961;
  color: #1A1A1A;
}

.cookie-btn-accept {
  background-color: #C9A961;
  color: #1A1A1A;
}

.cookie-btn-accept:hover {
  background-color: #B8954D;
  border-color: #B8954D;
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #C9A961;
  color: #C9A961;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #C9A961;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F9F9F9;
  border-left: 3px solid #C9A961;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1A1A1A;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  color: #555555;
  cursor: pointer;
}

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .value-card,
  .service-card,
  .benefit-card,
  .feature-card,
  .tour-card,
  .course-card,
  .article-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  /* Mobile menu visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Stack cards */
  .value-card,
  .service-card,
  .benefit-card,
  .feature-card,
  .level-card,
  .tour-card,
  .course-card,
  .article-card,
  .stat-card,
  .option-card,
  .info-card,
  .testimonial-card,
  .suggestion-card,
  .step {
    flex: 1 1 100%;
  }
  
  /* Hero CTA buttons */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Footer stacking */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Cookie consent mobile */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Sections padding */
  .section,
  .value-proposition,
  .services-overview,
  .how-it-works,
  .testimonials,
  .tours-listing,
  .courses-listing,
  .cta-banner,
  .cta-section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .page-hero {
    padding: 60px 20px 40px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 13px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
}

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

.value-card,
.service-card,
.tour-card,
.course-card {
  animation: fadeIn 0.6s ease-out;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* === ACCESSIBILITY === */
.btn:focus,
.cookie-btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 2px solid #C9A961;
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid #C9A961;
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}