/* 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: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Geometric Typography - Angular & Structured */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

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

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

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

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

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

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #C8986B;
}

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

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

/* Geometric Header - Sharp Angular Design */
header {
  background: linear-gradient(135deg, #1B4B6B 0%, #2C5F8D 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(27, 75, 107, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 30px;
}

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

.logo {
  height: 50px;
  width: auto;
}

/* Main Navigation - Structured Grid */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

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

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

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

/* Mobile Menu Toggle - Geometric Shape */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1B4B6B;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.mobile-menu-toggle:hover {
  background: #C8986B;
  transform: rotate(45deg);
}

/* Mobile Menu - Slide-in Panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1B4B6B 0%, #2C5F8D 100%);
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-left: 4px solid #C8986B;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #C8986B;
  padding-left: 30px;
}

/* Hero Section - Angular Geometric Design */
.hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #D4E5EE 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(27, 75, 107, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero h1 {
  color: #1B4B6B;
  max-width: 800px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 24px;
  color: #2C5F8D;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-description {
  font-size: 18px;
  color: #5A7C99;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* CTA Buttons - Geometric Sharp Design */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

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

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

.btn-primary:hover {
  background: #2C5F8D;
  border-color: #2C5F8D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 75, 107, 0.3);
}

.btn-secondary {
  background: #C8986B;
  color: #FFFFFF;
  border-color: #C8986B;
}

.btn-secondary:hover {
  background: #D4A77C;
  border-color: #D4A77C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 152, 107, 0.3);
}

.btn-link {
  color: #1B4B6B;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(8px);
}

/* Trust Badge - Structured Layout */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #FFFFFF;
  border: 2px solid #1B4B6B;
  font-weight: 600;
  color: #1B4B6B;
  font-size: 14px;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
  flex-wrap: wrap;
  justify-content: center;
}

/* Section Spacing - Geometric Grid */
.section, section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

/* Tour Grid - Structured Flexbox Layout */
.tour-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.tour-card, .card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFFFF;
  border: 2px solid #E8F1F5;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  margin-bottom: 20px;
}

.tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #C8986B;
  transition: height 0.3s ease;
}

.tour-card:hover::before {
  height: 100%;
}

.tour-card:hover {
  border-color: #1B4B6B;
  box-shadow: 0 8px 24px rgba(27, 75, 107, 0.15);
  transform: translateY(-4px);
}

.tour-card h3, .tour-card h2 {
  color: #1B4B6B;
  margin-bottom: 16px;
}

.tour-card p {
  color: #5A7C99;
  margin-bottom: 16px;
}

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

.tours-count {
  font-size: 14px;
  color: #5A7C99;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Benefits Grid - Geometric Structure */
.benefits {
  background: #F8FBFD;
  position: relative;
}

.benefits-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit-item, .feature-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background: #FFFFFF;
  border: 2px solid #E8F1F5;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.benefit-item:hover {
  border-color: #1B4B6B;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(27, 75, 107, 0.15);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.benefit-item h3 {
  color: #1B4B6B;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #5A7C99;
  font-size: 14px;
  line-height: 1.6;
}

/* Destination Grid - Structured Layout */
.destinations {
  background: #E8F1F5;
}

.destination-grid, .region-grid, .highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.destination-card, .region-item, .highlight-item, .destination-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #D4E5EE;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  position: relative;
}

.destination-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #C8986B;
  transition: width 0.3s ease;
}

.destination-card:hover::after {
  width: 100%;
}

.destination-card:hover {
  border-color: #1B4B6B;
  box-shadow: 0 8px 24px rgba(27, 75, 107, 0.15);
}

.destination-card h3 {
  color: #1B4B6B;
  margin-bottom: 16px;
}

.destination-card p {
  color: #5A7C99;
  margin-bottom: 20px;
}

/* Testimonials Section - Geometric Cards */
.testimonials {
  background: #F8FBFD;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #C8986B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: #E8F1F5;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1B4B6B;
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-card .rating {
  color: #C8986B;
  font-size: 18px;
  margin-bottom: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 75, 107, 0.15);
}

/* CTA Banner - Angular Design */
.cta-banner, .booking-cta, .contact-cta {
  background: linear-gradient(135deg, #1B4B6B 0%, #2C5F8D 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(25deg);
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* Page Hero - Geometric Header */
.page-hero {
  background: linear-gradient(135deg, #E8F1F5 0%, #D4E5EE 100%);
  padding: 80px 20px 60px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-hero h1 {
  color: #1B4B6B;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: #5A7C99;
  max-width: 700px;
  margin: 0 auto 16px;
}

/* Text-Image Section - Aligned Flexbox */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}

/* Team Grid - Structured Cards */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.team-member {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  text-align: center;
  border: 2px solid #E8F1F5;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.team-member:hover {
  border-color: #1B4B6B;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 75, 107, 0.15);
}

.team-member h3 {
  color: #1B4B6B;
  margin-bottom: 8px;
}

.team-member .position {
  color: #C8986B;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Legal Pages - Clean Structure */
.legal-page {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #1B4B6B;
  margin-bottom: 32px;
  border-bottom: 4px solid #C8986B;
  padding-bottom: 16px;
}

.legal-page h2 {
  color: #1B4B6B;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #C8986B;
  padding-left: 16px;
}

.legal-page h3 {
  color: #2C5F8D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page p, .legal-page li {
  color: #5A7C99;
  line-height: 1.8;
}

.last-updated {
  font-style: italic;
  color: #7A9AB8;
  margin-bottom: 32px;
}

/* Contact Page Elements */
.contact-grid, .contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.contact-option {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #F8FBFD;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #E8F1F5;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.contact-option:hover {
  border-color: #1B4B6B;
  box-shadow: 0 8px 24px rgba(27, 75, 107, 0.15);
}

.contact-option img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.contact-option h3 {
  color: #1B4B6B;
  margin-bottom: 16px;
}

.contact-option p {
  color: #5A7C99;
  margin-bottom: 12px;
}

/* Form Styling */
.form-note {
  background: #F8FBFD;
  padding: 24px;
  border-left: 4px solid #C8986B;
  margin-top: 32px;
}

.form-note p {
  color: #5A7C99;
  margin-bottom: 12px;
}

/* FAQ Section */
.faq-item {
  background: #FFFFFF;
  padding: 24px;
  margin-bottom: 16px;
  border: 2px solid #E8F1F5;
  border-left: 4px solid #C8986B;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.faq-item:hover {
  border-color: #1B4B6B;
  box-shadow: 0 4px 12px rgba(27, 75, 107, 0.1);
}

.faq-item h3 {
  color: #1B4B6B;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5A7C99;
  margin-bottom: 0;
}

/* Thank You Page */
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #E8F1F5 0%, #D4E5EE 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #1B4B6B;
  color: #FFFFFF;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.confirmation {
  font-size: 16px;
  color: #5A7C99;
  margin-top: 24px;
}

/* Milestones List */
.milestones {
  list-style: none;
  padding: 0;
  margin-top: 32px;
}

.milestones li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: #F8FBFD;
  border-left: 4px solid #C8986B;
  color: #2C5F8D;
  font-weight: 600;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border: 2px solid #E8F1F5;
  border-top: 4px solid #C8986B;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.value-item:hover {
  border-color: #1B4B6B;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 75, 107, 0.15);
}

.value-item h3 {
  color: #1B4B6B;
  margin-bottom: 12px;
}

.value-item p {
  color: #5A7C99;
}

/* Mission Statement */
.mission {
  font-size: 20px;
  line-height: 1.8;
  color: #2C5F8D;
  text-align: center;
  padding: 32px;
  background: #F8FBFD;
  border: 2px solid #E8F1F5;
  border-left: 4px solid #C8986B;
  margin-bottom: 40px;
}

/* Certifications */
.certifications ul {
  list-style: none;
  padding: 0;
}

.certifications li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: #F8FBFD;
  border-left: 4px solid #C8986B;
  color: #2C5F8D;
  font-weight: 600;
}

/* Footer - Geometric Structure */
footer {
  background: linear-gradient(135deg, #1B4B6B 0%, #0F2F47 100%);
  color: #FFFFFF;
  padding: 60px 20px 30px;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: #C8986B;
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #C8986B;
  padding-bottom: 8px;
}

.footer-section p {
  color: #D4E5EE;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #D4E5EE;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #C8986B;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #D4E5EE;
  font-size: 14px;
}

/* Cookie Consent Banner - Geometric Design */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4B6B 0%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.cookie-btn:hover {
  background: #FFFFFF;
  color: #1B4B6B;
}

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

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

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #1B4B6B;
  color: #1B4B6B;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

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

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #F8FBFD;
  border-left: 4px solid #C8986B;
}

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

.cookie-category p {
  color: #5A7C99;
  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-toggle label {
  font-weight: 600;
  color: #2C5F8D;
  cursor: pointer;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  header {
    padding: 15px 0 25px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .tour-card, .card {
    flex: 1 1 100%;
  }
  
  .benefit-item, .feature-item {
    flex: 1 1 100%;
  }
  
  .destination-card, .region-item, .highlight-item {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .value-item {
    flex: 1 1 100%;
  }
  
  .team-member {
    flex: 1 1 100%;
  }
  
  .contact-option {
    flex: 1 1 100%;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .section, section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 40px 15px;
  }
  
  .logo {
    height: 40px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

/* Animations */
@keyframes slideInFromBottom {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-in {
  animation: slideInFromBottom 0.6s ease forwards;
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cta-banner {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}