/* ===================================
   VECTOR SCROLL - MINIMALIST CSS
   Modern, Clean, Professional Design
   =================================== */

/* 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', sans-serif;
  color: #2c3e50;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #7a1225;
}

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

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

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

header img {
  height: 40px;
  width: auto;
}

header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

header nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #A01830;
}

.cta-button {
  background-color: #A01830;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #7a1225;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(160, 24, 48, 0.2);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #f8f8f8;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1200;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #2c3e50;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #A01830;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2c3e50;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #A01830;
  padding-left: 8px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero .container {
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
}

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

.btn-primary {
  background-color: #A01830;
  color: #ffffff !important;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #A01830;
}

.btn-primary:hover {
  background-color: #7a1225;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(160, 24, 48, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: #A01830;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #A01830;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #A01830;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(160, 24, 48, 0.3);
}

.btn {
  background-color: #ffffff;
  color: #A01830;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #A01830;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #A01830;
  color: #ffffff;
}

.trust-badge {
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}

/* PAGE HERO */
.page-hero {
  background-color: #f8f9fa;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}

.breadcrumbs a {
  color: #A01830;
}

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

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

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 20px;
}

.feature {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  max-width: 400px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: #A01830;
}

.feature h3 {
  color: #1a1a1a;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

/* TOUR CARDS */
.tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.tour-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.tour-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: #A01830;
}

.tour-card h2,
.tour-card h3 {
  color: #1a1a1a;
  font-size: 22px;
  margin-bottom: 12px;
}

.tour-card p {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

.tour-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #A01830;
  margin: 12px 0;
}

.tour-card .details {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.tour-card.premium {
  border: 2px solid #D4A800;
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

/* DESTINATIONS GRID */
.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.destination-item {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

.destination-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: #A01830;
}

.destination-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.destination-item p {
  font-size: 14px;
  color: #666;
}

/* DESTINATION CARDS */
.destination-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.destination-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: #A01830;
}

.destination-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  text-align: left;
}

.destination-card .badge {
  display: inline-block;
  background-color: #D4A800;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin: 8px 0;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

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

.testimonial-card {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

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

.testimonial-card .author {
  color: #1a1a1a;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
}

.testimonial-card .rating {
  color: #D4A800;
  font-size: 18px;
  font-style: normal;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 16px;
}

/* STATS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat h3 {
  font-size: 40px;
  color: #A01830;
  margin-bottom: 8px;
}

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

/* VALUES */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.value h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #A01830;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.milestone h3 {
  font-size: 32px;
  color: #A01830;
  margin-bottom: 8px;
}

.milestone p {
  font-size: 15px;
  color: #4a4a4a;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
}

.cta-banner h2,
.cta-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 32px;
}

.special-offer {
  font-size: 16px;
  color: #D4A800;
  font-weight: 600;
  margin-top: 24px;
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  text-align: center;
}

.contact-method h2 {
  font-size: 22px;
  margin-bottom: 16px;
  text-align: center;
}

.contact-method p {
  font-size: 15px;
  line-height: 1.7;
}

.form-notice {
  background-color: #fff9e6;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #D4A800;
  max-width: 600px;
  margin: 0 auto;
}

.form-notice p {
  color: #2c3e50;
  margin-bottom: 8px;
}

/* MEETING POINTS */
.meeting-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.meeting-point {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

.meeting-point h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #A01830;
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

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

/* GALLERY */
.highlights-grid,
.moments-grid,
.seasons-grid,
.architecture-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.highlight-section,
.moment,
.season,
.arch-style {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.highlight-section h3,
.moment h3,
.season h3,
.arch-style h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #A01830;
}

/* TIPS */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tip {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
}

.tip h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #A01830;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
  color: #A01830;
}

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

.last-updated {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 32px;
  text-align: center;
}

/* THANK YOU PAGE */
.thank-you-page {
  padding: 60px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto 48px;
}

.icon-check {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.thank-you-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 24px;
}

.next-steps {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.step {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  text-align: left;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #A01830;
  text-align: left;
}

.explore-more {
  margin-bottom: 40px;
}

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

.suggestion-link {
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  display: inline-block;
}

.suggestion-link:hover {
  border-color: #A01830;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.contact-reminder {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-reminder h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: center;
}

/* GUARANTEES */
.guarantees-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.guarantees-list p {
  font-size: 16px;
  padding: 16px;
  background-color: #ffffff;
  margin-bottom: 12px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

/* CERTIFICATIONS */
.cert-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.cert-list p {
  font-size: 16px;
  padding: 16px;
  background-color: #ffffff;
  margin-bottom: 12px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

/* BOOKING OPTIONS */
.options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.option {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
}

.option h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #A01830;
  text-align: center;
}

.highlight {
  color: #D4A800;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

.confirmation-note {
  text-align: center;
  font-size: 16px;
  color: #4a4a4a;
  font-style: italic;
}

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

.contact-info {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
}

.contact-info h3 {
  margin-bottom: 16px;
  text-align: center;
}

/* SOCIAL GALLERY */
.social-gallery {
  background-color: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-column img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #ffffff;
}

.copyright {
  text-align: center;
  color: #888;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

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

.cookie-text p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 8px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background-color: #A01830;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #7a1225;
}

.cookie-reject {
  background-color: #666;
  color: #ffffff;
}

.cookie-reject:hover {
  background-color: #555;
}

.cookie-settings {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #666;
}

.cookie-settings:hover {
  border-color: #ffffff;
}

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

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #666;
  padding: 8px;
}

.modal-close:hover {
  color: #A01830;
}

.cookie-category {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #A01830;
}

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

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

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .features-grid,
  .tours-grid,
  .destinations-grid {
    gap: 20px;
  }
  
  .feature,
  .tour-card,
  .destination-item {
    flex: 1 1 100%;
  }
  
  .footer-columns {
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .testimonial-card,
  .value,
  .destination-card {
    flex: 1 1 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .legal-content {
    padding: 24px;
  }
  
  header .container {
    justify-content: center;
  }
  
  header .cta-button {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .modal-content {
    padding: 24px;
  }
}

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

.feature,
.tour-card,
.testimonial-card {
  animation: fadeIn 0.5s ease;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}