/* =================================================================
   AnkaraKeşif - Tech Futuristic Design System
   Modern CSS with Flexbox-only Layouts
   ================================================================= */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
}

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

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

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

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #C41E3A;
  text-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

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

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

/* Header */
header {
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(26,26,46,0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid rgba(196, 30, 58, 0.3);
  box-shadow: 0 4px 30px rgba(196, 30, 58, 0.2);
  backdrop-filter: blur(10px);
}

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

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

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

.main-nav a {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.main-nav a:hover {
  color: #ffffff;
  background: rgba(196, 30, 58, 0.1);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #ffffff;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(26,26,46,0.98) 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-left: 2px solid rgba(196, 30, 58, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #C41E3A;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #C41E3A;
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.6);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 8px;
}

.mobile-nav a {
  color: #e0e0e0;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: rgba(196, 30, 58, 0.2);
  border-color: rgba(196, 30, 58, 0.5);
  color: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(196, 30, 58, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(26,26,46,0.9) 0%, rgba(22,33,62,0.9) 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244, 164, 96, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(244, 164, 96, 0.2));
  color: #F4A460;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(196, 30, 58, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.2);
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #F4A460);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6);
  border-color: #F4A460;
}

.btn-secondary {
  background: transparent;
  color: #F4A460;
  border: 2px solid #F4A460;
  box-shadow: 0 4px 20px rgba(244, 164, 96, 0.2);
}

.btn-secondary:hover {
  background: rgba(244, 164, 96, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 164, 96, 0.4);
}

/* Sections */
.section,
.value-proposition,
.featured-destinations,
.services-overview,
.how-it-works,
.testimonials,
.cta-banner,
.featured-attractions,
.attractions-category,
.cta-section,
.tour-packages,
.booking-process,
.planning-guide,
.transportation-guide,
.food-guide,
.itineraries,
.local-tips,
.featured-collection,
.gallery-category,
.photography-tips,
.brand-story,
.mission-vision,
.team,
.achievements,
.approach,
.contact-info,
.contact-options,
.contact-form-section,
.faq-contact,
.trust-indicators,
.legal-content,
.cancellation-policy,
.cookie-settings,
.thank-you-hero,
.next-steps,
.browse-content,
.testimonials-mini,
.home-redirect {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2,
.value-proposition h2,
.featured-destinations h2 {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Proposition */
.value-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: #C41E3A;
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.5));
}

.value-card h3 {
  color: #F4A460;
  margin-bottom: 12px;
}

.value-card p {
  color: #c0c0c0;
  font-size: 15px;
}

/* Trust Badges */
.trust-badges,
.stats-bar {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span,
.stats-bar span {
  background: rgba(196, 30, 58, 0.2);
  color: #F4A460;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(196, 30, 58, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Destinations */
.destinations-grid,
.attractions-grid,
.category-grid,
.services-grid,
.tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.destination-card,
.attraction-card,
.place-card,
.service-card,
.tour-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.7), rgba(22,33,62,0.7));
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.destination-card::after,
.attraction-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C41E3A, #F4A460);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.destination-card:hover::after,
.attraction-card:hover::after {
  transform: scaleX(1);
}

.destination-card:hover,
.attraction-card:hover,
.place-card:hover,
.service-card:hover,
.tour-card:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.destination-card h3,
.attraction-card h3,
.place-card h3 {
  color: #F4A460;
  font-size: 22px;
  margin-bottom: 12px;
}

.destination-card p,
.attraction-card p,
.place-card p {
  color: #c0c0c0;
  font-size: 15px;
}

.attraction-info {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.attraction-info span {
  background: rgba(196, 30, 58, 0.2);
  color: #F4A460;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

/* Link CTA */
.link-cta {
  display: inline-block;
  color: #F4A460;
  font-weight: 700;
  font-size: 16px;
  margin-top: 24px;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.link-cta:hover {
  border-bottom-color: #F4A460;
  transform: translateX(5px);
}

/* Services Overview */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  color: #F4A460;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p {
  color: #c0c0c0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-card .price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 20px;
  text-align: right;
  text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

/* Tour Cards */
.tour-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 320px;
  display: flex;
  flex-direction: column;
}

.tour-details {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.tour-details span {
  background: rgba(196, 30, 58, 0.2);
  color: #F4A460;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.tour-includes {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.tour-includes li {
  color: #c0c0c0;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}

.tour-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A460;
  font-weight: 700;
  font-size: 18px;
}

.tour-price {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.tour-price .price {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.tour-price .note {
  font-size: 13px;
  color: #b0b0b0;
  margin-top: -8px;
}

/* How It Works / Steps */
.steps-timeline,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.step {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.step h3 {
  color: #F4A460;
  margin-bottom: 12px;
}

.step p {
  color: #c0c0c0;
  font-size: 15px;
}

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,240,240,0.95));
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 16px);
  max-width: 550px;
  border: 2px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: rgba(196, 30, 58, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
  border-color: #C41E3A;
}

.testimonial-card .rating {
  color: #F4A460;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(244, 164, 96, 0.3);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.testimonial-author strong {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: #666666;
  font-size: 14px;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #F4A460;
  padding: 16px 32px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 30px;
  display: inline-block;
  margin: 0 auto;
  border: 1px solid rgba(196, 30, 58, 0.2);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(244, 164, 96, 0.2));
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(196, 30, 58, 0.3);
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

.cta-banner h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

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

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

.urgency-text,
.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

/* Page Hero */
.page-hero,
.legal-hero {
  background: linear-gradient(135deg, rgba(26,26,46,0.9), rgba(22,33,62,0.9));
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
  color: #b0b0b0;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.last-updated,
.legal-reference {
  color: #888888;
  font-size: 14px;
  margin-top: 12px;
}

/* Gallery Navigation */
.gallery-navigation {
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(196, 30, 58, 0.2);
  color: #e0e0e0;
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #ffffff;
  border-color: #C41E3A;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

/* Gallery Intro */
.gallery-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.category-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.8;
}

.photo-count {
  display: inline-block;
  background: rgba(196, 30, 58, 0.2);
  color: #F4A460;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  border: 1px solid rgba(196, 30, 58, 0.3);
}

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

.tip-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 380px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.tip-card:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.tip-card h3 {
  color: #F4A460;
  margin-bottom: 12px;
}

.tip-card p {
  color: #c0c0c0;
  font-size: 15px;
}

/* Stats */
.team-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.team-stats span {
  background: rgba(196, 30, 58, 0.2);
  color: #F4A460;
  padding: 12px 28px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(196, 30, 58, 0.3);
}

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

.stat-card {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F4A460;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(244, 164, 96, 0.3);
}

.stat-label {
  color: #b0b0b0;
  font-size: 16px;
  font-weight: 600;
}

/* Contact Options */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.method-card:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.5));
}

.method-card h3 {
  color: #F4A460;
  margin-bottom: 12px;
}

.method-card p {
  color: #c0c0c0;
  font-size: 15px;
  margin-bottom: 8px;
}

/* Contact Information */
.contact-information {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
}

.contact-information h3 {
  text-align: center;
  margin-bottom: 32px;
}

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

.info-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 24px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
}

.info-card h4 {
  color: #F4A460;
  font-size: 18px;
  margin-bottom: 12px;
}

.info-card p {
  color: #c0c0c0;
  font-size: 15px;
  margin-bottom: 8px;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #C41E3A;
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

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

.faq-item p {
  color: #c0c0c0;
  font-size: 15px;
  line-height: 1.8;
}

/* Trust Grid */
.trust-grid,
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.trust-card,
.approach-card {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.trust-card:hover,
.approach-card:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.trust-card h3,
.approach-card h3 {
  color: #F4A460;
  margin-bottom: 12px;
}

.trust-card p,
.approach-card p {
  color: #c0c0c0;
  font-size: 15px;
}

/* Legal Content */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26,26,46,0.6);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
}

.content-wrapper h2 {
  color: #F4A460;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(196, 30, 58, 0.2);
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p,
.content-wrapper li {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper strong {
  color: #F4A460;
  font-weight: 700;
}

/* Cookie Settings */
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-category {
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: #C41E3A;
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

.cookie-category h3 {
  color: #F4A460;
  font-size: 20px;
  margin-bottom: 12px;
}

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

.cookie-category .status {
  display: inline-block;
  background: rgba(196, 30, 58, 0.2);
  color: #F4A460;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

/* Content Blocks */
.content-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.info-block,
.dish-card,
.itinerary-card {
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
}

.info-block:hover,
.dish-card:hover,
.itinerary-card:hover {
  border-color: #C41E3A;
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

.info-block h3,
.dish-card h3,
.itinerary-card h3 {
  color: #F4A460;
  font-size: 22px;
  margin-bottom: 16px;
}

.info-block p,
.dish-card p,
.itinerary-card p {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.itinerary-card p strong {
  color: #F4A460;
  font-weight: 700;
}

/* Local Tips */
.tips-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.tips-list li {
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  padding: 20px 24px 20px 56px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  color: #c0c0c0;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.tips-list li::before {
  content: '→';
  position: absolute;
  left: 24px;
  color: #F4A460;
  font-weight: 700;
  font-size: 20px;
}

.tips-list li:hover {
  border-color: #C41E3A;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.2);
  transform: translateX(5px);
}

/* Thank You Page */
.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffffff;
  margin: 0 auto 32px;
  box-shadow: 0 8px 40px rgba(196, 30, 58, 0.4);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.confirmation-message {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 16px;
}

.response-badge {
  display: inline-block;
  background: rgba(196, 30, 58, 0.2);
  color: #F4A460;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  border: 1px solid rgba(196, 30, 58, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.content-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  max-width: 320px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(26,26,46,0.7), rgba(22,33,62,0.7));
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.content-card:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

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

.content-card p {
  color: #c0c0c0;
  font-size: 15px;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author strong {
  color: #1a1a1a;
  font-weight: 700;
}

.author span {
  color: #666666;
  font-size: 14px;
}

/* Policy Details */
.policy-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.policy-item {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.4s ease;
}

.policy-item:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.policy-item h3 {
  color: #F4A460;
  font-size: 22px;
  margin-bottom: 12px;
}

.policy-item p {
  color: #c0c0c0;
  font-size: 16px;
}

.note {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 20px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  color: #c0c0c0;
  font-size: 15px;
  text-align: center;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-item {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: #C41E3A;
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
}

.contact-item h3 {
  color: #F4A460;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-item p {
  color: #c0c0c0;
  font-size: 16px;
  line-height: 1.8;
}

/* Story Content */
.story-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(26,26,46,0.6);
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
}

.story-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #c0c0c0;
  margin-bottom: 24px;
}

/* Rights List */
.rights-list {
  list-style: none;
  max-width: 900px;
  margin: 32px auto 0;
  padding: 0;
}

.rights-list li {
  background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(22,33,62,0.6));
  padding: 16px 24px 16px 56px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  color: #c0c0c0;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.rights-list li::before {
  content: '✓';
  position: absolute;
  left: 24px;
  color: #F4A460;
  font-weight: 700;
  font-size: 18px;
}

.rights-list li:hover {
  border-color: #C41E3A;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.2);
}

/* Cancellation Policy */
.cancellation-policy {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  text-align: center;
}

.cancellation-policy p {
  color: #c0c0c0;
  font-size: 15px;
  line-height: 1.8;
}

.cancellation-policy strong {
  color: #F4A460;
}

/* Form Note */
.form-note {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 24px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  text-align: center;
}

.form-note p {
  color: #c0c0c0;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Footer */
footer {
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(26,26,46,0.95) 100%);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 2px solid rgba(196, 30, 58, 0.3);
}

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

.footer-brand {
  flex: 1 1 280px;
  max-width: 350px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.5));
}

.footer-brand p {
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.8;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  color: #F4A460;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: #b0b0b0;
  font-size: 15px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #F4A460;
  transform: translateX(5px);
}

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

.footer-legal {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(196, 30, 58, 0.2);
  border-bottom: 1px solid rgba(196, 30, 58, 0.2);
  margin-bottom: 24px;
}

.footer-legal a {
  color: #888888;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #F4A460;
}

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

.footer-copyright p {
  color: #666666;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.98) 0%, rgba(26,26,46,0.98) 100%);
  padding: 24px 20px;
  z-index: 999;
  border-top: 2px solid rgba(196, 30, 58, 0.3);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #C41E3A, #8B1528);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(196, 30, 58, 0.6);
}

.cookie-btn-reject {
  background: transparent;
  color: #888888;
  border-color: #444444;
}

.cookie-btn-reject:hover {
  color: #ffffff;
  border-color: #666666;
}

.cookie-btn-settings {
  background: transparent;
  color: #F4A460;
  border-color: #F4A460;
}

.cookie-btn-settings:hover {
  background: rgba(244, 164, 96, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26,26,46,0.98), rgba(22,33,62,0.98));
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid rgba(196, 30, 58, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-preference {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(196, 30, 58, 0.2);
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 18px; }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px 50px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  .section,
  .value-proposition,
  .featured-destinations {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .destination-card,
  .attraction-card,
  .place-card,
  .service-card,
  .tour-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Steps */
  .steps-timeline,
  .steps-grid {
    flex-direction: column;
  }
  
  .step {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact {
    max-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .hero h1 { font-size: 36px; }
  
  /* Buttons */
  .btn {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  /* Cards */
  .value-card,
  .destination-card,
  .service-card {
    padding: 24px 20px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 90%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 28px 20px;
  }
}

/* Smooth Scrolling & Animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  .value-card,
  .destination-card,
  .service-card,
  .testimonial-card,
  .step {
    animation: fadeInUp 0.6s ease-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* Focus Styles for Accessibility */
*:focus-visible {
  outline: 3px solid #F4A460;
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 3px solid #F4A460;
  outline-offset: 3px;
}

/* Selection Styles */
::selection {
  background: rgba(196, 30, 58, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(196, 30, 58, 0.3);
  color: #ffffff;
}