/* CSS Reset and 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #FFFFFF;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #2C5F7C;
}

h3 {
  font-size: 24px;
  color: #2C5F7C;
}

h4 {
  font-size: 18px;
  color: #2C5F7C;
}

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

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

a:hover {
  color: #D4AF37;
}

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  color: #FFFFFF;
  border-color: #2C5F7C;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3A7A9E 0%, #2C5F7C 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 124, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background: linear-gradient(135deg, #D4AF37 0%, #E8C55A 100%);
  color: #1A2B3C;
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #E8C55A 0%, #D4AF37 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #1A2B3C;
}

.btn-outline {
  background: transparent;
  color: #2C5F7C;
  border: 2px solid #2C5F7C;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  color: #FFFFFF;
  border-color: #2C5F7C;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(44, 95, 124, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F7C 0%, #1A4A61 100%);
  z-index: 1002;
  padding: 80px 24px 24px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.3);
  transform: translateX(8px);
  color: #D4AF37;
}

/* Header */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  border-bottom: 1px solid rgba(44, 95, 124, 0.1);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C5F7C;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #E8C55A 100%);
  transition: width 0.3s ease;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 50%, #2C5F7C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(232, 197, 90, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(58, 122, 158, 0.2) 0%, rgba(44, 95, 124, 0.1) 100%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F5F0E8;
  line-height: 1.6;
}

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

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
  border-radius: 50%;
}

.page-hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero .hero-subtitle {
  font-size: 18px;
  color: #F5F0E8;
  margin-bottom: 16px;
}

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

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

.intro-text {
  font-size: 18px;
  color: #5A6C7D;
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

/* Value Proposition */
.value-proposition {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

.value-proposition > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
  border-color: #D4AF37;
}

.value-item h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
  font-size: 22px;
}

.value-item p {
  color: #5A6C7D;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Services Preview */
.services-preview {
  padding: 60px 20px;
  background: #FFFFFF;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  flex: 1 1 340px;
  max-width: 380px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
  border-color: #D4AF37;
}

.service-card h3 {
  color: #2C5F7C;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: #5A6C7D;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
  margin: 8px 0;
}

.service-card .btn-outline {
  align-self: flex-start;
  margin-top: 8px;
}

/* Service Detail Cards */
.services-detailed {
  padding: 60px 20px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
}

.service-detail-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-detail-card:hover {
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
  border-color: #D4AF37;
}

.service-detail-card h2 {
  color: #2C5F7C;
  margin-bottom: 20px;
}

.service-detail-card > p {
  color: #5A6C7D;
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-meta {
  background: rgba(44, 95, 124, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.service-meta p {
  margin-bottom: 8px;
  color: #2C5F7C;
}

.service-meta p:last-child {
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid #D4AF37;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
}

.testimonial-card > p:first-child {
  font-size: 16px;
  color: #2C3E50;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  font-weight: 700;
  color: #2C5F7C;
  font-size: 14px;
  margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner > .container > p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #F5F0E8;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.trust-indicator {
  font-size: 14px;
  color: #F5F0E8;
  margin-top: 24px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section > .container > p {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 32px;
}

.contact-info,
.office-address,
.availability-note {
  font-size: 16px;
  color: #5A6C7D;
  margin-top: 24px;
}

/* Destination Pages */
.destination-overview {
  padding: 60px 20px;
  background: #FFFFFF;
}

.destination-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  justify-content: center;
}

.category-card {
  flex: 1 1 280px;
  max-width: 360px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
  border-color: #D4AF37;
}

.category-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.category-card p {
  color: #5A6C7D;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Featured Destinations */
.featured-destinations {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.featured-destinations h2 {
  text-align: center;
  margin-bottom: 48px;
}

.destination-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.destination-detail {
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  border-left: 4px solid #D4AF37;
  transition: all 0.3s ease;
}

.destination-detail:hover {
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
  transform: translateX(8px);
}

.destination-detail h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.destination-detail > p {
  color: #5A6C7D;
  line-height: 1.8;
  margin-bottom: 16px;
}

.starting-price {
  font-weight: 700;
  color: #D4AF37;
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* Expertise Section */
.expertise {
  padding: 60px 20px;
  background: #FFFFFF;
}

.expertise h2 {
  text-align: center;
  margin-bottom: 16px;
}

.expertise > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.expertise-item {
  flex: 1 1 240px;
  max-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(44, 95, 124, 0.08);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.12);
}

.expertise-item h4 {
  color: #2C5F7C;
  margin-bottom: 8px;
  font-size: 16px;
}

.expertise-item p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 0;
}

/* Expedition Features */
.expedition-features {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.expedition-features h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.feature-item {
  flex: 1 1 240px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(44, 95, 124, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.12);
}

.feature-item h4 {
  color: #2C5F7C;
  margin-bottom: 0;
  font-size: 16px;
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
  background: #FFFFFF;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 24px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 95, 124, 0.08);
  border-left: 3px solid #D4AF37;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.12);
  transform: translateX(4px);
}

.faq-item h4 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #5A6C7D;
  line-height: 1.6;
  margin-bottom: 0;
}

/* About Us Pages */
.about-introduction {
  padding: 60px 20px;
  background: #FFFFFF;
}

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

.about-introduction > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

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

.text-block {
  flex: 1 1 400px;
  max-width: 550px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
}

.text-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
}

.text-block h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.text-block p {
  color: #5A6C7D;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

/* Team Section */
.team-section {
  padding: 60px 20px;
  background: #FFFFFF;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-member {
  flex: 1 1 240px;
  max-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 28px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
  border-color: #D4AF37;
}

.team-member h4 {
  color: #2C5F7C;
  margin-bottom: 8px;
  font-size: 18px;
}

.team-member p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 0;
}

/* Statistics */
.statistics {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  padding: 60px 20px;
  color: #FFFFFF;
}

.statistics h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-item h3 {
  font-size: 42px;
  color: #D4AF37;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  color: #F5F0E8;
  font-size: 16px;
  margin-bottom: 0;
}

/* Planning Process */
.planning-process {
  padding: 60px 20px;
  background: #FFFFFF;
}

.planning-process h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 240px;
  max-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 28px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
}

.step h4 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 18px;
}

.step p {
  color: #5A6C7D;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Form Notes */
.inquiry-form {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.inquiry-form h2 {
  text-align: center;
  margin-bottom: 16px;
}

.inquiry-form > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 40px;
}

.form-note {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  border-left: 4px solid #D4AF37;
}

.form-note p {
  color: #5A6C7D;
  margin-bottom: 16px;
  line-height: 1.6;
}

.form-note p strong {
  color: #2C5F7C;
}

.form-note a {
  color: #2C5F7C;
  text-decoration: underline;
}

.form-note ul {
  margin-left: 24px;
  list-style: disc;
}

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

/* Consultation Options */
.consultation-options {
  padding: 60px 20px;
  background: #FFFFFF;
}

.consultation-options h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.option-card {
  flex: 1 1 280px;
  max-width: 360px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
  border-color: #D4AF37;
}

.option-card h4 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.option-card p {
  color: #5A6C7D;
  line-height: 1.6;
  margin-bottom: 0;
}

.consultation-options .note {
  text-align: center;
  color: #5A6C7D;
  font-size: 14px;
  font-style: italic;
}

/* Pricing Transparency */
.pricing-transparency {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.pricing-transparency h2 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-transparency > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 40px;
}

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

.included,
.not-included {
  flex: 1 1 400px;
  max-width: 550px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
}

.included h4,
.not-included h4 {
  color: #2C5F7C;
  margin-bottom: 20px;
  font-size: 20px;
}

.included ul,
.not-included ul {
  margin-left: 24px;
  list-style: disc;
}

.included li,
.not-included li {
  color: #5A6C7D;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Contact Pages */
.contact-options {
  padding: 60px 20px;
  background: #FFFFFF;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-card {
  flex: 1 1 280px;
  max-width: 360px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
}

.contact-card h4 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 18px;
}

.contact-card p {
  color: #5A6C7D;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-card a {
  color: #2C5F7C;
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 40px;
}

/* Office Location */
.office-location {
  padding: 60px 20px;
  background: #FFFFFF;
}

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

.office-location > .container > p {
  text-align: center;
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 32px;
  line-height: 1.8;
}

.directions {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
}

.directions h4 {
  color: #2C5F7C;
  margin-bottom: 16px;
  font-size: 18px;
}

.directions ul {
  margin-left: 24px;
  list-style: disc;
  margin-bottom: 20px;
}

.directions li {
  color: #5A6C7D;
  margin-bottom: 8px;
  line-height: 1.6;
}

.directions p {
  color: #5A6C7D;
  line-height: 1.6;
}

/* Team Contacts */
.team-contacts {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.team-contacts h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-person {
  flex: 1 1 240px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
}

.contact-person:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
}

.contact-person h4 {
  color: #2C5F7C;
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-person p {
  color: #5A6C7D;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
}

.content-wrapper h2 {
  color: #2C5F7C;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

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

.content-wrapper h3 {
  color: #2C5F7C;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p {
  color: #5A6C7D;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper a {
  color: #2C5F7C;
  text-decoration: underline;
}

.content-wrapper ul {
  margin-left: 24px;
  list-style: disc;
  margin-bottom: 20px;
}

.content-wrapper li {
  color: #5A6C7D;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-content h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 16px;
}

.success-content .hero-subtitle {
  color: #F5F0E8;
  font-size: 20px;
}

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

.confirmation-message h2 {
  text-align: center;
  margin-bottom: 16px;
}

.confirmation-message > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 40px;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px auto;
  justify-content: center;
  max-width: 900px;
}

.next-steps .step {
  flex: 1 1 200px;
  max-width: 240px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E8 100%);
  padding: 24px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(44, 95, 124, 0.08);
}

.next-steps .step p {
  color: #5A6C7D;
  font-size: 15px;
  margin-bottom: 0;
}

.next-steps .step strong {
  color: #D4AF37;
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.confirmation-message .note {
  text-align: center;
  color: #5A6C7D;
  font-size: 14px;
  font-style: italic;
  margin-top: 24px;
}

.meanwhile {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

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

.suggestion-card {
  flex: 1 1 280px;
  max-width: 360px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 124, 0.15);
}

.suggestion-card h4 {
  color: #2C5F7C;
  margin-bottom: 0;
}

.contact-alternative {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
}

.contact-alternative h2 {
  margin-bottom: 16px;
}

.contact-alternative p {
  color: #5A6C7D;
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-alternative a {
  color: #2C5F7C;
  font-weight: 600;
}

.testimonial-trust {
  background: linear-gradient(135deg, #F5F0E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.testimonial-trust h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-trust .testimonial-card {
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.trust-indicators p {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  color: #2C5F7C;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.trust-indicators strong {
  display: block;
  font-size: 32px;
  color: #D4AF37;
  margin-bottom: 8px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1A2B3C 0%, #2C5F7C 100%);
  color: #F5F0E8;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 220px;
  max-width: 280px;
}

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

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

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

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: #F5F0E8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #D4AF37;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #F5F0E8;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F7C 0%, #1A4A61 100%);
  color: #FFFFFF;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-consent p {
  flex: 1 1 300px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #F5F0E8;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #D4AF37 0%, #E8C55A 100%);
  color: #1A2B3C;
}

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

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

.cookie-settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* 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: 1001;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal h3 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(44, 95, 124, 0.1);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category h4 {
  color: #2C5F7C;
  margin-bottom: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #5A6C7D;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: #2C5F7C;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  background: #D4AF37;
  opacity: 0.6;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1 1 140px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9E 100%);
  color: #FFFFFF;
}

.cookie-save:hover {
  background: linear-gradient(135deg, #3A7A9E 0%, #2C5F7C 100%);
  transform: translateY(-2px);
}

.cookie-modal-close {
  background: rgba(44, 95, 124, 0.1);
  color: #2C5F7C;
}

.cookie-modal-close:hover {
  background: rgba(44, 95, 124, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  h4 {
    font-size: 16px;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Grids */
  .value-grid,
  .services-grid,
  .destination-categories,
  .features-grid,
  .expertise-grid,
  .team-grid,
  .stats-grid,
  .process-steps,
  .options-grid,
  .contact-cards,
  .contacts-list {
    gap: 20px;
  }
  
  .value-item,
  .service-card,
  .category-card,
  .feature-item,
  .expertise-item,
  .team-member,
  .step,
  .option-card,
  .contact-card,
  .contact-person {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  /* Text-Image Sections */
  .mission-vision,
  .pricing-info {
    flex-direction: column;
  }
  
  .text-block,
  .included,
  .not-included {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  h3 {
    font-size: 14pt;
  }
}