/* ===================================
   ZEPHYR ESCAPE - GEOMETRIC STRUCTURED DESIGN
   Modern Mountain Adventure Tours
   =================================== */

/* CSS RESET & BASE */
* {
  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-color: #ffffff;
  overflow-x: hidden;
}

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

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

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

/* ===================================
   GEOMETRIC STRUCTURED TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 4px solid #2B5F75;
  padding-left: 16px;
}

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

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

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: #2B5F75;
}

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

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

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

/* ===================================
   HEADER - GEOMETRIC & STRUCTURED
   =================================== */

header {
  background-color: #ffffff;
  border-bottom: 3px solid #2B5F75;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(43, 95, 117, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-height: 70px;
}

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #2B5F75;
  border-bottom-color: #2B5F75;
}

/* ===================================
   MOBILE MENU - HAMBURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #2B5F75;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(43, 95, 117, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1f4557;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1100;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2B5F75;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #1f4557;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2B5F75;
  border-left-color: #2B5F75;
  padding-left: 24px;
}

/* ===================================
   HERO SECTIONS - BOLD & ANGULAR
   =================================== */

.hero {
  background: linear-gradient(135deg, #2B5F75 0%, #4A7C59 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: #E8DCC4;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
}

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

.trust-badge {
  display: inline-block;
  background-color: rgba(232, 220, 196, 0.2);
  border: 2px solid #E8DCC4;
  color: #ffffff;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.breadcrumb {
  color: #E8DCC4;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

.last-updated {
  color: #E8DCC4;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* ===================================
   BUTTONS - GEOMETRIC DESIGN
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary {
  background-color: #2B5F75;
  color: #ffffff;
  border-color: #2B5F75;
}

.btn-primary:hover {
  background-color: #1f4557;
  border-color: #1f4557;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 95, 117, 0.3);
}

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

.btn-secondary:hover {
  background-color: #ffffff;
  color: #2B5F75;
}

.btn-link {
  background-color: transparent;
  color: #2B5F75;
  border-color: #2B5F75;
  padding: 12px 24px;
  font-size: 14px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.btn-link:hover {
  background-color: #2B5F75;
  color: #ffffff;
}

/* ===================================
   SECTIONS - STRUCTURED SPACING
   =================================== */

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

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

/* ===================================
   CARDS - ANGULAR GEOMETRIC DESIGN
   =================================== */

.parks-grid,
.tours-grid,
.benefits-grid,
.features-grid,
.wildlife-grid,
.seasons-grid,
.categories-grid,
.credentials-grid,
.explore-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.park-card,
.tour-card,
.benefit-card,
.feature-item,
.wildlife-card,
.season-card,
.category-card,
.credential-item,
.explore-card,
.contact-card,
.tour-quick-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  border: 3px solid #2B5F75;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.park-card:hover,
.tour-card:hover,
.benefit-card:hover,
.category-card:hover,
.explore-card:hover,
.contact-card:hover,
.tour-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(43, 95, 117, 0.2);
  border-color: #4A7C59;
}

.park-card h3,
.tour-card h3,
.benefit-card h3,
.wildlife-card h3,
.season-card h3,
.category-card h3 {
  color: #2B5F75;
  margin-bottom: 12px;
  font-size: 20px;
}

.park-card::before,
.tour-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 30px;
  height: 30px;
  border-top: 3px solid #4A7C59;
  border-left: 3px solid #4A7C59;
}

/* ===================================
   TOUR SPECIFIC ELEMENTS
   =================================== */

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

.tour-duration,
.tour-difficulty,
.tour-group {
  display: inline-block;
  background-color: #E8DCC4;
  color: #1a1a1a;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 3px solid #4A7C59;
}

.tour-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2B5F75;
  margin: 16px 0;
  display: block;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #f5f5f5;
  border-left: 4px solid #2B5F75;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
}

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

.stars {
  color: #4A7C59;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  border-top: 2px solid #2B5F75;
  padding-top: 12px;
}

.testimonial-author strong {
  color: #2B5F75;
  font-size: 16px;
}

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

.tour-taken {
  color: #4A7C59 !important;
  font-weight: 600;
}

/* ===================================
   PARKS & WILDLIFE SECTIONS
   =================================== */

.parks-overview,
.parks-intro,
.wildlife-intro,
.gallery-intro,
.when-to-visit,
.getting-there,
.conservation {
  background-color: #f9f9f9;
  border-top: 3px solid #2B5F75;
  border-bottom: 3px solid #2B5F75;
}

.park-section {
  margin-bottom: 48px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #E8DCC4;
  position: relative;
}

.park-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #4A7C59;
}

.park-highlights ul,
.safety-content ul,
.packing-list ul,
.regulations ul,
.tips-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.park-highlights li,
.safety-content li,
.packing-list li,
.regulations li,
.tips-content li {
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid #4A7C59;
  list-style-position: outside;
}

/* ===================================
   FAQ SECTIONS - STRUCTURED LAYOUT
   =================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  border-left: 4px solid #2B5F75;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
  color: #333333;
  line-height: 1.7;
}

/* ===================================
   CTA BANNERS - BOLD GEOMETRIC
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #4A7C59 0%, #2B5F75 100%);
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.cta-banner h2 {
  color: #ffffff;
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

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

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

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

/* ===================================
   ITINERARY & STEPS SECTIONS
   =================================== */

.itinerary-cards,
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.itinerary-card,
.step-item {
  background-color: #ffffff;
  border: 2px solid #2B5F75;
  padding: 24px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: #2B5F75;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #2B5F75;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.contact-form-section {
  background-color: #f9f9f9;
  border-top: 3px solid #2B5F75;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  font-size: 18px;
  margin-bottom: 24px;
  text-align: center;
}

.contact-form-notice {
  background-color: #E8DCC4;
  border-left: 4px solid #2B5F75;
  padding: 20px;
  margin-bottom: 32px;
}

.contact-form-notice p {
  margin-bottom: 12px;
}

.contact-form-notice a {
  color: #2B5F75;
  font-weight: 600;
  text-decoration: underline;
}

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

.confirmation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #4A7C59;
  color: #ffffff;
  font-size: 48px;
  margin: 32px auto;
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
}

.confirmation-message {
  background-color: #f9f9f9;
  border-top: 3px solid #4A7C59;
  border-bottom: 3px solid #4A7C59;
}

/* ===================================
   FOOTER - STRUCTURED GRID
   =================================== */

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 48px 20px 24px;
  margin-top: 60px;
  border-top: 4px solid #2B5F75;
}

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

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

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

.footer-about p,
.footer-contact p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

footer h4 {
  color: #E8DCC4;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #2B5F75;
  padding-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  display: block;
  color: #cccccc;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #E8DCC4;
  border-left-color: #4A7C59;
  padding-left: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  border-top: 3px solid #2B5F75;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #cccccc;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-accept {
  background-color: #4A7C59;
  color: #ffffff;
  border-color: #4A7C59;
}

.cookie-accept:hover {
  background-color: #3d6549;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background-color: #333333;
  border-color: #888888;
}

.cookie-settings {
  background-color: transparent;
  color: #E8DCC4;
  border-color: #2B5F75;
}

.cookie-settings:hover {
  background-color: #2B5F75;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 32px;
  border: 3px solid #2B5F75;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  color: #2B5F75;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  background-color: #f5f5f5;
  border-left: 3px solid #4A7C59;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
}

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

.cookie-category p {
  color: #666666;
  font-size: 14px;
  margin-left: 32px;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Header Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .park-card,
  .tour-card,
  .benefit-card,
  .feature-item,
  .wildlife-card,
  .season-card,
  .category-card,
  .credential-item,
  .explore-card,
  .contact-card,
  .tour-quick-card,
  .testimonial-card,
  .itinerary-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-link {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-about,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  /* Steps */
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Cards - 2 columns on tablet */
  .park-card,
  .tour-card,
  .benefit-card,
  .wildlife-card,
  .season-card,
  .category-card,
  .explore-card,
  .contact-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .feature-item,
  .credential-item {
    flex: 1 1 calc(33.333% - 16px);
  }
}

@media (min-width: 1025px) {
  /* Cards - 3-4 columns on desktop */
  .benefit-card,
  .feature-item,
  .credential-item {
    flex: 1 1 calc(25% - 18px);
  }
  
  .park-card,
  .wildlife-card,
  .category-card,
  .explore-card,
  .contact-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .season-card {
    flex: 1 1 calc(25% - 18px);
  }
}

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

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

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

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

.hidden {
  display: none;
}

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

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

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2B5F75;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}