/* ========================================
   CRISP SHAPE - ELEGANT CLASSIC DESIGN
   CSS Reset & Base Styles
   ======================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #FEFCF8;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   TYPOGRAPHY - ELEGANT CLASSIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
}

strong {
  font-weight: 600;
  color: #0A5C8C;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   HEADER - ELEGANT NAVIGATION
   ======================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5DDD1;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  max-width: 180px;
  height: auto;
}

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

.main-nav a {
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

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

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

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

.cta-button {
  background-color: #0A5C8C;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #0A5C8C;
}

.cta-button:hover {
  background-color: #084A6F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 92, 140, 0.3);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  color: #0A5C8C;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FEFCF8;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #4A4A4A;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-size: 20px;
  color: #2C2C2C;
  padding: 12px 0;
  border-bottom: 1px solid #E5DDD1;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s ease;
}

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

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #FEFCF8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #C7954A;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  color: #0A5C8C;
}

.subheadline {
  font-size: 22px;
  color: #4A4A4A;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.btn-primary,
.btn-secondary {
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #0A5C8C;
  color: #FFFFFF;
  border: 2px solid #0A5C8C;
}

.btn-primary:hover {
  background-color: #084A6F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 92, 140, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #0A5C8C;
  border: 2px solid #0A5C8C;
}

.btn-secondary:hover {
  background-color: #0A5C8C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 92, 140, 0.2);
}

.trust-badge {
  font-size: 16px;
  color: #4A4A4A;
  margin-top: 24px;
  font-style: italic;
}

.hero-internal {
  background: linear-gradient(135deg, #E8F4F8 0%, #FEFCF8 100%);
  padding: 60px 20px 40px;
  border-bottom: 2px solid #C7954A;
}

.hero-internal h1 {
  font-size: 44px;
  color: #0A5C8C;
  text-align: center;
  margin-bottom: 16px;
}

.hero-internal p {
  text-align: center;
  font-size: 20px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 20px;
  text-align: center;
}

.breadcrumbs a {
  color: #0A5C8C;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #C7954A;
}

/* ========================================
   VALUE PROPOSITION & GRIDS
   ======================================== */

.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.value-proposition h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.value-grid,
.services-grid,
.testimonial-grid,
.destinations-grid,
.trust-grid,
.categories-grid,
.tours-grid,
.dest-grid,
.seasons-grid,
.methods-grid,
.team-grid,
.awards-grid,
.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-item,
.service-card,
.testimonial-card,
.destination-item,
.trust-item,
.category-item,
.tour-card,
.dest-card,
.season-item,
.method-item,
.team-member,
.award-item,
.showcase-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #FEFCF8;
  border: 1px solid #E5DDD1;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover,
.service-card:hover,
.tour-card:hover,
.dest-card:hover,
.category-item:hover {
  border-color: #C7954A;
  box-shadow: 0 8px 24px rgba(199, 149, 74, 0.15);
  transform: translateY(-4px);
}

.value-item h3,
.service-card h3,
.tour-card h3,
.dest-card h3 {
  color: #0A5C8C;
  margin-bottom: 16px;
  font-size: 24px;
}

.value-item p,
.service-card p,
.tour-card p,
.dest-card p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   SERVICES & TOURS
   ======================================== */

.services-preview,
.tour-grid {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.services-preview h2,
.tour-grid h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 16px;
}

.services-preview > .container > p {
  text-align: center;
  color: #4A4A4A;
  font-size: 18px;
  margin-bottom: 48px;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #C7954A;
  margin-top: 16px;
}

.duration {
  font-size: 16px;
  color: #6A6A6A;
  font-style: italic;
  margin-bottom: 12px;
}

.highlights {
  font-size: 14px;
  color: #6A6A6A;
  margin-top: 12px;
  font-style: italic;
}

/* ========================================
   PROCESS & STEPS
   ======================================== */

.process {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #FEFCF8 0%, #E8F4F8 100%);
}

.process h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  text-align: center;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 2px solid #C7954A;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.step:hover {
  box-shadow: 0 8px 24px rgba(199, 149, 74, 0.2);
  transform: translateY(-4px);
}

.step h3 {
  color: #0A5C8C;
  font-size: 22px;
  margin-bottom: 16px;
}

.step p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS - READABLE DESIGN
   ======================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.testimonial-card {
  background-color: #FEFCF8;
  border-left: 4px solid #C7954A;
  padding: 32px 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  color: #2C2C2C;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.author {
  font-weight: 600;
  color: #0A5C8C;
  font-size: 16px;
  margin-top: 20px;
}

.rating {
  color: #C7954A;
  font-size: 20px;
  margin-top: 12px;
}

/* ========================================
   FEATURED SECTIONS
   ======================================== */

.featured-tour,
.destination-featured {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F4F8 0%, #FEFCF8 100%);
  border: 2px solid #C7954A;
  border-radius: 4px;
  margin: 40px 0;
}

.badge {
  display: inline-block;
  background-color: #C7954A;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.featured-tour h2,
.destination-featured h2 {
  color: #0A5C8C;
  font-size: 36px;
  margin-bottom: 16px;
}

.tagline {
  font-size: 20px;
  color: #4A4A4A;
  font-style: italic;
  margin-bottom: 24px;
}

.highlights {
  margin: 24px 0;
}

.highlights li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #2C2C2C;
  font-size: 16px;
}

.highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C7954A;
  font-weight: 600;
}

.season,
.best-for {
  font-size: 15px;
  color: #6A6A6A;
  margin-top: 16px;
  font-style: italic;
}

/* ========================================
   DESTINATIONS
   ======================================== */

.destinations-highlight,
.destinations-overview {
  padding: 60px 20px;
  background-color: #FEFCF8;
}

.destinations-highlight h2,
.destinations-overview h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

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

.stats span {
  font-size: 18px;
  font-weight: 600;
  color: #0A5C8C;
  padding: 12px 24px;
  background-color: #E8F4F8;
  border-radius: 4px;
  border: 1px solid #C7954A;
}

/* ========================================
   TRUST SIGNALS
   ======================================== */

.trust-signals {
  padding: 48px 20px;
  background-color: #E8F4F8;
}

.trust-item {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #0A5C8C;
  padding: 20px 16px;
  background-color: #FFFFFF;
  border: 1px solid #C7954A;
  border-radius: 4px;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-final,
.cta-about,
.cta-tours,
.cta-destinations,
.cta-gallery,
.cta-contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A5C8C 0%, #084A6F 100%);
  text-align: center;
  color: #FFFFFF;
}

.cta-final h2,
.cta-about h2,
.cta-tours h2,
.cta-destinations h2,
.cta-gallery h2,
.cta-contact h2 {
  color: #FFFFFF;
  font-size: 38px;
  margin-bottom: 20px;
}

.cta-final p,
.cta-about p,
.cta-tours p,
.cta-destinations p,
.cta-gallery p,
.cta-contact p {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 32px;
}

.cta-final .btn-primary,
.cta-about .btn-primary,
.cta-tours .btn-primary,
.cta-destinations .btn-primary,
.cta-gallery .btn-primary,
.cta-contact .btn-primary {
  background-color: #C7954A;
  border-color: #C7954A;
}

.cta-final .btn-primary:hover,
.cta-about .btn-primary:hover,
.cta-tours .btn-primary:hover,
.cta-destinations .btn-primary:hover,
.cta-gallery .btn-primary:hover,
.cta-contact .btn-primary:hover {
  background-color: #A67A3A;
  border-color: #A67A3A;
}

.cta-final .btn-secondary,
.cta-about .btn-secondary,
.cta-tours .btn-secondary,
.cta-destinations .btn-secondary,
.cta-gallery .btn-secondary,
.cta-contact .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-final .btn-secondary:hover,
.cta-about .btn-secondary:hover,
.cta-tours .btn-secondary:hover,
.cta-destinations .btn-secondary:hover,
.cta-gallery .btn-secondary:hover,
.cta-contact .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #0A5C8C;
}

.contact-info {
  font-size: 18px;
  margin-top: 24px;
  color: #E8F4F8;
}

.reassurance {
  font-size: 16px;
  color: #E8F4F8;
  margin-top: 24px;
  font-style: italic;
}

/* ========================================
   ABOUT PAGE SPECIFIC
   ======================================== */

.story,
.values,
.team,
.differentiators,
.awards {
  padding: 60px 20px;
}

.story {
  background-color: #FFFFFF;
}

.story h2 {
  color: #0A5C8C;
  margin-bottom: 32px;
}

.story p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #2C2C2C;
}

.mission {
  padding: 24px;
  background-color: #E8F4F8;
  border-left: 4px solid #C7954A;
  margin-top: 32px;
  font-size: 18px;
}

.values {
  background-color: #FEFCF8;
}

.values h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.diff-list {
  max-width: 800px;
  margin: 0 auto;
}

.diff-list li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  line-height: 1.7;
  color: #2C2C2C;
  border-bottom: 1px solid #E5DDD1;
}

.diff-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C7954A;
  font-weight: 600;
  font-size: 20px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods,
.contact-form-section,
.consultation-offer,
.office-info {
  padding: 60px 20px;
}

.contact-methods {
  background-color: #FEFCF8;
}

.contact-methods h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

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

.method-item h3 {
  color: #0A5C8C;
  margin-bottom: 12px;
}

.method-item .contact-info {
  font-weight: 600;
  color: #2C2C2C;
  margin: 12px 0;
}

.method-item p {
  color: #4A4A4A;
}

.contact-form-section {
  background-color: #FFFFFF;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 32px;
  background-color: #FEFCF8;
  border: 2px solid #E5DDD1;
  border-radius: 4px;
}

.form-placeholder ul {
  margin: 24px 0;
  padding-left: 24px;
}

.form-placeholder li {
  padding: 8px 0;
  color: #4A4A4A;
  font-size: 16px;
  list-style: disc;
}

.note {
  font-size: 15px;
  color: #6A6A6A;
  font-style: italic;
  margin: 20px 0;
}

.consultation-offer {
  background: linear-gradient(135deg, #E8F4F8 0%, #FEFCF8 100%);
}

.consultation-offer h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 24px;
}

.consultation-offer > .container > p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.benefits {
  max-width: 600px;
  margin: 32px auto;
}

.benefits li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  color: #2C2C2C;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C7954A;
  font-weight: 600;
}

.office-info {
  background-color: #FFFFFF;
}

.office-info h2 {
  color: #0A5C8C;
  margin-bottom: 32px;
}

.office-details {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #FEFCF8;
  border: 1px solid #E5DDD1;
  border-radius: 4px;
}

.office-details p {
  margin: 16px 0;
  font-size: 17px;
  line-height: 1.8;
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.gallery-intro,
.gallery-categories,
.featured-moments,
.destinations-showcase,
.seasonal-beauty,
.photography-info {
  padding: 60px 20px;
}

.gallery-intro {
  background-color: #FEFCF8;
  text-align: center;
}

.gallery-intro h2 {
  color: #0A5C8C;
  margin-bottom: 24px;
}

.gallery-intro p {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 1.8;
}

.gallery-categories {
  background-color: #FFFFFF;
}

.gallery-categories h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.category-item h3 {
  margin-bottom: 8px;
}

.category-item p {
  font-size: 14px;
  color: #6A6A6A;
}

.featured-moments {
  background-color: #FEFCF8;
}

.featured-moments h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.moment-card,
.moments-grid .moment-card {
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E5DDD1;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.moment-card:hover {
  border-color: #C7954A;
  box-shadow: 0 8px 24px rgba(199, 149, 74, 0.15);
  transform: translateY(-4px);
}

.moment-card h3 {
  color: #0A5C8C;
  margin-bottom: 16px;
}

.tour-name {
  font-size: 14px;
  color: #C7954A;
  font-weight: 600;
  margin-top: 16px;
  font-style: italic;
}

.photography-info {
  background-color: #FEFCF8;
  text-align: center;
}

.photography-info h2 {
  color: #0A5C8C;
  margin-bottom: 24px;
}

.photography-info p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.8;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-page h1 {
  color: #0A5C8C;
  text-align: center;
  margin-bottom: 16px;
}

.last-updated {
  text-align: center;
  font-size: 15px;
  color: #6A6A6A;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #0A5C8C;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.9;
  color: #2C2C2C;
}

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

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

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

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #C7954A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(199, 149, 74, 0.3);
}

.thank-you-hero h1 {
  color: #0A5C8C;
  margin-bottom: 16px;
}

.confirmation-message,
.next-steps,
.while-waiting,
.contact-reminder,
.next-actions,
.contact-info-section {
  padding: 60px 20px;
}

.confirmation-message {
  background-color: #FFFFFF;
  text-align: center;
}

.confirmation-message p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.8;
}

.email-note,
.response-note {
  font-size: 16px;
  color: #6A6A6A;
  font-style: italic;
  margin-top: 24px;
}

.next-steps {
  background-color: #FEFCF8;
}

.next-steps h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.while-waiting,
.next-actions {
  background-color: #FFFFFF;
}

.while-waiting h2,
.next-actions h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

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

.suggestion,
.action-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #FEFCF8;
  border: 1px solid #E5DDD1;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion:hover,
.action-item:hover {
  border-color: #C7954A;
  box-shadow: 0 8px 24px rgba(199, 149, 74, 0.15);
  transform: translateY(-4px);
}

.suggestion h3,
.action-item h3 {
  color: #0A5C8C;
  margin-bottom: 16px;
}

.contact-reminder,
.contact-info-section {
  background-color: #FEFCF8;
  text-align: center;
}

.contact-reminder h2,
.contact-info-section h2 {
  color: #0A5C8C;
  margin-bottom: 24px;
}

.contact-info-grid,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 32px 0;
}

.contact-item {
  font-size: 17px;
  color: #2C2C2C;
}

/* ========================================
   FAQ SECTIONS
   ======================================== */

.faq-tours,
.faq-contact {
  padding: 60px 20px;
  background-color: #FEFCF8;
}

.faq-tours h2,
.faq-contact h2 {
  text-align: center;
  color: #0A5C8C;
  margin-bottom: 48px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 28px 24px;
  background-color: #FFFFFF;
  border-left: 4px solid #C7954A;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  color: #0A5C8C;
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  color: #2C2C2C;
  font-size: 17px;
  line-height: 1.8;
}

/* ========================================
   FOOTER - ELEGANT DESIGN
   ======================================== */

footer {
  background-color: #1A1A1A;
  color: #E5DDD1;
  padding: 60px 20px 20px;
  border-top: 3px solid #C7954A;
}

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

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

.footer-column h4 {
  color: #C7954A;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

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

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column li {
  font-size: 15px;
}

.footer-column a {
  color: #B8B8B8;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #3A3A3A;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #8A8A8A;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #E5DDD1;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-top: 2px solid #C7954A;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-content {
  flex: 1 1 auto;
  max-width: 700px;
}

.cookie-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #B8B8B8;
}

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

.cookie-content a:hover {
  color: #E8B15E;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #C7954A;
  color: #FFFFFF;
}

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

.cookie-reject {
  background-color: transparent;
  color: #E5DDD1;
  border-color: #4A4A4A;
}

.cookie-reject:hover {
  background-color: #2A2A2A;
  border-color: #6A6A6A;
}

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

.cookie-settings:hover {
  background-color: #C7954A;
  color: #FFFFFF;
}

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

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

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

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

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

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

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

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

.cookie-toggle label {
  font-size: 14px;
  color: #2C2C2C;
  font-weight: 600;
}

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  body {
    font-size: 16px;
  }
  
  /* Header mobile */
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  header .container {
    justify-content: space-between;
  }
  
  .logo {
    max-width: 140px;
  }
  
  /* Hero sections */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  .hero-internal {
    padding: 40px 20px 30px;
  }
  
  .hero-internal h1 {
    font-size: 32px;
  }
  
  /* CTA buttons */
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Grid layouts - single column on mobile */
  .value-item,
  .service-card,
  .testimonial-card,
  .destination-item,
  .category-item,
  .tour-card,
  .dest-card,
  .season-item,
  .method-item,
  .team-member,
  .award-item,
  .showcase-item,
  .moment-card,
  .suggestion,
  .action-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps */
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Sections padding */
  .section {
    padding: 30px 16px;
    margin-bottom: 40px;
  }
  
  /* Featured sections */
  .featured-tour,
  .destination-featured {
    padding: 40px 20px;
  }
  
  /* CTA sections */
  .cta-final,
  .cta-about,
  .cta-tours,
  .cta-destinations,
  .cta-gallery,
  .cta-contact {
    padding: 60px 20px;
  }
  
  .cta-final h2,
  .cta-about h2,
  .cta-tours h2,
  .cta-destinations h2,
  .cta-gallery h2,
  .cta-contact h2 {
    font-size: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-item,
  .service-card,
  .tour-card,
  .dest-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step {
    flex: 1 1 calc(50% - 16px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 20px);
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero,
.hero-internal {
  animation: fadeIn 0.6s ease;
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ========================================
   END OF STYLES
   ======================================== */