/* ============================================
   AZURE TROVE - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E8E8E8;
  background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - INDUSTRIAL MODERN
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D67D2E 0%, #F4A261 100%);
}

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

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

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

strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

/* ============================================
   HEADER - INDUSTRIAL STEEL AESTHETIC
   ============================================ */

header {
  background: linear-gradient(180deg, #0A0A0A 0%, #1F1F1F 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(214, 125, 46, 0.4));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* ============================================
   NAVIGATION - METAL INDUSTRIAL STYLE
   ============================================ */

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

.main-nav a {
  color: #E8E8E8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D67D2E;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #D67D2E;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - INDUSTRIAL SLIDE
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #D67D2E 0%, #F4A261 100%);
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(214, 125, 46, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(214, 125, 46, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 3px solid #D67D2E;
}

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

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

.mobile-menu-close:hover {
  background: #D67D2E;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E8E8E8;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mobile-nav a:hover {
  color: #D67D2E;
  border-left-color: #D67D2E;
  padding-left: 24px;
  background: rgba(214, 125, 46, 0.1);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================
   HERO SECTION - INDUSTRIAL POWER
   ============================================ */

.hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 50%, #2D2D2D 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #D67D2E;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(214, 125, 46, 0.03) 10px,
    rgba(214, 125, 46, 0.03) 20px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 40px;
  color: #C8C8C8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

/* ============================================
   BUTTONS - INDUSTRIAL METAL
   ============================================ */

.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D67D2E 0%, #F4A261 100%);
  color: #FFFFFF;
  border-color: #D67D2E;
  box-shadow: 0 4px 12px rgba(214, 125, 46, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4A261 0%, #D67D2E 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(214, 125, 46, 0.6);
}

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

.btn-secondary:hover {
  background: #D67D2E;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(214, 125, 46, 0.4);
}

.btn {
  background: linear-gradient(135deg, #3D3D3D 0%, #5A5A5A 100%);
  color: #FFFFFF;
  border-color: #5A5A5A;
}

.btn:hover {
  background: linear-gradient(135deg, #5A5A5A 0%, #3D3D3D 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 90, 90, 0.4);
}

/* ============================================
   SECTIONS - INDUSTRIAL SPACING
   ============================================ */

.section,
.introduction,
.featured-destinations,
.benefits,
.testimonials,
.cta-banner,
.destinations-list,
.destinations-grid,
.featured-packages,
.travel-tips,
.seasonal-guide,
.practical-info,
.faq,
.our-story,
.why-choose-us,
.achievements,
.contact-methods,
.contact-form-section,
.office-location,
.faq-contact,
.page-hero,
.cta-section,
.thank-you-hero,
.next-steps,
.continue-exploring,
.social-connect {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.page-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #D67D2E;
}

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

.page-hero p {
  font-size: 18px;
  color: #C8C8C8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.introduction {
  background: #1A1A1A;
  border-left: 4px solid #D67D2E;
  padding: 40px 20px;
}

.introduction h2 {
  text-align: center;
  margin-bottom: 24px;
}

.introduction p {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

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

.badge {
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 100%);
  padding: 16px 24px;
  border-radius: 4px;
  font-weight: 700;
  color: #D67D2E;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(214, 125, 46, 0.4);
}

/* ============================================
   CARDS - INDUSTRIAL DESIGN
   ============================================ */

.destination-grid,
.destination-cards,
.packages-grid,
.benefits-grid,
.reasons-grid,
.stats-grid,
.methods-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.destination-card,
.package-card,
.benefit,
.reason,
.stat,
.method-card,
.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3D3D3D;
  border-left: 4px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.destination-card:hover,
.package-card:hover,
.benefit:hover,
.reason:hover,
.method-card:hover,
.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(214, 125, 46, 0.3);
  border-left-color: #F4A261;
}

.destination-card h3,
.package-card h3,
.benefit h3,
.reason h3,
.method-card h3,
.link-card h3 {
  color: #D67D2E;
  margin-bottom: 16px;
  font-size: 22px;
}

.destination-card p,
.package-card p,
.benefit p,
.reason p,
.method-card p,
.link-card p {
  color: #C8C8C8;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #D67D2E;
  margin: 20px 0;
  display: block;
}

/* ============================================
   DESTINATION LIST ITEMS
   ============================================ */

.destination-item {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.destination-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(214, 125, 46, 0.3);
}

.destination-item h2 {
  color: #D67D2E;
  font-size: 28px;
  margin-bottom: 16px;
}

/* ============================================
   TESTIMONIALS - URBAN STYLE
   ============================================ */

.testimonials {
  background: #1A1A1A;
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #0A5F8C;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================
   CTA SECTIONS - INDUSTRIAL IMPACT
   ============================================ */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #D67D2E 0%, #F4A261 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(214, 125, 46, 0.4);
}

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

.cta-banner h2::after,
.cta-section h2::after {
  background: #FFFFFF;
  margin: 16px auto 0;
  left: 50%;
  transform: translateX(-50%);
}

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

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background: #FFFFFF;
  color: #D67D2E;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

/* ============================================
   TIPS & INFO GRIDS
   ============================================ */

.tips-grid,
.seasons-grid,
.info-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.tip-card,
.season-card,
.info-item,
.step-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 28px;
  border-radius: 4px;
  border-top: 3px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tip-card:hover,
.season-card:hover,
.info-item:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(214, 125, 46, 0.3);
}

.tip-card h3,
.season-card h3,
.info-item h3,
.step-card h3 {
  color: #D67D2E;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 4px;
  border-left: 4px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 16px rgba(214, 125, 46, 0.3);
}

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

.faq-item p {
  color: #C8C8C8;
}

/* ============================================
   VALUES & STATS
   ============================================ */

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 100%);
  padding: 28px;
  border-radius: 4px;
  border: 2px solid #D67D2E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

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

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  color: #D67D2E;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat p {
  color: #C8C8C8;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  background: #1A1A1A;
  padding: 40px 20px;
}

.legal-content h2 {
  color: #D67D2E;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #F4A261;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  color: #C8C8C8;
  margin-bottom: 8px;
  line-height: 1.7;
}

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

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

.contact-box {
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 100%);
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #D67D2E;
  margin-top: 32px;
}

.contact-box h3 {
  color: #D67D2E;
  margin-bottom: 12px;
}

/* ============================================
   FORM SECTION
   ============================================ */

.form-note {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #D67D2E;
  margin-top: 32px;
}

.form-note p {
  color: #C8C8C8;
  margin-bottom: 16px;
}

.form-note a {
  color: #D67D2E;
  font-weight: 700;
  text-decoration: underline;
}

.form-note a:hover {
  color: #F4A261;
}

.form-note ul {
  margin-left: 24px;
  margin-top: 16px;
}

.form-note li {
  color: #C8C8C8;
  margin-bottom: 8px;
}

/* ============================================
   LOCATION INFO
   ============================================ */

.location-info {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #D67D2E;
  margin-top: 24px;
}

.location-info h3 {
  color: #D67D2E;
  margin-bottom: 16px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #0A5F8C 0%, #084968 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2B8A3E 0%, #37B24D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(43, 138, 62, 0.4);
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

.thank-you-hero p {
  color: #E8E8E8;
}

.cta-box {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 40px;
  border-radius: 4px;
  text-align: center;
  border: 2px solid #D67D2E;
  margin-top: 32px;
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 24px;
}

.social-note {
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 100%);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  margin-top: 24px;
}

/* ============================================
   FOOTER - INDUSTRIAL BASE
   ============================================ */

footer {
  background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
  color: #C8C8C8;
  padding: 60px 20px 32px;
  border-top: 4px solid #D67D2E;
}

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

.footer-brand,
.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 16px;
  filter: drop-shadow(2px 2px 4px rgba(214, 125, 46, 0.3));
}

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

footer h4 {
  color: #D67D2E;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

footer a {
  display: block;
  color: #A8A8A8;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  padding-left: 0;
}

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

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

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #2D2D2D;
  color: #888888;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  z-index: 1998;
  border-top: 3px solid #D67D2E;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-consent-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
}

.cookie-accept {
  background: linear-gradient(135deg, #D67D2E 0%, #F4A261 100%);
  color: #FFFFFF;
  border-color: #D67D2E;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #F4A261 0%, #D67D2E 100%);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #D67D2E;
  border-color: #D67D2E;
}

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

.cookie-settings {
  background: linear-gradient(135deg, #3D3D3D 0%, #5A5A5A 100%);
  color: #FFFFFF;
  border-color: #5A5A5A;
}

.cookie-settings:hover {
  background: linear-gradient(135deg, #5A5A5A 0%, #3D3D3D 100%);
  transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 40px;
  border-radius: 4px;
  border: 3px solid #D67D2E;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(214, 125, 46, 0.4);
}

.cookie-modal-content h2 {
  color: #D67D2E;
  margin-bottom: 24px;
}

.cookie-category {
  background: #0A0A0A;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 3px solid #D67D2E;
}

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

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .destination-grid,
  .destination-cards,
  .packages-grid,
  .benefits-grid,
  .reasons-grid,
  .stats-grid,
  .methods-grid,
  .links-grid,
  .tips-grid,
  .seasons-grid,
  .info-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .destination-card,
  .package-card,
  .benefit,
  .reason,
  .stat,
  .method-card,
  .link-card,
  .tip-card,
  .season-card,
  .info-item,
  .step-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .page-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

.hidden {
  display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

button:focus,
a:focus {
  outline: 2px solid #D67D2E;
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}